Viewing 15 posts - 1,216 through 1,230 (of 1,999 total)
lynn beat me to it again
May 16, 2012 at 9:24 am
declare @TimeInterval int=1
declare @dt_Start datetime
declare @dt_End datetime
exec pr_GetLastInterval]
@TimeInterval,
@dt_Start OUTPUT,
@dt_End OUTPUT
select @dt_start,@dt_end
May 16, 2012 at 9:24 am
the first one orderd by to.date of call - if there are multiples at the same time then it will depend on the internal storage in the table t0
if there...
May 16, 2012 at 9:15 am
Geoff A (5/16/2012)
why would you use replication? database mirroring could provide DR for you across the WAN.
do users in the...
May 16, 2012 at 8:42 am
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
Viewing 15 posts - 1,216 through 1,230 (of 1,999 total)