代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/173141/5378498
sql encryptparams.sql
-- test database encryption parameters such as the encryption algorithm and the encryption provider
connect 'jdbc:derby:;shutdown=true';
connect 'jdbc:derby:wombatDESede;create=true;dataEncryption=
www.eeworm.com/read/173141/5378509
sql aes.sql
------------------------------------------------------------------------------------
-- beetle6023 : support for AES encryption algorithm
-- Top level testcases grp.
-- Case 1.x different feedback mod
www.eeworm.com/read/173141/5378510
sql locktablevti.sql
--test to make sure WAIT state is displayed when lock table is printed
connect 'jdbc:derby:wombat;user=c1' AS C1;
create procedure c1.sleep(t INTEGER) dynamic result sets 0 language java external nam
www.eeworm.com/read/173141/5378512
sql encryptdatabase.sql
-- test database encryption
-- for bug 3668 - you couldn't change the password without exiting out of db create session
call SYSCS_UTIL.SYSCS_SET_DATABASE_PROPERTY('bootPassword', 'Thursday, Wednes
www.eeworm.com/read/173141/5378524
sql removestubs.sql
---test which goes through the code path that
--removes the stub files are no longer necessary
create table t1(a int ) ;
autocommit off ;
drop table t1 ;
commit ;
connect 'jdbc:derby:wombat;shutdown=
www.eeworm.com/read/173141/5378527
sql rollforwardrecovery.sql
-- reusing container id case
run resource 'createTestProcedures.subsql';
call SYSCS_UTIL.SYSCS_BACKUP_DATABASE_AND_ENABLE_LOG_ARCHIVE_MODE(
'extinout/mybackup', 0);
create table t1(a int not null
www.eeworm.com/read/173141/5378545
sql updatelocks.sql
-- Very basic single user testing of update row locking.
run resource 'createTestProcedures.subsql';
call SYSCS_UTIL.SYSCS_SET_DATABASE_PROPERTY('derby.storage.pageSize', '4096');
autocommit off;
run
www.eeworm.com/read/173141/5378550
sql spacetable.sql
-- testing Space table
-- unfilled pages column of space table is just a guess, thus it is
-- not consistent across runs, in particular for indexes, but also for
-- tables.
-- Therefore tests do not
www.eeworm.com/read/173141/5378551
sql madhare.sql
--
-- this test shows the basic functionality
-- that does work in the language system for mad hare
--
-- this was the simple mad hare challenge
create table t(i int);
insert into t (i) values (1956
www.eeworm.com/read/173141/5378554
sql access.sql
set isolation to RR;
run resource 'createTestProcedures.subsql';
-- by default, holdability of ResultSet objects created using this Connection object is true. Following will set it to false for this