Viewing 15 posts - 76 through 90 (of 177 total)
sp_detachdb and sp_attachdb don't exist, it should be sp_detach_db and sp_attach_db.
D'OH - seems like I was the 5th or 6th person to make that point - should read the complete...
July 2, 2008 at 8:38 am
At my last job where I was the DBA Team Lead, I implemeneted a policy of unique, 12-character random passwords (from Password Safe), but we had a single set of...
June 27, 2008 at 8:35 am
To install a new clustered instance, set up a new Cluster Group, with a volume(s) allocated (and properly formatted for SQL, of course), dont add anything else to the Cluster...
June 26, 2008 at 4:21 pm
So, I'm going to get my point for this - like others have said #3 is WRONG
Select EmpName, DateOfLeaving from Employees order by DateOfLeaving desc, EmpName asc would give you:
EmpName...
June 23, 2008 at 8:23 pm
Thanks Johan.
I actually got my lazy self to go and do the research, and found this on MSDN
All database mirroring sessions support only one principal server and one mirror...
June 12, 2008 at 1:33 pm
Thanks Al :smooooth:.
Actually, the app has multiple databases, which are spread across the two instances - its an email archiving app (for legal recovery) that covers that whole of North...
June 10, 2008 at 1:47 pm
How does this represent a potential security concern?
The security concern is the ad-hoc SQL being executed - i.e. not controlled code.
June 10, 2008 at 8:39 am
Badly worded question -
Would statements #1 and #2 consistently return the same result set?
How do we define "Same Result" Same result as the other statement? Same result across...
June 4, 2008 at 11:58 pm
Thanks Mohammed, at the risk of sounding dumb, is that just the job(s). I dont have access to my work SSMS right now.
May 30, 2008 at 5:24 pm
This is a doc I had to create for our department recently, about SQL Installation on a cluster (the formatting looks better in Word!!):
This assumes that...
May 30, 2008 at 9:33 am
santhu (5/29/2008)
it is basically used as queue servce database..no user table/data resides here, as a result it is difficult to know how data would be there..moreover even i am not...
May 30, 2008 at 8:59 am
ALZDBA (5/30/2008)
THIS SCRIPT IS NOT INTENDED FOR SCHEDULED USAGE !!
Thanks AL.
May 30, 2008 at 8:49 am
Christian Buettner (5/27/2008)...Sorry Simon, this is not correct (or at least misleading)...
Sorry, it could be construed as misleading. My assumption was that everyone would understand that the discussion was about...
May 27, 2008 at 5:23 pm
Aleksandr Furman (5/27/2008)
I tried this:
declare @C nvarchar(max)
set @C = N'hello' + replicate('-',8000)
print len(@c)
the result was still 4000. Can someone explain why it wasn't...
May 27, 2008 at 12:51 pm
Viewing 15 posts - 76 through 90 (of 177 total)