SAP UI5 in global variable sap.ui there are many useful utility service available, such as current browser and os information. and use sap.ui.getCore( ...
分类:
微信 时间:
2020-03-03 18:59:06
阅读次数:
94
如果正在运行一个transaction,这个时候系统有一个transport request import进来, 这个TR包含了一些DDIC object的change, 并且这些DDIC object正在被当前transaction使用,就会出现这个exception: SAP的建议是在晚上use ...
分类:
其他好文 时间:
2020-03-03 11:22:48
阅读次数:
79
Enter password: **** Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1 Server version: 5.5.40-log MySQL Community ...
分类:
数据库 时间:
2020-03-02 20:56:53
阅读次数:
80
1、测试PyTorch能正常使用GPU: import torch torch.cuda.is_available() 返回结果: True 2、测试Tensorflow能正常使用GPU: 示例一: tf.test.is_gpu_available() 返回结果: True 示例二: gpu_dev ...
分类:
其他好文 时间:
2020-03-02 20:32:33
阅读次数:
149
在head标签之间,加上如下代码: <!-- GrowingIO Analytics code version 2.1 --> <!-- Copyright 2015-2018 GrowingIO, Inc. More info available at http://www.growingio.c ...
阅读下面实验之前:请先阅读官方的分布式事务支持内容:https://shardingsphere.apache.org/document/current/cn/features/transaction/ 经过试验,单服务跨数据源,使用shardingJdbc的事务,同普通jdbc时的做法一样。实验版 ...
分类:
数据库 时间:
2020-03-02 10:45:31
阅读次数:
171
Performance monitor log for 1 second interval time with 500MB circular log file.Logman.exe create counter Perf-1Second -f bincirc -max 500 -c "\Logica ...
之前使用Qt连接mysql数据库,遇到过这样的报错,后来解决了,但没有记录下来,这次又遇到了,花了好多的精力,这次吸取上次的教训,做一下记录和总结。 报错截图: 编辑背景: Qt5.13.0,编译器是mingw73_64,是64位的。 mysql-5.7.27-winx64,也是64位的。 有人说, ...
分类:
数据库 时间:
2020-02-29 15:00:48
阅读次数:
281
这几天研究了用hugo搭建个人博客。 简单的整理了一下。 1.安装hugo(windows 请查看官网介绍 https://gohugo.io/getting started/installing/) $ brew install hugo 之后检查版本 2.创建hugo 项目 $ hugo new ...
分类:
其他好文 时间:
2020-02-29 14:45:13
阅读次数:
77
事务 事务(Transaction),一般是指要做的或所做的事情,这些事情必须全部都完成,或者造成的影响和改变全部都撤销。 四大特性 Java中,事务有四个特性(ACID):原子性(Atomicity)、一致性(Consistency)、隔离性(Isolation)、持久性(Durability)。 ...
分类:
编程语言 时间:
2020-02-29 00:36:54
阅读次数:
64