資料庫檔案

2021-05-25 20:24:52 字數 2240 閱讀 1040

if exists(select * from mater.sysdatabases where name='db_09zy')

drop database db_09zy go

create database zy

on primary(

name='zy_data',

filename='e:/09.9zy1/zy_data.mdf',

size=10mb,

maxsize=unlimited,

filegrowth=20% )

log on (name='zye_data.ldf',

filename='e:',

size=10mb,

maxsize=unlimited,

filegrowth=20% )

gouse zy go

if exists(select name from sysobjects where name='tb_title'and type='u')

drop table tb_title

go create table tb_title

(       

id int not null identity (1,1)primary key,

title varchar(100)null,

names varchar(20)null )

goselect*from tb_title

use zy go

insert into tb_title values('這兒有事哦!','丁麗琴') go

use zy go

if exists(select name from sysobjects where name='tb_cpin'and type='u')

drop table tb_cpin

go create table tb_cpin

(       

id int not null identity (1,1)primary key,

images varchar(50)null,

goodsname varchar(20)null,

price varchar(20)null,

nowprice varchar(20)null,

intro varchar(100)null )

goselect*from tb_cpin

go use zy go

insert into tb_cpin values('e:/09.9zy1/images/tu1','飼料','500','350','來看一下啊!') go

use zy go

if exists(select name from sysobjects where name='tb_news'and type='u')

drop table tb_news

go create table tb_news

(       

id int not null identity (1,1)primary key,

title varchar(100)null,

names varchar(20)null,

data datetime  not null default getdate() )

goselect *from tb_news go

use zy go

insert into tb_news values('最新訊息','不知道',0) go

use zy go

if exists(select name from sysobjects where name='tb_member'and type='u')

drop table tb_member

go create table tb_member

(       

id int not null identity (1,1)primary key,

username varchar(100)null,

pasword varchar(20)null,

data datetime  not null default getdate() )

goselect*from tb_member

insert into tb_member values('丁麗琴','ggfhvbvbvclt',0)

insert into tb_member values('111','111',0)

資料庫 檔案

定長記錄 檔案頭維護空閒列表 變長記錄 塊頭 空閒空間 記錄 插入 在空閒空間末尾分配空間 刪除 將條目之前的全部向後移動 大物件通常儲存到特殊檔案,通過指標儲存在記錄中 引數檔案 日誌檔案 套接字檔案 通過套接字檔案,unix系統下本地連線mysql可以採用unix域套接字方式 pid檔案 mys...

資料庫檔案移動

oracle資料庫由資料檔案,控制檔案和聯機日誌檔案三種檔案組成。由於磁碟空間的變化,或者基於資料庫磁碟i o效能的調整等,我們可能會考慮移動資料庫檔案。下面以unix平台為例,分別討論三種資料庫檔案的移動方法。一.移動資料檔案 可以用alter database,alter tablespace兩...

MySQL資料庫檔案

mysql的每個資料庫都對應存放在乙個與資料庫同名的資料夾中,mysql資料庫檔案包括mysql所建資料庫檔案和mysql所用儲存引擎建立的資料庫檔案。1 mysql建立並管理的資料庫檔案 frm檔案 儲存資料表的框架結構,mysql資料庫檔名與表名相同,每個表對應乙個同名frm檔案,與作業系統和儲...