sql資料庫錯誤如何解決求大神出招

2022-03-09 00:38:30 字數 1842 閱讀 7134

1樓:匿名使用者

換作業系統或換sql版本

在sql sever2014中,附加資料庫出現如下錯誤?大神求解釋,該怎麼處理?

2樓:異次元**

許可權問題,你給.mdf和.ldf加上許可權就可以了。

3樓:匿名使用者

資料庫如果不是在2014中建立的有可能版本不相容

sql資料庫問題,求大神解答

4樓:oracle九叔

你好的!

select 姓名,部門 from 職工 where 年齡 >40;

select 職工號 from 參加 where 社團編號 = 'xqxz';

select 活動地點from 社會團體 where 名稱 = '合唱團';

select 職工號 from 參加 where 社團編號 <> 'wdxz';

select a.姓名,a.性別,a.部門 from 職工 a ,參加 b , 社會團體 c where a.職工號 = c.職工號

and b.社團編號 = c.社團編號

and b.名稱 = '舞蹈社'

這應該是正確答案!

望採納!

我在更新一份資料到sql資料庫時,顯示錯誤如附件1,求大神解答,謝謝。最高分奉上。

5樓:仙女龍媽媽

你如果設定了自增長的話 id那個欄位就不用寫在sql語句裡了

要不然就先執行set identity_insert 表名 on 然後再試試

6樓:匿名使用者

查一下,是不是有 觸發器,之類的

sql server 執行update語句出錯,求大神

7樓:哎呀

正確寫法如下:

update  hs

set hs.student_age = hs.student_age + 1

from mychu_schema.hand_student hs,mychu_schema.hand_student_core hsc

where hsc.student_no = hs.student_no

and hsc.course_no = 'c011'

也可以用類oralce的寫法:

update hs

set hs.student_age = hs.student_age + 1

from hand_student hs --注意這裡

where hs.student_no in (select hsc.student_no

from hand_student_core hsc

where hsc.student_no = hs.student_no

and hsc.course_no = 'c011')

重要差異在於 update 後面的資料庫名不能直接指定別名,只能在 from 後指定。

開發時連線sql server資料庫報這個錯,求大神解答

8樓:啊純小姐檬

你的sql server是自己裝的,還是vs帶的,如果是vs帶的,它的例項名一般是sqlexpress,連線字串一般是

server=.\\sqlexpress;integrated security=sspi;database=資料庫名

如果是自己裝的企業版或者專業版之類的,則是server=.;integrated security=sspi;database=資料庫名

sql資料庫題求大神幫忙,sql資料庫題求大神幫忙

if object id n member is not null drop table membercreate table member mid char 10 not null primary key,mname char 50 not null goexec sp addextendedpr...

資料庫實驗報告,求SQL資料庫實驗報告

visual foxpro資料庫 抄基礎教程實踐與題解 襲是 visual foxpro資料庫基礎教程 配套教材。全書包括4部分內容 第1部分為 visual foxpro資料庫基礎教程 的習題與參 第2部分為visualfoxpro8.0的安裝 配置和課程本身的上機實驗安排,介紹了指導學生上機實驗...

SQL資料庫建立,如何與C window窗體應用程式連結

你是連最簡單的資料庫 都不會吧。先找幾本書看看吧 csdn找找 也許有你想要的 怎麼將sql資料庫連線到窗體應用程式中 c 語言!越詳細越好!要新建一個類 需要的時候呼叫 建立sqlconection物件con sqlconnection con con new sqlconnection 定義一個...