Viewing 15 posts - 11,161 through 11,175 (of 14,953 total)
Have you checked a trace on tempdb to see what's building up crud in there?
February 2, 2009 at 1:29 pm
The problem you're running into is because the table violates third normal form. Assuming you can't do much about that, I'd say a calculated column will do what you...
February 2, 2009 at 12:16 pm
B is probably your best bet with those drives. Hard drive arrangement is part of server optimization, but it's usually far less important than well-written code.
February 2, 2009 at 12:07 pm
It can be a good thing to split data into current and older tables. I've used that idea a few times very successfully.
Log shipping is a way of keeping...
February 2, 2009 at 10:01 am
krypto69 (2/2/2009)
You'd have to know before-hand what kind of stuff they query.
- GSquared
I think I can get a pretty good list of the kinda stuff they query the most,...
February 2, 2009 at 9:54 am
I don't think it's a problem with SQL Server. I think it's a problem with your network. Looks like something might be up with you DNS. I...
February 2, 2009 at 9:53 am
I'm not clear on what you're asking for. Can you expand on it?
February 2, 2009 at 9:51 am
You'd have to know before-hand what kind of stuff they query.
February 2, 2009 at 9:25 am
Is that a local account or a domain account? The error is saying it can't connect to the domain server to get credentials for the owner of the job....
February 2, 2009 at 9:05 am
In SQL 2005, unique constraints are enforced by an index, so there's no gain to that.
February 2, 2009 at 8:47 am
You might try MSDN for that. All the data is there, as published by Microsoft.
February 2, 2009 at 8:45 am
Luke L (2/2/2009)
February 2, 2009 at 8:45 am
tosscrosby (2/2/2009)
Jeff Moden (2/1/2009)
Of course, I used to think punched cards and wired program boards were a lot of fun, too! 😛
You should see the faces of the young-un's here...
February 2, 2009 at 8:17 am
This article has some data on that, and there's more in the discussion:
http://www.sqlservercentral.com/articles/Auditing/63248/
What I've done since then is work out an audit trigger that looks something like this:
create trigger dbo.MyTable_Audit...
February 2, 2009 at 8:12 am
One thing you could do is post specific stored procedures on this forum, and ask for help with them. Make it clear in the post that you're new to...
February 2, 2009 at 8:01 am
Viewing 15 posts - 11,161 through 11,175 (of 14,953 total)