代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/361774/2944029
sql distributedtrans.sql
Create database Test1
Go
Use Test1
Go
Create Table FromTable (Amount INT)
Go
Insert Into FromTable(Amount) Values (100)
Go
Create database Test2
Go
Use Test2
Go
Create Table ToTable (Amo
www.eeworm.com/read/361774/2944030
sql bigbang.sql
CREATE DATABASE Test
GO
USE Test
GO
CREATE TABLE TestTable (TestColumn INT)
GO
USE Master
GO
CREATE LOGIN [sahil] WITH PASSWORD=N'sahil', DEFAULT_DATABASE=[TEST], CHECK_EXPIRATION=OFF, CHECK_P
www.eeworm.com/read/361774/2944031
sql sqlclrstoredproc.sql
CREATE DATABASE Test
GO
USE Test
GO
CREATE TABLE TestTable (TestColumn INT)
GO
USE Master
GO
CREATE LOGIN [sahil] WITH PASSWORD=N'sahil', DEFAULT_DATABASE=[TEST], CHECK_EXPIRATION=OFF, CHECK_P
www.eeworm.com/read/361774/2944032
sql rmuser.sql
Create database Test1
Go
Use Test1
Go
Create Table FromTable (Amount INT)
Go
Insert Into FromTable(Amount) Values (100)
Go
www.eeworm.com/read/361774/2944035
sql dbsetup.sql
Create database Test1
Go
Use Test1
Go
Create Table FromTable (Amount INT)
Go
Insert Into FromTable(Amount) Values (100)
Go
Create database Test2
Go
Use Test2
Go
Create Table ToTable (Amo
www.eeworm.com/read/361774/2944041
sql dbsetup.sql
Create database Test1
Go
Use Test1
Go
Create Table FromTable (Amount INT)
Go
Insert Into FromTable(Amount) Values (100)
Go
www.eeworm.com/read/361774/2944050
sql test.sql
-- Examples for queries that exercise different SQL objects implemented by this assembly
-----------------------------------------------------------------------------------------
-- Stored procedu
www.eeworm.com/read/361774/2944058
sql settrustworthyon.sql
alter database AdventureWorks set trustworthy on
www.eeworm.com/read/361774/2944059
sql cleanup.sql
DROP PROCEDURE spContacts
DROP PROCEDURE spContactCount
DROP TRIGGER Person.trgUpdateContact
DROP TRIGGER trgCreateTable on database
UPDATE Person.Contact SET FirstName = 'Gustavo' WHERE Contact
www.eeworm.com/read/361774/2944061
sql createobjects.sql
-- Update assembly (dll) path below according to your install directory
-- Assembly
CREATE ASSEMBLY Chapter03
AUTHORIZATION dbo
FROM 'C:\Documents and Settings\VM_User\My Documents\Microsoft Press