Viewing 15 posts - 691 through 705 (of 3,221 total)
You might want to read:
http://msdn.microsoft.com/en-us/library/ms190686(v=sql.100).aspx
Which states:
When a stored procedure is created, the statements in the procedure are parsed for syntactical accuracy. If a syntactical error is encountered in the procedure...
February 8, 2012 at 9:37 am
sathishkumar.k (2/8/2012)
February 8, 2012 at 9:25 am
Lynn Pettis (2/7/2012)
Kassondra gave birth to a healthy baby boy yesterday in Germany. Grayson Matthew was born at...
February 7, 2012 at 8:54 pm
Good question - jogged my memory and by gosh I had not forgotten it.
February 7, 2012 at 8:48 pm
Unless it is extremely important to you now I suggest you leave things as they are. Why do I say that - well read the following:
http://msdn.microsoft.com/en-us/library/ms187403.aspx
Which in part states
In...
February 7, 2012 at 11:30 am
SGT_squeeqal
If you do use a cursor, you might want to compare its performance with a
CTE such as this sample. I believe if you do and have a reasonable
number of...
February 7, 2012 at 6:46 am
I suggest you read the following before upgrading.
http://msdn.microsoft.com/en-us/library/ms144267(v=sql.90).aspx
And understand the effect of the upgraded database by reading about the compatability mode at:
February 7, 2012 at 5:33 am
SGT_squeeqal (2/6/2012)
declare @col1 datatype,
@col2...
February 7, 2012 at 5:13 am
I suggest you start reading here:
February 6, 2012 at 12:35 pm
preetpalkapoor (2/6/2012)
i got 3 methods to do that.
1. To make temp table with i will check with my real time DB and is the easiest...
February 6, 2012 at 12:26 pm
Including them inside the SQL statement
-- + 1
February 6, 2012 at 10:39 am
GilaMonster (2/6/2012)
Is it bad form, if you create a QotD, to list your own article as a reference?
Might not be bad form, but I can just image the list of...
February 6, 2012 at 8:52 am
pwalter83 (2/6/2012)
bitbucket-25253 (2/6/2012)
Once you have eliminated the commas then use
DECLARE @Res VARCHAR(10)
SET @Res = 'KNL RTM'
SELECT REPLACE(@Res,' ','')
Result:
KNLRTM
Thanks Ron,
But the thing is I dont wish to join the values, instead...
February 6, 2012 at 8:38 am
You might want to read this and then decide which method is best for you situation
February 6, 2012 at 7:30 am
Once you have eliminated the commas then use
DECLARE @Res VARCHAR(10)
SET @Res = 'KNL RTM'
SELECT REPLACE(@Res,' ','')
Result:
KNLRTM
February 6, 2012 at 7:11 am
Viewing 15 posts - 691 through 705 (of 3,221 total)