当前位置:网站首页>After the installation of Damon database is completed, query whether it is case sensitive

After the installation of Damon database is completed, query whether it is case sensitive

2022-06-11 03:42:00 Garenliu

After the installation of Damon database , Whether the query is case sensitive

1、 Using client view

Right click the management server

2、 Command view

You can use the client to query

select decode(case_sensitive,1,' Case sensitive ',' Case insensitive ');

It can be used disql Inquire about

 $cd bin
 $./disql
disql V8
 user name :SYSDBA
 password :

 The server [LOCALHOST:5236]: In the normal open state 
 Login usage time  : 1.211(ms)
SQL> select decode(case_sensitive,1,' Case sensitive ',' Case insensitive ');                  

 Line number      DECODE(CASE_SENSITIVE,1,' Case sensitive ',' Case insensitive ')
---------- ---------------------------------------------------------------
1           Case sensitive 

 Elapsed time : 0.319( millisecond ).  Executive number :304800.
SQL> 

3、 View through the initialization file during installation .

The initialization directory is under the database installation directory DAMENG Folder

[[email protected]]# pwd
/opt/dmdbms/DAMENG

[[email protected] DAMENG]# ll dminit20210709101534.log 
-rw-r--r-- 1 dmdba dinstall 845  7 month   9  2021 dminit20210709101534.log
[[email protected] DAMENG]# cat dminit20210709101534.log 
start init database: V8, 2021-07-09 10:15:34
init params:
	db path: /opt/dmdbms/DAMENG
	db name: DAMENG
	auto overwrite: 0
	page size: 16384
	extent size: 16
	time zone: +08:00
	string case sensitive: 1
	charset: 0
	length in char: 0
	page check mode: 0
	priv flag: 0
	rlog enc flag: 0
	use new hash: 1
	blank pad mode: 0
	sec priv mode: 0
	huge with delta: 1
	rlog gen for huge: 0
	pseg_mgr_flag: 0
	#page size : Page size , Unit byte ,16k
	#extent size:: Cluster size 
	#string case sensitive:1 ,1 It means to distinguish 

summary : Thanks for the technical support of Dameng database .

原网站

版权声明
本文为[Garenliu]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/03/202203020553128241.html