Viewing 15 posts - 196 through 210 (of 14,952 total)
SQL 2012 doesn't have any limits on that, but your hardware certainly will. CPUs, RAM, I/O busses, etc., can only push so many bytes per second.
Most likely, I/O will...
January 8, 2013 at 9:22 am
Why not just have those three columns be unique? A unique constraint can contain multiple columns.
January 8, 2013 at 9:19 am
I don't get this part:
COALESCE('target.[Programability_TYP] <> source.[Programability_TYP] collate SQL_Latin1_General_CP1_CI_AS', '')
Why use a coalesce check on a string literal? There's no possible way for 'target.[Programability_TYP] <> source.[Programability_TYP] collate SQL_Latin1_General_CP1_CI_AS' to...
January 8, 2013 at 9:17 am
Definitely could be an issue with in-flight data conversions of one sort or another.
You'll probably need to get a more experienced .NET dev to review your code.
January 8, 2013 at 9:08 am
ScottPletcher (1/8/2013)
GSquared (1/7/2013)
paul.j.kemna (1/7/2013)
But in this case, we are assuming that...
January 8, 2013 at 9:06 am
That's always from either an out-of-range date or a malformed date.
Usually see it where American-style dates (MM-DD-YYYY) are being inserted into something expecting Euro-style dates (DD-MM-YYYY), or vice-versa....
January 8, 2013 at 8:56 am
GilaMonster (1/8/2013)
GSquared (1/8/2013)
January 8, 2013 at 8:52 am
I've seen Count() kill a server where Exists() was fine.
A code-push was done on a Tuesday night. Everything went fine. Monday morning, however, the websites wouldn't come up,...
January 8, 2013 at 8:24 am
I guess I'm not clear on what end result you are trying to achieve here. Can you clarify that?
January 8, 2013 at 7:30 am
ScottPletcher (1/7/2013)
GSquared (1/7/2013)
ScottPletcher (1/7/2013)
GSquared (1/7/2013)
As mentioned, using <= @EndDate can give odd results.
For example:
DECLARE @T...
January 8, 2013 at 6:59 am
Oracle_91 (1/7/2013)
Hi Thank you.I am looking for T-sql script which will use up memory so that i can monitor which process is eating up most of memory.
Whichever part your script...
January 8, 2013 at 6:56 am
CELKO (1/7/2013)
January 7, 2013 at 1:53 pm
Not really. You might be able to work around it using script objects, but you're probably better off building a .NET service that reads the file directly.
January 7, 2013 at 1:50 pm
ScottPletcher (1/7/2013)
GSquared (1/7/2013)
As mentioned, using <= @EndDate can give odd results.
For example:
DECLARE @T TABLE
...
January 7, 2013 at 1:49 pm
paul.j.kemna (1/7/2013)
But in this case, we are assuming that I DO...
January 7, 2013 at 1:42 pm
Viewing 15 posts - 196 through 210 (of 14,952 total)