Viewing 15 posts - 91 through 105 (of 106 total)
thanks for all the help wietzera,i think i will figure out a way to do the same procdure with a try
thanks again for the help
February 3, 2010 at 5:05 pm
i think i have found the answer but i am not entirely sure what is being asked by DAve, all i am tryin to do is add a column...
February 3, 2010 at 5:02 pm
hey i think i got it it works when we reverse the order but the update is not performed so we can use a
Begin and an END ?? would...
February 3, 2010 at 4:54 pm
IF EXISTS(SELECT NULL FROM sys.columns WHERE [name] = 'x' AND OBJECT_NAME([object_id]) = 'b')
UPDATE b
SET X = 'some values'
ELSE
ALTER TABLE x ADD x varchar(2000) NULL
I wanted to do more...
February 3, 2010 at 4:41 pm
When i used
IF EXISTS(SELECT NULL FROM sys.columns WHERE [name] = 'x' AND OBJECT_NAME([object_id]) = 'b')
ALTER TABLE x ADD x varchar(2000)...
February 3, 2010 at 3:45 pm
all i need to do is to strip out any html tags from all the colums in the db entered by croos site scripting. i know that there is a...
January 14, 2010 at 11:45 am
thanks
i am a newbie to this could u please guide me as to how i would do this, for example i want to check the login table and...
January 14, 2010 at 11:33 am
Has anyone using coldfusion has encoountered this situtation before any help would be really appreciated
thanks
November 2, 2009 at 9:03 am
I am using coldfusion
thanks
November 1, 2009 at 1:55 pm
Sorry if i was not descriptive enough but what i want to know is when the password is stored in the login table as of now the DBA can see...
October 30, 2009 at 3:03 pm
Thanks all works perfectly thaks again
September 28, 2009 at 5:04 pm
From the results ?? do you mean that after i run the script i take the reults and run the script again ??
thanks
September 28, 2009 at 1:38 pm
hey so the query shows that it did alter the bit columns to allow nulls but then when i look inside the table itself the bit fields still donot...
September 28, 2009 at 12:40 pm
hey i do have a question, u have where system_type_id = 104, I am thinking that this ID of 104 specifies bit,what specifies NText, As i think if i...
September 28, 2009 at 11:58 am
Thanks that works thank you so much
September 28, 2009 at 11:47 am
Viewing 15 posts - 91 through 105 (of 106 total)