Viewing 15 posts - 1,216 through 1,230 (of 1,995 total)
i think this might answer your question
Update b
set b.run_daily_avg_consum = cast(a.run_daily_avg_consum as decimal(15,5)) *.7 + b.Daily_avg_Consumption *.3
From [Stage1W_Dim_Readings] a inner join [Stage1W_Dim_Readings] b on
a.pod_no = b.pod_no and a.Read_Seq_Pod...
May 16, 2012 at 8:32 am
beware of using syscomments for this - you can get more than one row and the keyword you look for can be split across 2 rows
i would recommend finding them...
May 16, 2012 at 8:29 am
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
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...
May 16, 2012 at 3:22 am
MisLead (5/15/2012)
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...
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...
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...
May 16, 2012 at 2:16 am
it's not been implemented by quantix has it ?
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 😀
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...
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...
May 15, 2012 at 1:33 am
its an old script from sql 2000 days - sorry
May 15, 2012 at 1:21 am
Lynn Pettis (5/14/2012)
May 14, 2012 at 10:02 am
Viewing 15 posts - 1,216 through 1,230 (of 1,995 total)