Viewing 15 posts - 1,216 through 1,230 (of 1,993 total)
anthony.green (5/16/2012)
what about with the /f switch which should just start the MASTER database to which you should then be able to execute the alter database statementshttp://msdn.microsoft.com/en-us/library/ms345408%28v=SQL.100%29.aspx
that looks interesting
MVDBA
May 16, 2012 at 3:24 am
ryan - i beleive that is your only way - sql is trying to create the tempdb files when it starts and it can't, so it shuts down.
as far as...
MVDBA
May 16, 2012 at 3:22 am
MisLead (5/15/2012)
MVDBA
May 16, 2012 at 3:10 am
ive found the easiest way to do this is to mount a new drive with the same drive letter as the failed one.
then boot sql server and modify the...
MVDBA
May 16, 2012 at 3:07 am
a usefull insight into the impact - there are many detailed articles on this, but none that are as simple and clear....
one thing you missed though... your server has...
MVDBA
May 16, 2012 at 2:55 am
just an update
after some testing we have adopted a different approach - it wasn't service broker that was the problem (as mentioned in the previous 2 posts)
the 64 bit...
MVDBA
May 16, 2012 at 2:16 am
it's not been implemented by quantix has it ?
MVDBA
May 16, 2012 at 2:03 am
i think i hit the jackpot
http://msdn.microsoft.com/en-us/library/dd576261(v=sql.100).aspx
finally after 2 days worth of digging 😀
MVDBA
May 15, 2012 at 2:09 am
i did find this interesting snippet
http://datageekgal.blogspot.co.uk/2008/07/sql-server-service-broker-archival.html
ARCHIVAL TIP #5: TUNE THE NUMBER OF QUEUE READERS
I've yet to find a solid recommendation for choosing the number of queue readers (threads) to activate...
MVDBA
May 15, 2012 at 2:04 am
thanks for the reply lynn
i have to assume that the files will be constant and a 24*7 basis, and that the number of files will be more than a single...
MVDBA
May 15, 2012 at 1:33 am
its an old script from sql 2000 days - sorry
MVDBA
May 15, 2012 at 1:21 am
Lynn Pettis (5/14/2012)
MVDBA
May 14, 2012 at 10:02 am
ooops - slight tweak to my code
create table ##res(db varchar(100), fileid bigint,filesize float,spaceused float,freespace float,name varchar(255) ,fname varchar(max))
exec sp_msforeachdb 'use ? insert into ##res select ''?'',* from (
select
a.FILEID,
[FILE_SIZE_MB] =
convert(decimal(12,2),round(a.size/128.000,2)),
[SPACE_USED_MB]...
MVDBA
May 14, 2012 at 9:54 am
i dont think you need SSIS to do this
you should be able to modify the script below to do what you need
create table ##res(db varchar(100), fileid bigint,filesize float,spaceused float,freespace...
MVDBA
May 14, 2012 at 9:52 am
Viewing 15 posts - 1,216 through 1,230 (of 1,993 total)