Viewing 15 posts - 31 through 45 (of 81 total)
That won't be a good idea if you have 25 columns in the table and you need 24 of them selected. I will rather drop the column I do not...
November 21, 2003 at 3:52 am
Thanks. Will consider that.
November 20, 2003 at 8:16 am
Thanks. I inherited a script which I decided to put into a stored proc so it can be called from a scheduled job.
At the end of the script, the...
November 20, 2003 at 7:46 am
What are your reservations? i need to know before doing this to a production system.
Thanks
November 20, 2003 at 6:27 am
The problem I am trying to resolve is that when I run:
==============================
alter table customers add column sname varchar(50)
====================================
in the stored procedure, if I later run a select...
November 20, 2003 at 5:56 am
I think the issue here is for me to find a way to run query in batches inside the stored procedure. I can not use the GO batch commmand available...
November 20, 2003 at 4:59 am
Thanks all. The BEGIN...END worked.
The challenge now is to run the stored proc from a job and get the output into a csv file.
November 10, 2003 at 5:16 am
Don't forget to check the report file produced by the upsizing wizard. It will contain a lot of information on what it failed to do, such as queries that failed...
November 8, 2003 at 8:15 am
Hi,
The queries run successfully together in QA but when the stored proc is run, only the first select is executed. The output is sent to a text file.
I will try...
November 7, 2003 at 4:06 pm
The GetCurrentusername will only get you the name used to login into Windows and not to the SQL Server unless both are the same. The ADP stores connection string to...
September 10, 2003 at 2:11 am
Thanks to you all. It is clear that I can not do the update after using the instead of trigger. it is much easier to handle an instead of insert.
An...
September 9, 2003 at 3:48 am
I am logging changes to all columns and the text columns make it necessary for me to use instead of trigger. If a user updates jsut one column out of...
September 6, 2003 at 4:06 pm
I once had a similar problem using MS Access. I solved the problem by reading what the BOL had to say about triggers and identity column. I am sure you...
August 30, 2003 at 12:39 pm
Viewing 15 posts - 31 through 45 (of 81 total)