代码搜索:sql

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

代码结果 10,000
www.eeworm.com/read/349709/10803082

sql createuser.sql

/* * CreateUser.sql * Chapter 2, Oracle10g PL/SQL Programming * by Ron Hardman, Mike McLaughlin, and Scott Urman * * This script creates the plsql user for chapter 2 * examples. You mus
www.eeworm.com/read/349709/10803089

sql debug.sql

/* * Debug.sql * Chapter 2, Oracle10g PL/SQL Programming * by Ron Hardman, Mike McLaughlin, Scott Urman * * This script demonstrates debugging PL/SQL with JDeveloper */ exec clean_schem
www.eeworm.com/read/349709/10803092

sql parameterlength.sql

/* * ParameterLength.sql * Chapter 8, Oracle10g PL/SQL Programming * by Ron Hardman, Mike McLaughlin, and Scott Urman * * This script illustrates constraints on formal parameters. */ -
www.eeworm.com/read/349709/10803098

sql tables.sql

set echo off set define off DROP TABLE inventory; DROP TABLE books; DROP TABLE authors; DROP TABLE competitor_books; CREATE TABLE authors ( id NUMBER PRIMARY KEY, first
www.eeworm.com/read/349709/10803103

sql copyfast.sql

/* * CopyFast.sql * Chapter 8, Oracle10g PL/SQL Programming * by Ron Hardman, Mike McLaughlin, and Scott Urman * * This package illustrates the possible speed benefits of NOCOPY. */ CR
www.eeworm.com/read/349709/10803106

sql inventoryops.sql

/* * InventoryOps.sql * Chapter 8, Oracle10g PL/SQL Programming * by Ron Hardman, Mike McLaughlin, and Scott Urman * * This script demonstrates a package. */ CREATE OR REPLACE PACKAGE
www.eeworm.com/read/349709/10803111

sql addnewauthor.sql

/* * AddNewAuthor.sql * Chapter 8, Oracle10g PL/SQL Programming * by Ron Hardman, Mike McLaughlin, and Scott Urman * * This script demonstrates how to create and call a simple procedure. *
www.eeworm.com/read/349709/10803114

sql threeauthors.sql

/* * ThreeAuthors.sql * Chapter 8, Oracle10g PL/SQL Programming * by Ron Hardman, Mike McLaughlin, and Scott Urman * * This script demonstrates a function and how to call it. */ CREATE
www.eeworm.com/read/349709/10803116

sql calls.sql

/* * calls.sql * Chapter 8, Oracle10g PL/SQL Programming * by Ron Hardman, Mike McLaughlin, and Scott Urman * * This script demonstrates the use of the CALL statement. */ CREATE OR REPL
www.eeworm.com/read/349709/10803119

sql objectoverload.sql

/* * objectOverload.sql * Chapter 8, Oracle10g PL/SQL Programming * by Ron Hardman, Mike McLaughlin, and Scott Urman * * This script demonstrates overloading based on user defined object *