Viewing 15 posts - 1 through 15 (of 26 total)
My prayers are with you and your family as you heal from this.
July 7, 2020 at 5:30 pm
You're right - select @@version does give you everything. Mine is just more focused and helps with my lack of attention span 😉
February 25, 2009 at 8:11 am
Have you tried running:
RESTORE [DATABASE]
WITH RECOVERY
February 24, 2009 at 12:38 pm
Just a question - did you use the NORECOVERY option when you restored the database?
February 24, 2009 at 12:13 pm
This will give you the version and service pack level
SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition')
February 24, 2009 at 11:43 am
This Microsoft Support article seems to address the issue that you're experiencing:
February 24, 2009 at 10:57 am
I can't remember where I found this, but I use the following trigger to audit login events. This has the added benefit of writing the events to a table.
CREATE...
January 30, 2009 at 10:58 am
Yes, Kelvin's idea is fairly simple. You can use something like:
DECLARE @cmdstr varchar(100)
DECLARE @filedir varchar(50)
SET @filedir = path that the file should be copied to
SET @cmdstr = 'bcp...
January 7, 2009 at 2:55 pm
I've run into this before. Here's my understanding (and I'm sure that I'll be corrected if I'm wrong): If ANSI_NULLS is set ON, NULL is some unknown value, so...
December 23, 2008 at 9:19 am
There's also this:
select b.uid, b.name as username,a.name as login
from master.dbo.syslogins a, sysusers b
where a.sid = b.sid
November 18, 2008 at 9:47 am
Thanks - I've seen that article and our sys engineer is looking into the spn issue. I still don't know why the passive node would be trying to access...
September 12, 2008 at 3:39 pm
What Lynn and DaveB are saying is that they feel (and I agree) that it's the responsibility of the DBA to set up replication. While we've had developers...
September 12, 2008 at 3:01 pm
The IP address of the client is the passive node of the failover cluster. That's what's making this confusing.
September 12, 2008 at 1:47 pm
We're still experiencing these errors and I can't find anything online that explains them. If anyone else has experience with this, I'd appreciate it.
September 12, 2008 at 1:38 pm
Viewing 15 posts - 1 through 15 (of 26 total)