Viewing 15 posts - 43,381 through 43,395 (of 49,571 total)
Mike Levan (11/3/2008)
November 4, 2008 at 12:38 am
terryj30 (11/4/2008)
1) dbcc opentran(dbname) - this will show the oldest open transaction
2) Kill this process
3) backup log dbname with no_log
4) use dbname
5) dbcc...
November 4, 2008 at 12:36 am
Please don't cross post. It just wastes people's time and fragments replies.
No replies to this thread please. Direct replies to: http://www.sqlservercentral.com/Forums/Topic595934-338-1.aspx
November 3, 2008 at 1:34 pm
J (11/3/2008)
This is getting ridiculous.An author proposes one of his books and someone expects to have it for free ?
And expects it to be sent to him at the author's...
November 3, 2008 at 1:31 pm
Your index is very, very slightly fragmented (logical scan fragmentation. Lower is better) and the pages are 90% full (Avg. Page Density. Close to 100% is usually better)
All in all,...
November 3, 2008 at 1:31 pm
los (11/3/2008)
Given that each subsequent diff backup contains all the changes since the last full backup, is it necessary to keep the previous diff backups?
It's a good idea. What...
November 3, 2008 at 1:03 pm
muhammed_annaggar (11/3/2008)
the problem is the permissions are removed when attaching a database to an other server.Muhammad
Which permissions?
SQL's permissions work at 2 levels. There are the database-level permissions which are related...
November 3, 2008 at 1:02 pm
Top 1 not necessary in an exists. Exists just checks if there's any rows or not, it doesn't care how many rows. Remove the top 1 and the behaviour will...
November 3, 2008 at 12:57 pm
Marios Philippopoulos (11/3/2008)
Yes, we have collected these perfmon counters, and from the values it appears there is indeed latency in the PROD-SAN drive.
Surprise surprise (not). Is it sharing drives with...
November 3, 2008 at 9:33 am
mduffy (11/3/2008)
November 3, 2008 at 9:30 am
2GB is tiny for a database. I've mirrored a 600GB one without issues (on a LAN). If you're planning to do it over a WAN, watch out. Other thing to...
November 3, 2008 at 9:21 am
muhammed_annaggar (11/3/2008)
Do you know what is happen internally in the server when a user attaches a database, i.e. is there any procedures called or any thing...
November 3, 2008 at 9:14 am
To get the latest 100 rows, you need some column that stores the date that the row was inserted, or you need an identity column (or a uniquidentifier with a...
November 3, 2008 at 9:08 am
Please don't start a new thread for an existing problem. People who encounter it without reading the original won't have a clue what's going on.
What's the setup, what's the...
November 3, 2008 at 9:05 am
Consider Transparent Database Encryption in SQL 2008. It's not username/password, but it will prevent a database from been attached/restored unless the appropriate certificate is on the destination server.
Now, if someone...
November 3, 2008 at 9:04 am
Viewing 15 posts - 43,381 through 43,395 (of 49,571 total)