Viewing 15 posts - 1 through 15 (of 342 total)
Thanks for the links. Sorry about the lack of detail. I am on the phone end of this error and have no access yet to get more information.
August 25, 2004 at 9:00 am
When I try to execute SQL code of not (value) or not @variable, I get syntax errors. All our routines check for @bbit = 0 for false and @bbit = 1...
February 19, 2004 at 9:21 am
If you have some kind of index value in the row, you can remove them directly. For example, if there is an ID or an entry date associated with the...
February 19, 2004 at 9:04 am
The BIT datatype is described as an "Integer data type" - see BOL. I do not believe the syntax "not @bbit" will be accepted in the SQL code.
Guarddata-
February 19, 2004 at 9:00 am
I would try to get the contents of the temporary tables being used. My guess would be that they do not hold the same information in both databases at this...
February 10, 2004 at 8:34 am
Jack - I agree with you completely. I actually changed my routines to just have a view with rights so I don't open up everything. Thanks for making the point...
February 6, 2004 at 11:23 am
If there is more to the value so you cannot depend on it being INT, BIGINT, etc. You could do something like
select REPLACE( LTRIM( RTRIM( REPLACE( ErrMessage, '0', ' '...
February 4, 2004 at 10:07 am
Hehe - Pretty hard to find people that know more than the responses I have seen here. Give it a try right here.
Guarddata-
January 30, 2004 at 4:32 pm
Yeah - you don't want to use IDENT_CURRENT because of multi-user problems. I would follow the suggestions and use the @@IDENTITY or SCOPE_IDENTITY() in the first stored procedure and pass the...
January 28, 2004 at 8:27 am
You could just create a view that does the replace commands and run your DTS job using the view.
Guarddata-
January 28, 2004 at 8:22 am
I'm with Frank. There must be some need where this column is now going to store more than just date information. If the concern is formatting, that should probably be...
January 28, 2004 at 8:18 am
Kevin, Some questions to help me understand the environment more...
1) When you say dynamic SQL, do you mean there are different tables involved, different columns, or just different selection criteria?
2)...
January 19, 2004 at 8:32 am
We generally do DROP and CREATE... However, we have found it useful on some occasions to have "empty" procedures to avoid the warnings of "procedure not found". When this happens,...
January 19, 2004 at 8:20 am
I don't remember the source immediately...so take this with a grain of salt.
The performance of string comparisons has been greatly enhanced to the point...
January 16, 2004 at 8:21 am
Viewing 15 posts - 1 through 15 (of 342 total)