Viewing 15 posts - 1,591 through 1,605 (of 14,953 total)
polkadot (4/26/2012)
I need to isolate what isn't found in the result set. What comparison operator...
April 26, 2012 at 1:27 pm
To avoid the invalid length error, you'll need to wrap it in a Case statement that checks if the string contains a carriage-return.
case when Addr like '%' + char(10) +...
April 26, 2012 at 10:54 am
jfogel (4/25/2012)
Never been to the Tampa casino though it is just across the bridge. I'm not much of a gambler.
I've been to it once. The company I worked for...
April 26, 2012 at 10:48 am
Something like this, perhaps:
SELECT Addr,
CHARINDEX(CHAR(10), Addr, 1),
LEFT(Addr, CHARINDEX(CHAR(10), Addr, 1) - 1)
FROM ...
April 26, 2012 at 9:10 am
Can your presentation layer cope with a dataset that returns different columns each time it's run? That's usually pretty complex to set up.
The easier way to do this kind...
April 26, 2012 at 9:05 am
I'll go along with everyone else here and just reiterate that there are places where a loop of one sort or another is necessary, and in those cases a cursor...
April 26, 2012 at 7:32 am
SQLKnowItAll (4/25/2012)
April 26, 2012 at 7:15 am
riya_dave (4/25/2012)
i am putting my select statement in temp table.
if i remove this temp and only keep select ,i am not getting this error.
Is there any limitation...
April 26, 2012 at 6:27 am
Check the stored procedure or user-defined function the report is calling. There is probably a "raiserror" statement in it that tests those two parameters.
What you will need to do...
April 25, 2012 at 2:06 pm
Any particular reason to move the clustered index from an identity column to a datetime column? Usually, both of those just indicate insert-sequence, and accomplish the same thing structurally.
Unless...
April 25, 2012 at 1:55 pm
Peter Maloof (4/25/2012)
April 25, 2012 at 1:43 pm
And, of course, having first read it in about 2000, I never bothered to update my definition.
Thanks.
April 25, 2012 at 1:29 pm
GilaMonster (4/25/2012)
GSquared (4/25/2012)
Unrepeatable example: Update Joe's last name from Smith to Smithe between reads. Different data, same rows.Phantom Rows: 5 rows one time, 4 or 6 the next time.
6...
April 25, 2012 at 1:07 pm
Unrepeatable example: Update Joe's last name from Smith to Smithe between reads. Different data, same rows.
Phantom Rows: 5 rows one time, 4 or 6 the next time.
One set of...
April 25, 2012 at 1:00 pm
Check this: http://msdn.microsoft.com/en-us/library/aa213029(v=SQL.80).aspx
See if that helps.
April 25, 2012 at 12:42 pm
Viewing 15 posts - 1,591 through 1,605 (of 14,953 total)