Viewing 15 posts - 1,246 through 1,260 (of 1,554 total)
Personally I'd never touch the sp_OAxx procs, they're just too much risk crashing the entire server imo...
Granted, this is a personal opinion only
On...
January 5, 2005 at 2:17 am
This is an 'old' problem - when a Transact SQL statement refers to a non-existing or non-responding remote server, it aborts hard. AFAIK, there's not much you can do about...
January 4, 2005 at 3:58 am
Well, you haven't told us what the error is. It's quite possible that you never get to the printstatement as long as there is an error.
For debug purposes it's easier...
January 4, 2005 at 3:50 am
That is not correct. The timestamp datatype doesn't contain any information pertaining to the dimensions of time as we mere mortals view it. Timestamp is simply a random value without meaning, it's...
January 4, 2005 at 2:29 am
You are aware that by updating 'House' to 'Home' you are in fact also changing the Primary Key for that record? Have you carefully analyzed what the consequences of such...
January 4, 2005 at 2:20 am
No answer to the debug question (I don't use it - always use print statements as Kathy suggested), I just have one comment about the code (since we're in learning...
January 4, 2005 at 2:15 am
Seems to me that the FTP server is closing the connection after n time (ie shutting down the connection as 'idle'). Probably the FTP sees the connection as idling even though...
January 4, 2005 at 2:04 am
I have no experience in dealing with taiwanese (or similar) collations, but when I need to move data from one server to another (eg ANSI to OEM), I just bcp...
January 3, 2005 at 4:37 am
Is this 'central system' a production system? If it is, then don't try to connect test with production in any sort of way! Test and Prod never ever should have...
January 3, 2005 at 4:16 am
Absolutely correct.
However, not as an option, but as a requirement. The third option you mentioned is the only 'proper' one.
/Kenneth
January 3, 2005 at 4:02 am
And, to help you in your decision to avoid dynamic SQL, please read this document, appropriately entitled "The Curse and Blessings of Dynamic SQL"
December 28, 2004 at 7:05 am
It's getting dark if nothing else.. and I'm heading for home now.. 'nuff work for this year now. See you next year
December 28, 2004 at 7:00 am
The 'proper' way of returning stuff from procedures, is to return errorcodes with return, and data with output parameters.
ALTER PROCEDURE [usp_CopyJob] (@idJobSrc AS INT), @idJobNew int OUTPUT
AS
...
December 28, 2004 at 6:57 am
I guess that lies in the untold requirements..?
Since the poster extracted only the seconds 'counter' from the time, then you won't know the minutes. And since 59 + 1...
December 28, 2004 at 6:44 am
Just a note on very long IN lists.. If there are enough items in that IN clause you might encounter a stack overflow error. For very large lists, IN is inefficient...
December 28, 2004 at 5:25 am
Viewing 15 posts - 1,246 through 1,260 (of 1,554 total)