Viewing 15 posts - 106 through 120 (of 1,065 total)
ghanshyam.kundu (9/9/2011)
UPDATE Community
Set NetworkLogin = 'c' + cast(id as varchar(255))
FROM Community c INNER JOIN
Constituencies cn ON c.ID = cn.ID
WHERE cn.ConstitCode = @PC
in...
September 9, 2011 at 2:11 am
There are a couple of thing wrong with your update statement...
First, SQL server uses + to concatenate values, not &
Second, I assume ID is an integer data type (e.g. integer),...
September 8, 2011 at 1:38 am
I don't see why you think having a PLAINTIFF table with a type indicator plus PERSON and COMPANY tables is a bad idea. It seems to me that you have...
September 7, 2011 at 2:09 am
smallmoney (9/5/2011)
Sorry did you mean group 0?thanks!
Oops, yes, I did mean group 0 :Whistling:
The name isn't significant, you can rename it to whatever you want... preferably something useful
September 5, 2011 at 12:00 pm
Dean Jones-454305 (9/5/2011)
The size is around 200GB for both differential and full.
Which is why the differential is taking as long as a full backup
The differential should only be backing...
September 5, 2011 at 11:57 am
Are you saying that a Differential backup done using just the standard TSQL commands is quicker?
If the database has been heavily updated since the previous full backup, a differential can...
September 5, 2011 at 8:08 am
I presume you are questioning why you are getting NULL in the output.
If so, you need to initialise @colout. Unless you set the CONCAT_NULL_YIELDS_NULL option to off, NULL concatenated...
September 5, 2011 at 7:10 am
Yes, that's normal.
I would leave the shared drive in group 1, and install SQL Server 2005 in group 1.
That way, you can move the cluster resources independently of your SQL...
September 5, 2011 at 4:47 am
If the application is timing out, you should get an "Attention" event in Profiler.
Couple that with other profiler events (e.g. your long running queries one... look for long running queries...
August 31, 2011 at 4:57 am
Search this, or any other SQL Server forum, and you will see so many other people having issues backing up over a network.
Almost without exception, the advice is... Don't...
July 28, 2011 at 1:39 am
That looks very much like it's just a problem with the publisher not being able to connect to the subscriber.
June 2, 2011 at 2:11 am
It's the transaction undo file created when you restore WITH STANDBY.
It contains uncommitted transactions that need to be replayed prior to restoring the next transaction log.
May 23, 2011 at 4:41 am
Thanks for clarifying that Michael.
The trouble is, there are so many definitions of Julian date.
The OP mentions mainframe dates... His definition of a Julian date is in the form...
May 20, 2011 at 1:07 pm
Michael Valentine Jones (5/19/2011)
May 20, 2011 at 1:34 am
Robert Davis (5/18/2011)
And yes, I am a mirroring expert. 😉
I hope this isn't seen as hijacking the post, but as Robert is a mirroring expert, I would be interested to...
May 18, 2011 at 11:42 am
Viewing 15 posts - 106 through 120 (of 1,065 total)