Viewing 15 posts - 196 through 210 (of 374 total)
I do not think the sysmessages table structure changed since at least version 7
Plus I am not linking to sysmessages but using FORMATMESSAGE function so I do not care much...
February 19, 2009 at 12:43 pm
I do not know if everyone here is going to agree with me but I got two comments
1. Try to avoid 1:1 relationships - make it into one table =...
February 19, 2009 at 12:14 pm
I have to admint I did not spent too much time reading all the posts carefully but I think I did not find anyone suggesting the usage of the sysmessages...
February 19, 2009 at 11:56 am
There is one problem with your script: it will not find all instances of the text in SPs, Views or functions that are larger then 4000 characters and the searchabe...
February 19, 2009 at 7:49 am
One time I was faced with an old database system and had to figure out which SPs are not being used.
There is no easy and nice way of getting...
February 18, 2009 at 8:47 am
Try this:
SELECT *
FROM User_Detail
WHERE ',' + @Temp + ',' LIKE '%,' + NAME + ',%'
February 18, 2009 at 8:24 am
OK. I am assuming the data type is VARCHAR because if it was numeric a simple SUM and a subquery would work.
What you may want to do is this:
create a...
May 22, 2008 at 10:20 am
What is the data type in TABLE3.FIELD2A and TABLE1.FIELD1 ?
May 22, 2008 at 9:58 am
The order was supposed to be maintained by the IDENTITY field. Unfortunatelly the DB was not fast enough so we had to log into a file.
May 22, 2008 at 7:24 am
Please remember that this encryption is quite simplistic and is not bullet proof. There are tools to crack this encryption.
I wish Microsoft built the encryption a much better way.
May 22, 2008 at 7:14 am
Viewing 15 posts - 196 through 210 (of 374 total)