Viewing 13 posts - 1 through 13 (of 13 total)
Those values passed as a string (user types those values comma separated inside the text box) from application and then i suppose to search the database for the records passed.
July 5, 2007 at 8:56 am
Sure, this is what i used:
declare @List VARCHAR(100)
set @List = 'abc,xyz,kty'
set @List = '''' + REPLACE(REPLACE(@List, '''', ''''''), ',', ''',''') + ''''
print @List
July 3, 2007 at 5:15 pm
If you think i don't research then you are mistaken.I don't take anything for granted.
It doesn't work in my case because the values are not coming from the table , they...
July 3, 2007 at 8:19 am
Thank you, but in my case i don't have a string as the original values.
I tried and got Invalid column name error
July 3, 2007 at 1:17 am
or '112/26/2007 11:23:33 AM'
What i need to do is to check for a month and...
May 19, 2007 at 2:25 pm
Another question:
If i want to find if the string has spaces between words how can i do it?
i tried to use charindex but it always returns 0 for this example:
'Cx...
May 16, 2007 at 10:50 am
No, i am not sure.
We have 4 steps in a job like:
step 1: dbcc checkdb (checks 1st db  -- this step always success
if all...
April 3, 2007 at 11:25 pm
Thank you for reply, is this a special software i have to use for a merge?
March 22, 2007 at 8:36 am
Thank you all for reply's, it's interesting that sometimes the simple copy from production to adhoc server also fails. Sysadmin will replace the network card today and...
March 15, 2007 at 11:28 am
Thank you for reply,
Ok, 98GB is the total of the database size including empty spaces for data and log files.
The total size on adhoc server available is 450GB
March 14, 2007 at 3:40 pm
Viewing 13 posts - 1 through 13 (of 13 total)