代码改变世界

12c OCP考试专项 [1z0-071]-Q8: 关于纯数字的表名(2020.06.16)

2020-06-16 12:54 by askscuti, 414 阅读, 0 推荐, 收藏, 编辑
摘要:You create a table named 123,which statement runs successfully? SELECT * FROM "123"; SELECT * FROM '123'; SELECT * FROM '123'; SELECT * FROM table(123 阅读全文

12c OCP考试专项 [1z0-071]-Q7: 函数(2020.06.16)

2020-06-16 12:53 by askscuti, 407 阅读, 0 推荐, 收藏, 编辑
摘要:which two are ture? INSTR finds the offset within a character string,starting from position 0. FLOOR returns the largest position integer less than or 阅读全文

12c OCP考试专项 [1z0-071]-Q6: implicit convertion 隐式转换(2020.06.16)

2020-06-16 12:39 by askscuti, 378 阅读, 0 推荐, 收藏, 编辑
摘要:Which two statements will do an implicit conversion? SELECT * FROM customers WHERE customer_id = 0001; SELECT * FROM customers WHERE insert_date = Dat 阅读全文

12c OCP考试专项 [1z0-071]-Q5: SCALAR SUBQUERY 标量子查询(2020.06.16)

2020-06-16 11:37 by askscuti, 744 阅读, 0 推荐, 收藏, 编辑
摘要:which three are true about scalar subquery expressions? They cannot be used in group by clauses. A scalar subquery expression that returns zero rows e 阅读全文

12c OCP考试专项 [1z0-071]-Q4:TO_CHAR/TO_DATE(2020.06.14)

2020-06-14 23:06 by askscuti, 309 阅读, 0 推荐, 收藏, 编辑
摘要:which two statements are true? SELECT TO_DATE('2019-DEC-25 15:30','YYYY-MM-DD HH24:MI','NLS_DATE_LANGUAGE=AMERICAN') FROM DUAL; SELECT TO_CHAR('2019-D 阅读全文

12c OCP考试专项 [1z0-071]-Q3:日期格式(2020.06.12)

2020-06-12 17:36 by askscuti, 300 阅读, 0 推荐, 收藏, 编辑
摘要:A session's NLS_DATE_FORMAT is set to DD MON YYYY. which two queries return the value 1 Jan 2019? SELECT DATE '2019-01-01' FROM DUAL; SELECT TO_DATE(' 阅读全文

12c OCP考试专项 [1z0-071]-Q2:DELETE/TRUNCATE(2020.06.12)

2020-06-12 17:23 by askscuti, 334 阅读, 0 推荐, 收藏, 编辑
摘要:which statement is true TRUNCATE and DELETE? For large tables,DELETE is faster then TRUNCATE. For tables with multiple indexes and triggers,DELETE is 阅读全文

12c OCP考试专项 [1z0-071]-Q1:系统权限/对象权限/角色(2020.06.12)

2020-06-12 14:28 by askscuti, 373 阅读, 0 推荐, 收藏, 编辑
摘要:which three are true about privileges? A.A combination of object and system privileges can be granted to a role. B.All type of schema object have asso 阅读全文

GaussDB T 单机更改IP后实例启动失败的解决办法

2020-04-29 11:46 by askscuti, 949 阅读, 0 推荐, 收藏, 编辑
摘要:[toc] 问题 更改IP后启动实例失败 原因 没有更改对应参数文件指定IP 方法 更改配置文件中的IP 阅读全文

12c OCP考试专项 [1z0-062]-Q1:CDB与PDB权限

2020-04-10 11:39 by askscuti, 442 阅读, 0 推荐, 收藏, 编辑
摘要:In your multitenant container database (CDB) containing pluggable database (PDBs), you granted the CREATE TABLE privilege to the common user C##ADMIN 阅读全文

简单实验理解什么是数据修订(Oracle Data Redaction)

2020-03-24 21:17 by askscuti, 1001 阅读, 0 推荐, 收藏, 编辑
摘要:[toc] Oracle Data Redaction Oracle Data Redaction 是 12c 引进的新特性,是高级安全组件的一部分,目的是为了提供数据保护。例如,表中工资列、身份证ID等敏感数据,可以针对不同的用户通过修订策略来对其显示或者隐藏,而且无需更改应用程序代码。 This 阅读全文

基于华为云 EulerOS 2.8 的 GaussDB T 全新HA主备搭建(1P1S)

2020-03-23 19:09 by askscuti, 624 阅读, 0 推荐, 收藏, 编辑
摘要:[toc] 环境 |主备库|云环境规格|操作系统|主机名|IP地址|端口号| | : : | : : | : : | : : | : : | : : | |主库| 4vCPUs 8G | EulerOS 2.8 64bit with ARM | THR102 0001 | 192.168.0.164 阅读全文

What Are Invoker's Rights and Definer's Rights In Oracle ?

2020-03-18 19:12 by askscuti, 270 阅读, 0 推荐, 收藏, 编辑
摘要:[toc] This example assumes the following 数据库有两个用户 TOM 和 NATASHA TOM 用户下有张表 TOM_DATE TOM 用户下有个存储过程 TOM_PRO_INSERT(过程中用到表 TOM_DATE) TOM 用户把存储过程的 EXECUTE 阅读全文

GaussDB T 单机模式手工建库

2020-01-05 16:19 by askscuti, 972 阅读, 0 推荐, 收藏, 编辑
摘要:[toc] 相关文章 "GaussDB T 单机搭建" "GaussDB 各版本及认证体系介绍" 你需要知道的 在已存在数据库名为 GAUSS 的前提下,手工创建第二个数据库 PROD1 创建文件夹 文件路径必须为 /opt/gaussdb,并且必须包含 data 和 cfg 编辑参数文件 参数文件 阅读全文

Oracle 中关于 Group By 子句与多行函数嵌套搭配使用的注意事项

2020-01-05 11:32 by askscuti, 2313 阅读, 1 推荐, 收藏, 编辑
摘要:[toc] 你需要知道的 提到 Group by 子句,你需要先理解一个东西:函数的分类。提到函数分类,你脑海里面需要瞬间想到Oracle中的函数分类:单行函数(Single row functions)、多行函数(Multiple row functions)。请把中文英文都背下来,也就这么两个, 阅读全文
上一页 1 2 3 4 5 6 7 ··· 9 下一页