代码搜索:sql

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

代码结果 10,000
www.eeworm.com/read/241364/13151473

sql slowest.sql

update plsql_profiler_units set total_time = 0; execute prof_report_utilities.rollup_all_runs; set pagesize 999 set linesize 120 column unit format a20 column line# format 99999 column time_Co
www.eeworm.com/read/241364/13151475

sql invdefinv.sql

CREATE OR REPLACE PROCEDURE showestack IS BEGIN p.l (RPAD ('=', 60, '=')); p.l (DBMS_UTILITY.format_call_stack); p.l (RPAD ('=', 60, '=')); END; / CREATE OR REPLACE PROCEDURE Proc1 A
www.eeworm.com/read/241364/13151542

sql utlzip.sql

/* Build by Vadim Loevski of Quest Software. */ CREATE OR REPLACE AND RESOLVE JAVA SOURCE NAMED "UTLZip" AS import java.util.zip.*; import java.io.*; public class UTLZip { public static
www.eeworm.com/read/241364/13151554

sql tabfunc.sql

@@plvtmr.pkg @@tabcount81.sf @@showtabcount.sp SET SERVEROUTPUT ON DROP TYPE TickerType FORCE; DROP TYPE TickerTypeSet FORCE; DROP TABLE StockTable; DROP TABLE TickerTable; CREATE TABLE St
www.eeworm.com/read/241364/13151560

sql justonce.sql

/* Formatted on 2001/12/26 15:47 (Formatter Plus v4.5.2) */ DROP TABLE hairstyles; CREATE TABLE hairstyles ( code INTEGER, description VARCHAR2(100) ); INSERT INTO hairstyles VALUES
www.eeworm.com/read/241364/13151590

sql pkgcur.sql

/* Formatted on 2002/03/05 14:07 (Formatter Plus v4.6.0) */ CREATE OR REPLACE PACKAGE book_info IS CURSOR byauthor_cur ( author_in IN books.author%TYPE ) IS SELECT *
www.eeworm.com/read/241364/13151617

sql invrole.sql

/* Formatted on 2002/02/13 10:58 (Formatter Plus v4.6.0) */ CONNECT SYSTEM/MANAGER DROP table emp_thru_role; CREATE TABLE emp_thru_role ( empno number(4), ename varchar2(10), job var
www.eeworm.com/read/241364/13151623

sql autondlock.sql

CREATE OR REPLACE PROCEDURE update_salary (dept_in IN NUMBER) IS PRAGMA AUTONOMOUS_TRANSACTION; CURSOR myemps IS SELECT empno FROM emp WHERE deptno = dept_in FOR
www.eeworm.com/read/241363/13151631

sql 54008.sql

-- ------------------------------------------------- -- Filename: 54008.sql -- -- Script file for PL/SQL 101 for Oracle 10g -- Chapter 08 -- Created by Christopher Allen -- Copyright Oracle Pres
www.eeworm.com/read/241363/13151634

sql 54004.sql

-- ------------------------------------------------- -- Filename: 54004.sql -- -- Script file for PL/SQL 101 for Oracle 10g -- Chapter 04 -- Created by Christopher Allen -- Copyright Oracle Pres