代码搜索:SqL
找到约 10,000 项符合「SqL」的源代码
代码结果 10,000
www.eeworm.com/read/183260/9173725
sql procedure.sql
REM Procedure.sql
REM Chapter 3, Oracle9i PL/SQL Programming by Scott Urman
REM This file illustrates a PL/SQL procedure.
CREATE OR REPLACE PROCEDURE InsertIntoTemp AS
/* Declare variables to
www.eeworm.com/read/183260/9173727
sql tables.sql
REM tables.sql
REM Oracle9i PL/SQL Programming by Scott Urman
REM This file will drop and create all of the tables used
REM for the examples. Data is inserted into the students,
REM rooms, clas
www.eeworm.com/read/183260/9173735
sql point.sql
REM Point.sql
REM Chapter 12, Oracle9i PL/SQL Programming by Scott Urman
REM This object type represents a point on a Cartesian grid.
CREATE OR REPLACE TYPE Point AS OBJECT (
-- A point is rep
www.eeworm.com/read/183260/9173736
sql dynamicdml.sql
REM dynamicDML.sql
REM Chapter 12, Oracle9i PL/SQL Programming by Scott Urman
REM This procedure demonstrates the DBMS_SQL package.
CREATE OR REPLACE PROCEDURE UpdateClasses(
/* Uses DBMS_SQL
www.eeworm.com/read/183260/9173739
sql pipereceive.sql
REM PipeReceive.sql
REM Chapter 12, Oracle9i PL/SQL Programming by Scott Urman
REM This block illustrates the use of the DBMS_PIPE package to
REM receive a message.
set serveroutput on
DECLAR
www.eeworm.com/read/183260/9173740
sql alertsend.sql
REM AlertSend.sql
REM Chapter 12, Oracle9i PL/SQL Programming by Scott Urman
REM This block illustrates sending an alert through DBMS_ALERT.
set serveroutput on
DECLARE
v_AlertName VARCHAR2
www.eeworm.com/read/183260/9173744
sql forall.sql
REM FORALL.sql
REM Chapter 12, Oracle9i PL/SQL Programming by Scott Urman
REM This script demonstrates several different FORALL statements,
REM used in bulk binds.
set serveroutput on format wra
www.eeworm.com/read/183260/9173746
sql alertreceive.sql
REM AlertReceive.sql
REM Chapter 12, Oracle9i PL/SQL Programming by Scott Urman
REM This block illustrates receiving an alert using DBMS_ALERT.
set serveroutput on
DECLARE
v_AlertName VARCH
www.eeworm.com/read/183260/9173748
sql pipelined.sql
www.eeworm.com/read/183260/9173750
sql execimmediate.sql
REM execImmediate.sql
REM Chapter 12, Oracle9i PL/SQL Programming by Scott Urman
REM This block demonstrates several EXECUTE IMMEDIATE commands
set serveroutput on
DECLARE
v_SQLString VARC