代码搜索:如何学习 source?
找到约 10,000 项符合「如何学习 source?」的源代码
代码结果 10,000
www.eeworm.com/read/376006/2717977
source tablespace.source
-- create a tablespace we can use
CREATE TABLESPACE testspace LOCATION '@testtablespace@';
-- create a schema we can use
CREATE SCHEMA testschema;
-- try a table
CREATE TABLE testschema.foo (i int)
www.eeworm.com/read/376006/2717978
source copy.source
--
-- COPY
--
-- CLASS POPULATION
-- (any resemblance to real life is purely coincidental)
--
COPY aggtest FROM '@abs_srcdir@/data/agg.data';
COPY onek FROM '@abs_srcdir@/data/onek.data';
COPY onek
www.eeworm.com/read/376006/2718242
source constraints.source
--
-- CONSTRAINTS
-- Constraints can be specified with:
-- - DEFAULT clause
-- - CHECK clauses
-- - PRIMARY KEY clauses
-- - UNIQUE clauses
--
--
-- DEFAULT syntax
--
CREATE TABLE DEFAULT_TBL (i i
www.eeworm.com/read/376006/2718243
source misc.source
--
-- MISC
--
--
-- BTREE
--
UPDATE onek
SET unique1 = onek.unique1 + 1;
UPDATE onek
SET unique1 = onek.unique1 - 1;
--
-- BTREE partial
--
-- UPDATE onek2
-- SET unique1 = onek2.unique1 + 1;
www.eeworm.com/read/376006/2718247
source largeobject.source
--
-- Test large object support
--
-- Load a file
CREATE TABLE lotest_stash_values (loid oid, fd integer);
-- lo_creat(mode integer) returns oid
-- The mode arg to lo_creat is unused, some vestigal ho
www.eeworm.com/read/376006/2718248
source tablespace.source
-- create a tablespace we can use
CREATE TABLESPACE testspace LOCATION '@testtablespace@';
-- create a schema we can use
CREATE SCHEMA testschema;
-- try a table
CREATE TABLE testschema.foo (i int) TA
www.eeworm.com/read/376006/2718249
source copy.source
--
-- COPY
--
-- CLASS POPULATION
-- (any resemblance to real life is purely coincidental)
--
COPY aggtest FROM '@abs_srcdir@/data/agg.data';
COPY onek FROM '@abs_srcdir@/data/onek.data';
COPY onek TO
www.eeworm.com/read/374220/2755197
java source.java
/**
* @(#)Source.java 1.2 03/01/23
*
* Copyright 2003 Sun Microsystems, Inc. All Rights Reserved.
*
* This software is the proprietary information of Sun Microsystems, Inc.
* Use is subjec
www.eeworm.com/read/369418/2799698
txt source.txt
This is line one
This is line two
This is line three
@@@Replace this@@@