S4/HANA里有一个新的UI框架叫做Smart template, 配合ABAP后台的CDS view技术,能够让developer以Metadata driven的方式来开发Fiori应用, 这种开发方式几乎不需要或者只需要很少量的JavaScript开发。 下面是我写在SCN上的相关13篇bl ...
分类:
其他好文 时间:
2018-01-06 22:12:03
阅读次数:
277
中文 b'\xe4\xb8\xad\xe6\x96\x87' 3、== 和 is 的区别 is是比较两个引用是否指向了同一个对象(引用比较) == 是比较两个对象是否相等 a = [11,22,33] b = [11,22,33] a == b 返回true 这里对比的是a和b的值,他们是相等的 a ...
分类:
编程语言 时间:
2017-12-09 19:41:06
阅读次数:
196
Oracle闪回作用:自动基于磁盘的备份与恢复,能把表恢复到过去的某个时间点或者SCN。1.查看闪回区SQL>showparameterdb_recovery_file_dest;查看闪回区详细信息SQL>selectflashback_onfromv$database;查看闪回区是否开启2.修改闪回功能SQL>startupmount;数据库启动到mo..
分类:
数据库 时间:
2017-11-22 14:26:37
阅读次数:
206
Note the following statements that use flashback technology: 1. FLASHBACK TABLE <table> TO SCN <scn>;2. SELECT * FROM <table> AS OF SCN 123456;3. FLAS ...
分类:
其他好文 时间:
2017-11-16 14:07:14
阅读次数:
183
1 #include <bits/stdc++.h> 2 using namespace std; 3 long long bit[70]; 4 void init() 5 { 6 bit[1]=1; 7 for(int i=2;i<=55;++i) 8 { 9 bit[i]=2*bit[i-1]+ ...
分类:
Web程序 时间:
2017-11-13 17:01:59
阅读次数:
245
You have just performed a FLASHBACK TABLE operation using the following command:flashback table employees to scn 123456;The employees table has trigge ...
分类:
其他好文 时间:
2017-11-13 16:59:13
阅读次数:
186
alter system dump datafile 8 block 2523;Block dump from disk:buffer tsn: 87 rdba: 0x160dd924 (88/907556)scn: 0x0d5e.326709f3 seq: 0x01 flg: 0x06 tail: ...
分类:
数据库 时间:
2017-11-11 11:39:13
阅读次数:
238
What is the purpose of the until change option of the restore command?A. It allows you to select the SCN that you want to restore to. B. It allows you ...
分类:
其他好文 时间:
2017-11-06 18:04:48
阅读次数:
111
chartcontrol 的使用方法 柱状图一类 写的很详细 http://blog.csdn.net/archielau/article/details/9935747 table gridcontrol 根据百度文库 查看怎样使用 https://wenku.baidu.com/view/df1 ...
分类:
其他好文 时间:
2017-11-06 11:18:26
阅读次数:
216
logminer 工具的使用 ——对redo log 进行挖掘,找出在某个时间点所作的DDL 或DML 操作(包括:时间点、datablock scn 、sql语句) 1) 对DML 分析 SYS @ prod > select * from scott.tb01; ID 111 222 333 S ...
分类:
其他好文 时间:
2017-11-04 23:37:51
阅读次数:
243