代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/246938/12697348
sql oci.sql
create or replace library sendmaillibrary as
'c:\\winnt\system32\oraclesmtp.dll' ;
/
create or replace procedure sendmailc (
P_SUBJECT IN VARCHAR2,
P_Message IN VARCHAR2,
P_From IN VARCHAR2,
www.eeworm.com/read/246938/12697349
sql test.sql
BEGIN
sendmailc('the mail from c extern',
'this is the message',
'the pl/sql ',
'gangjh@py3.yydg.com.cn') ;
END ;
www.eeworm.com/read/246938/12697352
sql oci.sql
create or replace library sendmaillibrary as
'/home/oracle/sendmail.so' ;
/
create or replace procedure sendmailc (
P_SUBJECT IN VARCHAR2,
P_Message IN VARCHAR2,
P_From IN VARCHAR2,
p_Recip
www.eeworm.com/read/246938/12697354
sql test.sql
BEGIN
sendmailc('the mail from c extern',
'this is the message',
'the pl/sql ',
'gangjh@py3.yydg.com.cn') ;
END ;
www.eeworm.com/read/246938/12697355
sql utlsocks.sql
create or replace library socketlibrary as
'/home/oracle/utlsocks.so' ;
/
CREATE OR REPLACE PACKAGE utl_socks
AUTHID DEFINER
AS
function hostconnect ( host VARCHAR2,port BINARY_INTEGER
www.eeworm.com/read/246938/12697358
sql test.sql
declare
sock number ;
begin
select utl_socks.hostconnect('172.17.94.9',80) into sock from dual ;
dbms_output.put_line('socket:'||to_char(sock)) ;
select utl_socks.socketclose(sock) into sock fr
www.eeworm.com/read/333055/12704588
sql createdbpostgresql.sql
DROP TABLE author4 ;
DROP TABLE hold4 ;
DROP TABLE TITLE4;
DROP TABLE MEMBER4;
DROP TABLE BOOK4;
CREATE TABLE TITLE4
(callnumber char(8) NOT NULL,
isbn char(8),
year date
www.eeworm.com/read/333055/12704591
sql queries.sql
TITLE4(Name, ISBN, CallNumber, Year, AuthorFName, AuthorLName);
PK(CallNumber)
MEMBER4(LibId, Fname, Lname, Address, PhoneNumber,Join_date,Gender);
PK(LibId)
BOOK4(Book_Id, Edition, Status, Bo
www.eeworm.com/read/333055/12704600
sql insertrowspostgresql.sql
DELETE FROM READ_BY4;
DELETE FROM BOOK4;
DELETE FROM MEMBER4;
DELETE FROM ORDERED4;
DELETE FROM PURCHASE_ORDER4;
DELETE FROM TITLE4;
DELETE FROM SUPPLIER4;
/*
#
# TIT
www.eeworm.com/read/333029/12706399