代码搜索:Create

找到约 10,000 项符合「Create」的源代码

代码结果 10,000
www.eeworm.com/read/173141/5378764

sql temp_cts5sch2.sql

AUTOCOMMIT OFF; --O-- SQL Test Suite, V6.0, Schema Definition, cts5sch2.sql --O-- 59-byte ID --O-- TEd Version # --O-- date_time print --O-- **********************************************************
www.eeworm.com/read/173141/5378773

sql schema8.sql

-- SQL Test Suite, V6.0, Schema Definition, schema8.smi -- 59-byte ID -- TEd Version # -- date_time print -- *************************************************************** -- ****** THIS FILE SHOULD
www.eeworm.com/read/173141/5378787

sql refactions.sql

--no cascade delete , just default check create table t1(a int not null primary key); create table t2(b int references t1(a)); insert into t1 values (1) , (2) , (3) , (4); insert into t2 values (1) ,
www.eeworm.com/read/173141/5378879

sql synonym.sql

-- tests for synonym support set schema APP; -- negative tests -- Create a synonym to itself. Error. create synonym syn for syn; create synonym syn for APP.syn; create synonym APP.syn for syn; create
www.eeworm.com/read/173141/5378897

sql altertable.sql

-- alter table tests -- add column -- (add constraint & drop constraint to be added) -- create some database objects create table t0(c1 int not null constraint p1 primary key); create table t0_1(c1 i
www.eeworm.com/read/173141/5378932

sql views.sql

-- tests for views -- set autocommit off autocommit off; -- create some tables create table t1(i int, s smallint, f float, dp double precision); create table t2(i int, s smallint, f float, dp double
www.eeworm.com/read/173141/5378958

sql unlimited.sql

-- This tests whether we are prevented from creating more than 15 tables -- in the standard (unlimited) version of the product. -- create table t1 (x int); create table t2 (x int); create table t3 (x
www.eeworm.com/read/173141/5378959

sql lob.sql

-- This test lang/LOB.sql still includes tests for -- DB2 UDB incompatible datatype NCLOB. -- Still waiting for DB2 UDB compatible functionality for NCLOB to be implemented -- Also note that in DB2
www.eeworm.com/read/173141/5378994

sql triggerstream.sql

-- -- Small trigger stream test. Make sure we can -- read streams ok from the context of a row or -- statement trigger. -- create function getAsciiColumn( whichRS int, colNumber int, value varchar(12
www.eeworm.com/read/173141/5378996

sql refactions3.sql

-- webSphere Portal Server Development test cases CREATE TABLE ID_TABLE ( TABLE_NAME VARCHAR(128) NOT NULL, LAST_ID INTEGER NOT NULL, CONSTRAINT PK10 PRIMARY KEY (TABLE_NAME) ); CREATE