代码搜索:PLSQL
找到约 265 项符合「PLSQL」的源代码
代码结果 265
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/10803126
sql createuser.sql
/*
* CreateUser.sql
* Chapter 8, Oracle10g PL/SQL Programming
* by Ron Hardman, Mike McLaughlin, and Scott Urman
*
* This script creates the plsql user for chapter 8
* examples. You mus
www.eeworm.com/read/349709/10803180
sql createuser.sql
/*
* CreateUser.sql
* Chapter 8, Oracle10g PL/SQL Programming
* by Ron Hardman, Mike McLaughlin, and Scott Urman
*
* This script creates the plsql user for chapter 8
* examples. You mus
www.eeworm.com/read/349709/10803291
sql createuser.sql
/*
* CreateUser.sql
* Chapter 3, Oracle10g PL/SQL Programming
* by Ron Hardman, Mike McLaughlin, and Scott Urman
*
* This script creates the plsql user for chapter 3
* examples. You mus
www.eeworm.com/read/235303/4651936
txt mail.txt
Attached is a Zip file (renamed as log4plsql.dat to pass spam/virus
filters) with my modifications to the 3.1.2.1 version for people to review and see what they think.
We needed additional PL/SQ
www.eeworm.com/read/231546/4715253
vim stp.vim
" Vim syntax file
" Language: Stored Procedures (STP)
" Maintainer: Jeff Lanzarotta (frizbeefanatic@yahoo.com)
" URL: http://lanzarotta.tripod.com/vim/syntax/plsql.vim.zip
" Last Change: A
www.eeworm.com/read/161040/5563871
txt result.txt
SQL> SELECT * FROM plsql101_product
2 ORDER BY last_stock_date, product_name;
PRODUCT_NAME PRODUCT_PRICE QUANTITY_ON_HAND LAST_STOCK
------------------------- ------------- -----
www.eeworm.com/read/241364/13151500
sql plw6002.sql
ALTER SESSION SET plsql_warnings = 'enable:all'
/
DROP FUNCTION plw6002;
CREATE OR REPLACE PROCEDURE plw6002
AS
l_checking BOOLEAN := FALSE;
BEGIN
NULL;
IF l_checking
THEN
www.eeworm.com/read/235303/4651941
sql plog_pipe.sql
/**/
CREATE OR REPLACE PACKAGE PLOG_PIPE
AS
/**
* Read the next message from the given or default pipe, and return each
* Log4PlSql message component as an OUT variable. Wa
www.eeworm.com/read/241364/13150580
sql plw5000.sql
ALTER SESSION SET PLSQL_WARNINGS = 'ENABLE:ALL'
/
CREATE OR REPLACE PACKAGE plw5000
IS
TYPE collection_t IS TABLE OF VARCHAR2 (100);
PROCEDURE proc (collection_in IN OUT NOCOPY collection