Viewing 15 posts - 5,086 through 5,100 (of 5,685 total)
SQL33 (11/4/2010)
November 4, 2010 at 12:33 pm
Michael Valentine Jones (11/4/2010)
November 4, 2010 at 12:32 pm
Michael Valentine Jones (11/3/2010)
November 3, 2010 at 10:56 pm
<------------- Okay, I earned one of these...
Michael Valentine Jones (11/3/2010)
When you have @@DATEFIRST =...
November 3, 2010 at 10:44 pm
SQL-Tucker (11/3/2010)
At this point I either need to rethink my approach and handle the conversion on the...
November 3, 2010 at 10:35 pm
SQL-Tucker (11/3/2010)
You Rock! Thank you!FORCE ORDER was exactly what was needed (still need to gauge performance impacts and such but the error is gone)
Hold up. Force Order is letting...
November 3, 2010 at 7:43 pm
The optimizer doesn't promise it's going to do anything in a specific order, just the fastest it can figure out.
The WHERE clause is a good start, but the issue here...
November 3, 2010 at 6:22 pm
Demin, you're aware that's not proc based, right?
To help with the query(s) in question, we'd need to see schema, script, and execution plans. Check out the 'optimization' link in...
November 3, 2010 at 4:33 pm
WayneS (11/3/2010)
Craig Farrell (11/3/2010)
November 3, 2010 at 4:02 pm
WayneS (11/3/2010)
Thus: why drop all tables instead of starting over with a clean database?
I've got two reasons I've done it in the past, mostly scenario specific though.
1) Dev database, and...
November 3, 2010 at 3:58 pm
DECLARE @startDate DATETIME,
@EndDate DATETIME
SET @StartDate = '09/01/2007'
SET @EndDate = '05/20/2009'
SELECT
N AS [Year],
CASE WHEN N = YEAR( @StartDate)
THEN DATEDIFF( mm, @startdate, DATEADD( yy, YEAR( @StartDate) - 1900 + 1, 0))
WHEN...
November 3, 2010 at 3:52 pm
raistlinx (11/3/2010)
Craig Farrell (11/3/2010)Raid... slower? Than what?
For writing? Slower than a single drive.
Sorry, reading back that was a bit rougher sounding than the joke I meant it to...
November 3, 2010 at 3:18 pm
raistlinx (11/3/2010)
November 3, 2010 at 2:50 pm
Some very brief google research:
Run the webservice as admin:
http://database.itags.org/sql-server/274814/
Same starter post, more clarification at the end, needs fully trusted in .NET:
http://www.windows-tech.info/15/35c56638890ee860.php
Some information about custom assemblies which I don't fully understand...
November 3, 2010 at 1:00 pm
Offhand, without integrating it into your code (or testing this pseudocode, for that matter, just trying to give you an idea):
You'd use the CHAR() function which turns a numeric into...
November 3, 2010 at 12:27 pm
Viewing 15 posts - 5,086 through 5,100 (of 5,685 total)