代码搜索:sql

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

代码结果 10,000
www.eeworm.com/read/235303/4651940

sql pslog.sql

/**/ CREATE OR REPLACE PACKAGE PLOG IS /** * package name : PLOG * * *See :
www.eeworm.com/read/235303/4651942

sql plog.sql

/* * Copyright (C) LOG4PLSQL project team. All rights reserved. * * This software is published under the terms of the The LOG4PLSQL * Software License, a copy of which has been included with
www.eeworm.com/read/235303/4651943

sql pmdc.sql

/**/ create or replace package PMDC as -- puts a key/value pair into the current log context -- putting a null vlaue is the same as calling remove(pKey) procedure put(pKey var
www.eeworm.com/read/235303/4651969

sql testthreshold.sql

declare pCTX PLOG.LOG_CTX := PLOG.init ( pSECTION => 'testThreshold', pLEVEL => PLOG.LDEBUG, pLOG4J => TRUE, pLOGTABLE => TRUE, pOUT_TRANS => TRUE, pALERT => FALSE, pTRAC
www.eeworm.com/read/234505/4658938

sql dataload.sql

USE `npetshop`; # # Dumping data for table `accounts` # INSERT INTO `accounts` (Account_Id, Account_Email, Account_FirstName, Account_LastName, Account_Status, Account_Addr1, Account_Addr2, Ac
www.eeworm.com/read/234505/4658939

sql schema.sql

# MySQL dump # # Host: localhost Database: npetshop # ------------------------------------------------------ #CREATE DATABASE `npetshop`; USE `npetshop`; # # Table structure for table `
www.eeworm.com/read/234505/4658940

sql dbuser.sql

-- Create a new user, grant her rights, and set her password. grant select, insert, update, delete ON npetshop.* TO npetshop@'localhost' IDENTIFIED BY 'ibatis' ;
www.eeworm.com/read/234505/4658941

sql dataload.sql

INSERT INTO [Suppliers] VALUES (1, 'XYZ Pets', 'AC', '600 Avon Way', '', 'Los Angeles', 'CA', '94024', '212-947-0797') INSERT INTO [Suppliers] VALUES (2, 'ABC Pets', 'AC', '700 Abalone Way', '', 'S
www.eeworm.com/read/234505/4658942

sql schema.sql

IF EXISTS (SELECT name FROM master.dbo.sysdatabases WHERE name = N'NPetshop') DROP DATABASE [NPetshop] GO CREATE DATABASE [NPetshop] COLLATE Latin1_General_CI_AS GO exec sp_dboption N'NP
www.eeworm.com/read/234505/4658943

sql dbuser.sql

USE [NPetshop] if not exists (select * from master.dbo.syslogins where loginname = N'NPetshop') BEGIN declare @logindb nvarchar(132), @loginpass nvarchar(132), @loginlang nvarchar(132) selec