代码搜索:Sql
找到约 10,000 项符合「Sql」的源代码
代码结果 10,000
www.eeworm.com/read/349709/10802822
sql nds_sql_02.sql
/*
* dbms_sql_02.sql
* Chapter 13, Oracle10g PL/SQL Programming
* by Ron Hardman, Michael McLaughlin and Scott Urman
*
* Purpose:
* This is designed to test the Native Dynamic SQL package.
*/
www.eeworm.com/read/349709/10802832
sql nds_sql_03.sql
/*
* dbms_sql_02.sql
* Chapter 13, Oracle10g PL/SQL Programming
* by Ron Hardman, Michael McLaughlin and Scott Urman
*
* Purpose:
* This is designed to test the Native Dynamic SQL package.
*/
www.eeworm.com/read/349709/10802834
sql nds_sql_01.sql
/*
* nds_sql_01.sql
* Chapter 13, Oracle10g PL/SQL Programming
* by Ron Hardman, Michael McLaughlin and Scott Urman
*
* Purpose:
* This is designed to test the Native Dynamic SQL package.
*/
www.eeworm.com/read/462648/7198710
sql exercise2sql.sql
-- My Answer:
-- 1
SELECT Name, Year
FROM Title, Author
WHERE Title.CallNumber = Author.CallNumber AND
(Author.Fname = 'Churchill' OR Author.Lname = 'Churchill');
-- 2
SELECT Name
FRO
www.eeworm.com/read/448435/7533562
sql ajaxchat sql2000.sql
www.eeworm.com/read/448435/7533563
sql ajaxchat sql2005.sql
/****** Object: Table [dbo].[ChatBans] Script Date: 04/18/2008 17:36:06 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[ChatBans](
[cb_
www.eeworm.com/read/436007/7779234
sql shophere.sql_full.sql
create database ShopHere
go
use ShopHere
go
create table Items
(
ItemID char(6) not null,
ItemName varchar(10) not null,
ItemDescription varchar(30) not null,
CategoryID char(6) not n
www.eeworm.com/read/317696/13499372
sql sql 20070718 1751.sql
-- MySQL Administrator dump 1.4
--
-- ------------------------------------------------------
-- Server version 5.1.19-beta-community-nt-debug
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_C
www.eeworm.com/read/301164/13865121
sql sql导出mysql.sql
1 可以生成标准的.sql文件,在mysql下导入
mysql -h localhost -u root -p1234 < c:/123/123.sql
或
mysql -h localhost -u root -p1234 < c:\\123\\123.sql
2 到www.mysql.com上下个myodbc,装以下这个驱动,然后在mssql的enterprise mana
www.eeworm.com/read/301164/13865203
sql sql安全管理范例.sql
exec sp_dropsrvrolemember N'aa', sysadmin
go
exec sp_addsrvrolemember N'aa', securityadmin
go
--作好SQL的安全管理
--作者:邹建
首先,做好用户安全:
--简单的,只允许sql的用户访问sql(防止利用administrator组用户访问)
1.企业管