Viewing 15 posts - 16 through 30 (of 306 total)
Thanks for replying but my problem is not in modifying the mdf file name. When it is in the prod server file name is database_data.mdf but when I back up...
February 18, 2010 at 7:40 pm
it's been soooooooo long since I last open my account :hehe: thanks for sharing your idea at least it is proven to run sql 2000 to sql 2008 restore procedure...
September 28, 2009 at 8:21 pm
Thanks for the reply lowell. In another case of my officemate (he uses the same machine but different profile) the SQL groups are there in the EM but when he...
February 11, 2009 at 8:13 pm
I'm glad it worked for sql version 2008. The only difference is the schema of the tables in sql 2000, 2005 and 2008 🙂
February 2, 2009 at 6:59 pm
try this...
sp_mshelpcolumns 'table_name'
in the result, search for the col_identity column if value is 1 then that column has an identity
January 13, 2009 at 12:06 am
Does the script above available for sql 7 and/or 2000?
January 5, 2009 at 6:37 pm
In situations like this can I take the database to offline mode then take it to online mode?
January 4, 2009 at 7:58 pm
I think that is what causing the error since you are in case sensitive mode. Try changing the created tables with the actual table listed by Microsoft in the web...
December 16, 2008 at 6:04 pm
I'm glad it works!!! 😀
December 11, 2008 at 6:38 pm
Sorry for the late reply refer to the previous post in this thread. You will see 1 member posting the 2 table schema of the tables you are saying. Change...
December 9, 2008 at 2:33 am
For Data File Space run
USE [DatabaseName]
DBCC SHOWFILESTATS
Result Computation
DB Size - (totalextents*64)/1024
DB Used - (usedextents*64)/1024
DB Space - (DB Size) - (DB Used)
For Log File Space run
DBCC SQLPERF(LOGSPACE)
December 3, 2008 at 10:54 pm
sql_Reporter (11/18/2008)
Any ideas
declare @md varchar(100), @Path varchar(100),@wk_novarchar(2)
set@wk_no = datepart(wk,getdate())
--print...
November 18, 2008 at 9:22 pm
Viewing 15 posts - 16 through 30 (of 306 total)