Viewing 15 posts - 1 through 15 (of 50 total)
Thanks but I don`t think you understood.
Logging is enabled, otherwise I would not get any rows in the log table (as I said, the error is there, but the description...
December 1, 2006 at 2:26 am
I think this is SQL Server 2005 only, to Quote from SQL Server 2000 BOL:
varchar[(n)]
Variable-length non-Unicode character data with length of n bytes. n must be a value from 1...
February 7, 2006 at 4:58 am
Oh yeah, I forgot about that ... D`OH
February 3, 2006 at 8:45 am
If all the mappings are the same (IE if H:, or whatever, always evaluates to the same full path on all the PCs) then neither server agent nor DTSs should have...
February 3, 2006 at 7:48 am
This has annoyed me too, on some systems it remembers these settings and on others it seems to lose them. I think it has to do with the MMC (microsoft...
February 3, 2006 at 7:29 am
Not sure if it is the same in 2005 but in SQL Server 2000 you use the server network utility (which you can get to from the start menu items...
February 3, 2006 at 7:02 am
Ooooh this sounds familiar, bells going off all over the place, I`m sure Ive had this same error
Its the bit 'When i try...
February 3, 2006 at 6:23 am
A Timestamp column is 8 Bytes, so you should be able to copy it into a BINARY(8) column, remember that it will no longer be guaranteed unique though.
I have not...
February 3, 2006 at 4:47 am
We appear to be going around in circles
Look, in any installation you have to have some point at which you set up the...
February 1, 2006 at 1:14 am
If the INI file is always in the same location relative to the application calling it then ajays suggestion makes sense.
If you do store the path in a table...
January 31, 2006 at 7:48 am
Quick and dirty fix:
DECLARE @Word varchar(5)
DECLARE @MyValue as bit
SET @Word = 'True'
select @MyValue = CASE @Word WHEN 'true' THEN 1 ELSE 0 END
January 31, 2006 at 7:21 am
Is IP.SB_INVOICE_PRINT_INV_NO varchar? Could it have trailing or leading white space that make it non-distinct despite looking the same?
January 31, 2006 at 7:06 am
If you are talking about DTSs in particular did you know you can pass in parameters to a DTS when called from a command line? Look up the dtsRun utility...
January 31, 2006 at 6:07 am
Did you have a comment in the SQL? I have noticed that parameters don`t work where there are comments in the SQL
January 31, 2006 at 4:45 am
OK, that makes sense, I work in the financial sector and company names are always changing
Even without splitting the table I would still keep a...
January 30, 2006 at 9:49 am
Viewing 15 posts - 1 through 15 (of 50 total)