Viewing 15 posts - 256 through 270 (of 1,473 total)
The differences in our database are pretty drastic. From 70-> 20 gigs using a good amount of page level compression. I'm thinking that is due to us having...
March 25, 2010 at 3:42 pm
Nicholas Cain (3/25/2010)
March 25, 2010 at 3:31 pm
Nope, I'm not, that's the problem. We're currently running on SQL 2000 for all our production system, and there are pretty significant infrastructure changes between that database and the...
March 25, 2010 at 2:25 pm
Paul White NZ (3/25/2010)
Grant Fritchey (3/25/2010)
March 25, 2010 at 10:14 am
I've run both scenarios now (Creating the clustered index on an Identity column, which I had to roll back and creating the clustered index on the existing createdate column). ...
March 25, 2010 at 9:56 am
The Dixie Flatline (3/24/2010)
Just to be cruel... go into query options (on someone else's machine) and change the batch separator from "GO" to "SELECT".
And what opportune timing, with April...
March 24, 2010 at 8:28 am
So... apparently the identity column poses issues with the Application and I need something that can be directly inserted into. Going to try to do this a different way.
All...
March 23, 2010 at 12:55 pm
Heh, no, you mistook me. I wasn't cranky at all. I was joking around with them all being buzzkills with the 'already knowing it' and letting you know...
March 23, 2010 at 7:27 am
Thanks for the feedback and the suggestions Grant. I'm still pretty useless at powershell, but I thinK I've figured out a pretty decent way to do it. I'll...
March 22, 2010 at 1:31 pm
Not as much as I'd hoped. Here are some KB articles on the debugger in SQL 2000. Sorry I can't give you a more specific answer.
http://support.microsoft.com/kb/280101
You might also...
March 22, 2010 at 8:13 am
There are many different options for this in SQL 2005. See the link in my signature referencing string concatenation and post back with any questions.
March 21, 2010 at 1:25 pm
I believe normal hotkey usage is that F1 just opens BOL, SHIFT+F1 opens it and goes to the section you have a word highlighted from.
[Edit] OOps, didn't realize how old...
March 21, 2010 at 10:41 am
If you don't need 100% accurate results (This should be at least 99.5% accurate), you can just do something like this:
SELECT OBJECT_NAME(id) AS [TableName], rowcnt AS [RowCount]
FROM sysindexes I
WHERE indid...
March 21, 2010 at 10:39 am
Can you do a SELECT @@Version on both production and test?
March 21, 2010 at 10:32 am
Viewing 15 posts - 256 through 270 (of 1,473 total)