Northwind脚本
/* ** Copyright Microsoft, Inc. 1994 - 2000 ** All Rights Reserved. */ SET NOCOUNT ON GO USE master GO if exists (select * from sysdatabases where name='Northwind') drop database Northwind go DECLARE @device_directory NVARCHAR(520) SELECT @device_directory = SUBSTRING(filename, 1, CHARINDEX(N'master.mdf', LOWER(filename)) - 1) FROM master.dbo.sysaltfiles WHERE dbid = 1 AND fileid = 1 EXECUTE (N'CREATE DATABASE Northwind ON PRIMARY (NAME = N''Northwind'', FILENAME = N''' + @device_directory + N'northwnd.mdf'') LOG ON (N AME = N''Northwind_log'', FILENAME = N''' + @device_directory + N'northwnd.ldf'')') go
推荐下载
-
SQL2005示例数据库northwind
SQL2005示例数据库northwind,请在安装后把路径下northwind.mdf文件附加
39 2019-08-01 -
Sql2005Northwind和Pub数据库
此文件本为sqlserver2000的northwind和pubs数据库安装包,安装完后默认到C盘下,然后打开SQLServer2005附加northwind和pubs数据库即可。
28 2019-07-25 -
NORTHWIND.mdf英文版安装文件
学习sqlserver的必备数据库,经测试可用。
13 2020-09-17 -
Northwind Pubs数据库SQL2000自带
Get scripts for creating the Northwind and pubs sample databases for use with SQL Server 2000 and MS
14 2020-09-19 -
SQL2000SampleDb Northwind数据库样本
SQL2000SampleDbNorthwind数据库样本安装程序
13 2020-06-10 -
c# 读取Northwind数据库image字段
我在写一个三层结构Demo时,使用了Northwind这个范例数据库。但是奇怪的是,读取Categories表的Picture列(image类型)无法在image控件中正常显示(解决方案在后面代码中可
5 2020-11-22 -
中文版northwind罗斯文含batsqlmdb文件
中文版northwind罗斯文(含bat,sql,mdb)文件
28 2019-01-21 -
SQLServer Northwind和pubs示例数据库
学习SQLServer的示例数据库,很多经典SQLServer书籍中使用的示例数据库。如Microsoft+SQL+Server+2005技术内幕:T-SQL查询,Microsoft+SQL+Serv
22 2020-05-22 -
Northwind.mdf生成sql文件instnwnd.sql
Northwind.mdf生成sql文件instnwnd.sqlinstnwnd.sqlNorthwind.mdfsql数据库
44 2020-05-15 -
SQL2000SampleDbmsi与NorthWind安装方法rar
SQL2000SampleDb_msi与NorthWind安装方法
276 2019-01-07
用户评论