ورود

View Full Version : سوال: مشکل There is already an object named 'tbl_Subject' in the database.



imanasp
یک شنبه 20 تیر 1389, 10:09 صبح
سلام من میخام از یک دیتابیسم اسکریپت بگیرم و توی یک دیتابیس دیگه اجرا کنم تا تمامی جداول، ویوها و .. به دیتابیس دوم انتقال پیدا کنه منتهی این خطا رو میگیره جالبه که دیتابیس دوم خالیه! (از تمامی جدولها این خطا رو میگره که من یکی رو به عنوان مثال در عنوان تایپیک قرار دادم)
Sql Server 2008

ابنم مثل مشکل منه:
http://www.mssqltips.com/tipprint.asp?tip=1763

حمیدرضاصادقیان
یک شنبه 20 تیر 1389, 11:24 صبح
سلام.شما باید اول کنترل کنید که اون شی وجود داره یانه.اگر وجود داره و داخلش اطلاعات نیست اونو Drop کنید بعد مجدد ایجاد کنید.یا چک کنید اگر وجود داشت دیگه ایجاد نکنید.
به این کد توجه کنید.


if exists(select name from sysobjects where name='tbl_test')
Drop Tbl_Test

Create Tbl_test
()

Or
If Not exists(select name from sysobjects where name='tbl_test')
Create Table tbl_test


روش اول اونو حذف میکنه بعد ایجاد میکنه در روش دوم چک میکنه اگر وجود نداشت اونو ایجاد میکنه.
موفق باشید.

imanasp
یک شنبه 20 تیر 1389, 13:12 عصر
من 16 تیبل دارم باید برای همه این کار رو بکنم؟؟
ببینید شما زمانیکه میخاید تمامی جداول، ویوها و stored procedure ها رو از دیتابیسی به نام DB در یک دیتابیس جدید و خالی به نام MyDB کپی کنید چکار می کنید?? خوب مسلما از دیتابیس DB یک اسکریپت می گیرید بعد در دیتابیس MyDB یک new query ایجاد و اون اسکریپت رو کپی و سپس Execute می کنید دیگه؟؟؟
خوب من این کار رو که می کنم این خطا گرفته میشه در صورتی که دیتابیس MyDB خالیه!!!:عصبانی++:

حمیدرضاصادقیان
یک شنبه 20 تیر 1389, 14:06 عصر
شما Script رو از چه طریقی تهیه میکنید؟؟
وقتی که Script رو تهیه میکنید گزینه Drop object رو تیک میزنید؟
اونو تیک بزنید ببینید مشکل حل میشه یا خیر.

imanasp
یک شنبه 20 تیر 1389, 14:46 عصر
شما Script رو از چه طریقی تهیه میکنید؟؟


راست کلیک روی دیتابیس :Tasks->Generate Scripts


وقتی که Script رو تهیه میکنید گزینه Drop object رو تیک میزنید؟

منظورتون Scripe Drope دیگه؟ اگه اینطوره وقتی اون رو true می کنم یک سری خطاهای دیگه می گیره:

Msg 3728, Level 16, State 1, Line 2
'FK_tbl_TeachStudy_tbl_Branch' is not a constraint.
Msg 3727, Level 16, State 0, Line 2
Could not drop constraint. See previous errors.
Msg 3728, Level 16, State 1, Line 1
'FK_tbl_TeachStudy_tbl_Section' is not a constraint.
Msg 3727, Level 16, State 0, Line 1
Could not drop constraint. See previous errors.
Msg 3728, Level 16, State 1, Line 1
'FK_tbl_TeachStudy_tbl_University' is not a constraint.
Msg 3727, Level 16, State 0, Line 1
Could not drop constraint. See previous errors.
Msg 3728, Level 16, State 1, Line 1
'FK_tStudy_teacher' is not a constraint.
Msg 3727, Level 16, State 0, Line 1
Could not drop constraint. See previous errors.
Msg 3728, Level 16, State 1, Line 2
'FK_tWork_teacher' is not a constraint.
Msg 3727, Level 16, State 0, Line 2
Could not drop constraint. See previous errors.
Msg 3728, Level 16, State 1, Line 2
'FK_cProgram_university1' is not a constraint.
Msg 3727, Level 16, State 0, Line 2
Could not drop constraint. See previous errors.
Msg 3728, Level 16, State 1, Line 1
'FK_tbl_CourseProgram_tbl_Cource' is not a constraint.
Msg 3727, Level 16, State 0, Line 1
Could not drop constraint. See previous errors.
Msg 3728, Level 16, State 1, Line 1
'FK_tbl_CourseProgram_tbl_Teacher' is not a constraint.
Msg 3727, Level 16, State 0, Line 1
Could not drop constraint. See previous errors.
Msg 3728, Level 16, State 1, Line 1
'FK_tbl_CourseProgram_tbl_Term' is not a constraint.
Msg 3727, Level 16, State 0, Line 1
Could not drop constraint. See previous errors.
Msg 3728, Level 16, State 1, Line 2
'FK_majors_brn' is not a constraint.
Msg 3727, Level 16, State 0, Line 2
Could not drop constraint. See previous errors.
Msg 3728, Level 16, State 1, Line 1
'FK_majors_section' is not a constraint.
Msg 3727, Level 16, State 0, Line 1
Could not drop constraint. See previous errors.
Msg 3728, Level 16, State 1, Line 1
'FK_majors_university' is not a constraint.
Msg 3727, Level 16, State 0, Line 1
Could not drop constraint. See previous errors.
Msg 3728, Level 16, State 1, Line 2
'FK_teacher_university' is not a constraint.
Msg 3727, Level 16, State 0, Line 2
Could not drop constraint. See previous errors.
Msg 3728, Level 16, State 1, Line 2
'FK_fsubject_city' is not a constraint.
Msg 3727, Level 16, State 0, Line 2
Could not drop constraint. See previous errors.
Msg 3728, Level 16, State 1, Line 1
'FK_tbl_SubjectCity_tbl_Subject' is not a constraint.
Msg 3727, Level 16, State 0, Line 1
Could not drop constraint. See previous errors.
Msg 3728, Level 16, State 1, Line 2
'FK_university_city' is not a constraint.
Msg 3727, Level 16, State 0, Line 2
Could not drop constraint. See previous errors.
Msg 3728, Level 16, State 1, Line 2
'FK_Question_brn' is not a constraint.
Msg 3727, Level 16, State 0, Line 2
Could not drop constraint. See previous errors.
Msg 3728, Level 16, State 1, Line 1
'FK_Question_city' is not a constraint.
Msg 3727, Level 16, State 0, Line 1
Could not drop constraint. See previous errors.
Msg 3728, Level 16, State 1, Line 1
'FK_tbl_Question_tbl_State' is not a constraint.
Msg 3727, Level 16, State 0, Line 1
Could not drop constraint. See previous errors.
Msg 3728, Level 16, State 1, Line 2
'FK_city_state' is not a constraint.
Msg 3727, Level 16, State 0, Line 2
Could not drop constraint. See previous errors.
Msg 3728, Level 16, State 1, Line 2
'FK_tbl_Users_tbl_Branch' is not a constraint.
Msg 3727, Level 16, State 0, Line 2
Could not drop constraint. See previous errors.
Msg 3728, Level 16, State 1, Line 1
'FK_tbl_Users_tbl_State' is not a constraint.
Msg 3727, Level 16, State 0, Line 1
Could not drop constraint. See previous errors.