1樓:匿名使用者
估計是sql server的備份檔案,
你在查詢分析器中執行下面的語句檢查一下就知道了:
restore verifyonly from disk='c:\你的檔案'
還原的話,到企業管理器裡面去還原(不過你的檔案這麼小,不知道是否完全備份,如果不是完全備份,則不可還原)
還原資料庫
企業管理器
--右鍵"資料庫"
--所有任務
--還原資料庫
--"還原為資料庫庫"中輸入還原後的資料庫名
--還原選擇"從裝置"--選擇裝置--新增--新增你的備份檔案--確定,回到資料庫還原的介面
--備份號--選擇內容--選擇你要恢復那次備份的內容
--選項--將"移至物理檔名"中的物理檔名修改為你的資料檔案要存放的檔名
--如果要還原的資料庫已經存在,選擇"在現有資料庫上強制還原"-
-確定如果不可以用上面的方法還原,說明這個備份檔案不是完全備份
2樓:智尋綠
------------------------------------------
企業管理器
--右鍵"資料庫"
--所有任務
--還原資料庫
--"還原為資料庫庫"中輸入還原後的資料庫名--還原選擇"從裝置"--選擇裝置--新增--新增你的備份檔案--確定,回到資料庫還原的介面
--備份號--選擇內容--選擇你要恢復那次備份的內容--選項--將"移至物理檔名"中的物理檔名修改為你的資料檔案要存放的檔名
--如果要還原的資料庫已經存在,選擇"在現有資料庫上強制還原"--確定
sql server資料庫問題!急急急!!!! 15
3樓:
連庫啊,然後輸出,然後列印就好了,不知道樓主想問什麼
sql server 資料庫問題!!急急急!!!
4樓:sql的藝術
明確的告訴你,你用紅框框中的那些工具欄,在表瀏覽狀態下是不可用的,只有在新建查詢時可用如圖:
5樓:
update 表
set 欄位=left(欄位,charindex('。',欄位)-1)
where charindex('。',欄位)>0或者update 表
set 欄位=left(欄位,(select case when charindex( '。',欄位)>0 then charindex('。',欄位)-1 else len(欄位) end))
更新之前最好用語句檢查一下
select left(欄位,(select case when charindex( '。',欄位)>0 then charindex('。',欄位)-1 else len(欄位) end))
from 表
高分求一道sql資料庫問題,急!!!(**等)
6樓:匿名使用者
以下sql語句在sql server 2005 express中測試通過
第一題:create table shop
(s# bigint not null,
sname nvarchar(50) not null,
area nvarchar(50) not null,
mgr_name nvarchar(50) not null
) ;
第二題:
select gname, mgr_name from shop, goods, sale
where goods.g#=sale.g# and sale.s#=shop.s# and shop.area="east"
第三題:
select g#, gname from goods where gname like '冰箱'
第四題create view 商品檢視 as
select g#,gnames, s#, sname, quantity, area
from shop, goods, sale
where quantity>2000 and goods.g#=sale.g# and sale.s#=shop.s#
7樓:
1.create table shop
(s# int not null,
sname varchar(50) null,
area varchar(200) null,
mgr_name varchar(10) null,
primary key (s#))2.
select sname,mgr_name from shop where area='east'
3.select g#,price from goods where gname='冰箱'
4create view shop_goods_sale
asselect b.g#,b..gname,c.s#,a.sname,c.quantity,a.area from shop a,goods b,sale c
where a.s#=c.s# and b.g#=c.g# and c.quantity>2000
8樓:枚鴻暢
1.shop表的屬性的資料型別都可以為varchar(20)就行了的。
2.select gname, mgr_namefrom shop, goods, salewhere goods.g#=sale.
g# and sale.s#=shop.s#
and shop.area='east';
3.select g#,gname
from goods
where gname='冰箱';
4.create view goods_viewasselect goods.g#,goods.
gname,shop.s#,shop.sname,sale.
quantity,shop.area
from shop,goods,sale
where shop.s#=sale.s# and goods.g#=sale.g#
and sale.quantity>2000
sql問題!!急急急!!!
9樓:
****有死迴圈~~~~~~~~~~檢查一下
10樓:匿名使用者
能不能使資料庫壞了呢?建議查下資料庫。
c語言,關於資料庫跟函式的一道題
以經給予解答,程式如下。歡迎加qq群 218691837 include include struct nn typedef struct nn data int number char data int main n i t int malloc n 4 for i 0 i t j t temp ...
急求一道生物題的答案,高分!!!一道生物題,急求詳細答案
nin微 1 先輕輕移動裝片,觀察汙物是否隨著移動,如果隨著移動,則汙物在裝片表面或內部,如果移動裝片,汙物不動,一般在鏡頭上,可先轉動目鏡,看汙物是否轉動,如果汙物隨著轉動,說明汙物在目鏡上,否則可能在物鏡上。2 用吸水紙在一例吸引內部液體,使汙物與變形蟲分開。 1 首先 轉動目鏡 看汙物是否有移...
高分求一道大一的向量叉積問題,高分求一道大一的向量叉積問題。 a b a b
朝朝愛電影 a b a模 b模 sin a,b 所以a a b b都為0向量 原式 a b b a 2a b首先一定要培養對數學學習的興趣 其次數學學習的關鍵點是基礎,基礎很重要,一定要打好基礎,否則越到後期學習起來就越困難 最後,學好數學一定要利用好課本 筆記本 錯題本三個本。集合與對應思想,分類...