Viewing 15 posts - 10,696 through 10,710 (of 13,461 total)
deleting records so there are only 50 left does not shrink the size of the database....the database will keep it's original size, so that it is ready to insert more...
August 3, 2009 at 10:00 am
looks like you've already fixed the issue where the multiple single quotes; that was fast.
I still see the issue in my example where a less-than-symbol was assumed to start an...
August 3, 2009 at 9:52 am
While I'm thinking about it, can you give us some metrics as well? how many total rows in the table? how many rows are affected in that 15 minute update?
how...
August 3, 2009 at 6:36 am
i would guess that you are looking at it wrong; an identity, if you are not searching by that now, would not help performance in the slightest.
I'd like to see...
August 3, 2009 at 6:27 am
you might want to consider getting SQL 2008 Developer Edition; it is the latest and greatest and all that.
I just got one earlier last week; I'd been running 2005 forever,...
August 1, 2009 at 3:44 pm
am i missing something? it looks like a comma delimited string, so you could replace the comma with CrLf (Char(13) + CHAR(10) ) for display purposes, or did you want...
July 31, 2009 at 10:59 pm
you need to explicitly start a transaction, because SQL server assumes by default that every command is auto-committed unless there is a BEGIN TRAN command;but other than that it is...
July 30, 2009 at 8:07 pm
ahh, i got you...so you are simply altering them with identical code so the dependencies get entered in correctly, right?
July 30, 2009 at 2:33 pm
if it's grayed out, then it's already installed, right?
July 30, 2009 at 2:32 pm
your only option is SSMS's output results to file.
SQL server does not have a native TSQL command to output to a file; the expectation is the presentation layer would do...
July 30, 2009 at 12:12 pm
i agree with GSquared;
if the disk is NOT full, that implies someone might have put a hard limit on the max size of tempdb; you'd need to allow it...
July 30, 2009 at 11:37 am
functionally, developer version and enterprise are identical, except for licensing.
also, enterprise can't install on a non-server version of a machine...it requires a server OS.
developer version has everything you need, without...
July 30, 2009 at 11:15 am
glad i could help and thanks for the feedback!
July 30, 2009 at 10:57 am
dunno if it will make a difference, but instead of using IN()
i always use a join for the inserted table instead:
UPDATE Vendors
SET Vendors.Modified=getdate()
FROM INSERTED
WHERE Vendors.kpVendorID = INSERTED.kpVendorID
in that situation,...
July 30, 2009 at 10:25 am
saved in my snippets: bulk insert will not accept a variable, so you need to use the EXEC command instead:
--bulk insert won't take a variable name, so make a sql...
July 30, 2009 at 10:12 am
Viewing 15 posts - 10,696 through 10,710 (of 13,461 total)