Viewing 15 posts - 5,776 through 5,790 (of 14,953 total)
Pretty simple to do with SQL XQuery. Are you familiar with that?
December 8, 2010 at 9:22 am
Is it possible there's a null value being passed to the @recipients parameter? Check the cursor's query, see if any rows will be null on that column.
December 8, 2010 at 9:17 am
It just means there's an application that uses cursors, and probably uses some internal numbering scheme for the handles on them.
It's probably not that big a deal.
December 8, 2010 at 6:59 am
You're going to need to recursively cross-join the table with itself, essentially.
This question is almost always school work. Is it this time, too?
December 8, 2010 at 6:55 am
SELECT
COALESCE(PlateNos.counter, PlateStates.counter) AS ID, -- Pulls the "counter" value from the derived tables to create an ID number for the row
PlateNo,
...
December 8, 2010 at 6:39 am
Jeffrey Williams-493691 (12/7/2010)
GSquared (12/7/2010)
December 8, 2010 at 6:29 am
SQL33 (12/7/2010)
Is there a means to analyze the output from say a syslog output and determine the optimum data type and size the target SQL table fields should be?
I use:
select...
December 8, 2010 at 6:27 am
Is it possible the state column is changing? Do you have any databases where AutoClose is turned on, or anything like that?
December 8, 2010 at 6:21 am
Tom.Thomson (12/7/2010)
Roy Ernest (12/7/2010)
jcrawf02 (12/7/2010)
Where do space aliens outsource to?India... 🙂
Nonsense. They outsource to Hollywood.
That wouldn't be "out"-sourcing, now would it?
December 8, 2010 at 6:15 am
Craig Farrell (12/7/2010)
GilaMonster (12/7/2010)
Two that produced the 'wtf' reaction tonight...http://www.sqlservercentral.com/Forums/Topic1031451-391-1.aspx
Seriously?
http://www.sqlservercentral.com/Forums/FindPost1031507.aspx
Petty games with words and an attempt to be right?
Nono, it was an attempt to be accurate. C'mon, get...
December 7, 2010 at 3:12 pm
First, switch from ntext to nvarchar(max), if you even need that.
If it's US license plate and VIN data, I guarantee you can fit that into something much more efficient, like...
December 7, 2010 at 2:08 pm
First, I'm assuming that the text bit in there is a column name.
Assuming that's correct, it would be helpful to see the actual query, and to know what data type...
December 7, 2010 at 1:47 pm
Mike McIver (12/7/2010)
December 7, 2010 at 10:01 am
Viewing 15 posts - 5,776 through 5,790 (of 14,953 total)