Viewing 15 posts - 346 through 360 (of 14,953 total)
What you're doing makes sense. It's a good way to handle this kind of thing. I'm just not sure I can offer any help on debugging your loop...
December 17, 2012 at 9:33 am
Try a UNC path instead of a mapped drive letter.
December 17, 2012 at 9:17 am
Lots of possibilities here. Could be the scripts don't do anything because they aren't applicable (like Where clauses that cause no rows to be affected). Could be they...
December 17, 2012 at 9:15 am
It should keep the compatibility level you started with. The upgrades are in the database actual structure, etc. That's usual when restoring from a lower version of SQL...
December 17, 2012 at 9:12 am
It sounds to me like you have a business definition for a workflow, and you need to turn it into a technical specification, then work out an implementation path.
Judging by...
December 17, 2012 at 9:09 am
ScottPletcher (12/17/2012)
TheSQLGuru (12/16/2012)
December 17, 2012 at 9:06 am
Something that many don't know about SARGability is that some functions, regardless of side of equation in a Where clause, are SARGable.
Try this:
SET NOCOUNT ON;
USE ProofOfConcept;
GO
CREATE TABLE dbo.SARGTest (
DT DATETIME...
December 17, 2012 at 8:07 am
bleroy (12/14/2012)
Personally, I'd roll back the QA/staging environment to SQL 2005 till prod is ready to be upgraded, and avoid this whole mess.
It is still beyond me...
December 17, 2012 at 6:39 am
CELKO (12/14/2012)
.. Total failure.. Besides which, I believe my earlier post was the same idea, except coded correctly 🙂 .
Yeah, it was awful! :crazy:
What I wanted to do was...
December 17, 2012 at 6:32 am
CELKO (12/13/2012)
My table structure
Please read just one little book on SQL and RDBMS. Please, just one little book! This is not a table; it has no key; it...
December 14, 2012 at 8:16 am
ScottPletcher (12/13/2012)
It doesn't save you that much anyway. Not worth...
December 13, 2012 at 2:13 pm
I'm not really familiar with your table. That makes it kind of hard to know what to suggest.
December 13, 2012 at 2:10 pm
The Dixie Flatline (12/13/2012)
Budget cuts are the reason the first Death Star didn't have a grate or something covering the exhaust port.
Really? I always just assumed a Jawa stole...
December 13, 2012 at 1:40 pm
delete from MyTable
where Col1 is null and Col2 is null and Col3 is null
or Col1 is null and Col2 is null and Col4 is null
or Col1 is null and Col3...
December 13, 2012 at 1:38 pm
Viewing 15 posts - 346 through 360 (of 14,953 total)