Viewing 15 posts - 45,421 through 45,435 (of 49,571 total)
torpkev (7/28/2008)
Does anyone know the exact release date yet? -- I believe its Q3, but any idea when?
I don't think anyone knows. The guys over at MS are being...
July 28, 2008 at 10:37 am
There are three different ways that the query processor can implement joins, loop, merge, hash. They're each good in specific conditions. If you use a hint, you are forcing the...
July 28, 2008 at 10:30 am
If you're running SQL 2005 SP2 or higher, you should be able to do this with a logon trigger. Within the trigger you can check the user name and the...
July 28, 2008 at 10:26 am
I thought Vue had discontinued the MS exams a long time ago. Was that just outside of the US? Down here it's only prometric now.
Farhad: http://www.prometric.com You can find a...
July 28, 2008 at 10:10 am
balbirsinghsodhi (7/28/2008)
How to estimate database recovery time in sql 2005.
How long is a piece of string?
Without a lot, lot more info, there's no way to say. I've had everything from...
July 28, 2008 at 10:08 am
Yup. I can see the problem.
Look over the example I posted above and look carefully at which variable have the _ and which don't. While I prefer the names more...
July 28, 2008 at 10:02 am
Are there any other queries running against table1? Inserts? Updates? Deletes?
July 28, 2008 at 10:01 am
select c.name, t.name from sys.columns c inner join sys.types t on c.user_type_id=t.user_type_id
July 28, 2008 at 5:20 am
Actually, you want to take a full backup after running this, as you are truncating the log and breaking the recovery chain. After running this you will not be able...
July 28, 2008 at 4:50 am
Please post table schema, index definitions and some of the more frequent queries
Talking about table optimisation in the abstract is difficult at best.
July 28, 2008 at 4:48 am
su_kumar11 (7/28/2008)
Could u please tell me how to start the server with traceflag 1400.
I would recommend that you don't and rather look at patching the server to SP2 at the...
July 28, 2008 at 4:21 am
Make sure they don't have any rights to the database. (and make sure they're not sysadmin)
July 28, 2008 at 4:20 am
I do hope you're taking a full backup afterwards, since you're also breaking your log chain doing this.
When you say "It's not working" What do you mean? Error? Not doing...
July 28, 2008 at 4:14 am
What did the xp_cmdshell return for him? I know it will work, I'm interested in what it shows when you try to do a DIR of the serverA.
What error are...
July 28, 2008 at 4:07 am
But if you put the database on each user's PC, then each user can only see their own information and not anything that anyone else adds/changes.
Is that what you...
July 28, 2008 at 4:04 am
Viewing 15 posts - 45,421 through 45,435 (of 49,571 total)