请输入您要查询的百科知识:

 

词条 数据库脚本文件
释义

概念

在DBMS(数据库管理系统)中,能够被编译、解释、执行的,并且能够完成特定任务,以文件形式存储在存储介质中的一段代码。

编辑工具

其编辑工具可以是任何文本处理软件(Office Word、notepad、write等),当然也可以在DBMS提供的环境下进行编辑,如SQL Sever的查询分析器,Oracle的Sql*PLUS等工具。

功能

数据库脚本文件能够使DBMS批量处理用户的任务,包括数据库对象的建立(建立数据库、数据表、存储过程、触发器等),数据的查询,自定义函数的执行。

实例

以下是一段用在SQL Server中的,以“sql”为文件扩展名。该文件完成在SQL Server数据库中创建一个名字为djztwz的数据库,并且在该数据库中建立四个分别数据表,名字分别为:users、filetype、picture、news。 具体代码如下:

create database djztwz

go

use djztwz

create table users

(

u_Id int primary key identity(1,1),

u_Name varchar(50),

u_Pwd varchar(50)

)

go

create table filetype

(

type_Id int primary key identity(1,1),

type_Name varchar(100)

)

go

create table picture

(

p_Id int primary key identity(1,1),

p_Title varchar(200),

p_Path varchar(200),

createTime smalldatetime default getdate(),

p_hit int default 0,

p_author varchar(50)

)

go

create table news

(

n_Id int primary key identity(1,1),

n_Title varchar(300),

n_Content text,

createTime smalldatetime default getdate(),

n_author varchar(50),

n_hit int default 0,

n_type int

)

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2025/1/26 15:16:57