Viewing 15 posts - 1,126 through 1,140 (of 1,999 total)
krypto69 (5/23/2012)
I was thinking about log shipping...My intial google - seems like log shipping is kinda a bitch to setup?
not really - in sql 2000 it was an enterprise edition...
May 23, 2012 at 6:43 am
hmm
but the funny thing is that yesterday the query was working fine.... what can have changed to make the showcontig stall ?
May 23, 2012 at 6:40 am
i simplified the code just to match the CTE i wrote for you, but it would look a little like this
with x (mon,monid) as
(select DATENAME(month,1) as month,1 as monid
UNION...
May 23, 2012 at 5:39 am
sanujss (5/23/2012)
I am working on a GPS related issue. There is a table where we keep geographical information of vehicles tracked using GPS devices. This devise will be sending...
May 23, 2012 at 5:23 am
Sachin 80451 (5/23/2012)
May 23, 2012 at 5:15 am
this is something that itzik ben-gan demos at some of conferences he talks at
he's doesn't say don't use read uncommitted, just know when and where to use it and be...
May 23, 2012 at 4:53 am
perry - could you post the update command you are trying to perform, and also the structure of the table and all indexes on it.
we can't really assist without this
May 23, 2012 at 3:53 am
i tried the following and found by turning on Client statistics and sql profiler that my version using RIGHT performs consitantly better by a very small margin
create table #temp(emailid varchar(100))
insert...
May 23, 2012 at 2:19 am
Usman Butt (5/23/2012)
But...
May 23, 2012 at 2:02 am
krypto69 (5/22/2012)
Thanks to the help from this site, I setup mirroring. Which worked fine until...
May 23, 2012 at 1:54 am
SQL Kiwi (5/23/2012)
dwain.c (5/23/2012)
May 23, 2012 at 1:32 am
from the link i posted - hence my original posting
A database mirroring session runs with either synchronous or asynchronous operation. Under asynchronous operation, the transactions commit without waiting for the...
May 23, 2012 at 1:21 am
my bad there (oops) - i was just trying to find the link that describes the difference between high performance and high safety and accidentally hit post!
see the following link
May 22, 2012 at 9:14 am
post deleted because it was wrong (oops) 🙂
May 22, 2012 at 8:47 am
the other thing to consider is do you want to do CI (continuous integration) builds on your checked in code......
May 22, 2012 at 8:38 am
Viewing 15 posts - 1,126 through 1,140 (of 1,999 total)