Viewing 15 posts - 301 through 315 (of 692 total)
This will tell you the values of the key that are duplicated, and how many times they occur. From there you can select * ...where MyKey = 'value here' to...
November 24, 2004 at 3:06 pm
Please see your thread in the Backups Category.
November 24, 2004 at 2:58 pm
Did you take a transaction log backup before doing your restore?
If not, then you cannot reclaim the transactions that occured after the full backup. The transaction log is part of the...
November 24, 2004 at 2:55 pm
You need to qualify your function name... DBName.ownername.MaxLoginTime()
Steve
November 24, 2004 at 1:18 pm
I've been watching this thread with interest. I've heard the arguments that virtually ANY cursor can be re-written as a set based operation, and I guess I have to say...
November 24, 2004 at 1:14 pm
I just finished typing a long reply, clicked post, and it went away. To where, I don't know.
Anyway, the one database that we're shipping is our backup tape library, and...
November 24, 2004 at 12:13 pm
What error messages are you getting when you try to attach or restore?
Exacty what steps are you taking when you try to attach?
Have you tried copying model.mdf and modellog.ldf from...
November 24, 2004 at 9:51 am
Yes, collation sets case sensitivity among other things, character sets, etc...
In SQL_Latin1_General_CP1_CI_AS, the CI says "case insensitive". You can change the collation of a database, but the objects currently within...
November 24, 2004 at 9:46 am
One thing to consider if you decide to change the collation on the database in question is that tempdb also has the system collation. If you create temporary tables, they...
November 24, 2004 at 8:27 am
David,
I'm kind of surprised you haven't gotten any responses also! To be honest, this is the first time that I have seen this thread, but it was certainly a...
November 24, 2004 at 7:32 am
It looks to me like everything went well except that you didn't use the 'WITH RECOVERY' clause on your last restore. As Allen said, all that is required at this...
November 23, 2004 at 3:18 pm
OH! You can script a view, and get the source columns/tables that way. In Enterprise Manager, right click, all tasks, generate SQL script. Click "Show All", select your view from the...
November 22, 2004 at 8:41 pm
Here's the procedure that I use. It uses a control table to store the path to the backups, so I'm including the script to create that table as well. Perhaps...
November 22, 2004 at 4:40 pm
Here's the procedure that checks database file space. It does do log files too, though. I didn't write this one either, but I do know who did. Some guy by...
November 22, 2004 at 12:22 pm
Here's a stored procedure that will get all local drives, capacity, and free space. I didn't write this, and I'm not sure who to give credit to. Chances are that...
November 22, 2004 at 12:12 pm
Viewing 15 posts - 301 through 315 (of 692 total)