Viewing 15 posts - 436 through 450 (of 902 total)
Chrissy321 (1/2/2013)
I am trying to configure a new server so that I can call dtexec via xp_cmdshell
Here is how I am attempting to call dtexec.
DECLARE @PackageString varchar(600)
DECLARE @ReturnCode...
January 2, 2013 at 10:33 am
Sorry by INT Max value wrong it should read
declare @bigIntCard bigint
declare @Card int
Set @Card = -199870816
Set @bigIntCard = Cast(2147483647 as bigint)+((Cast(2147483648 as bigint))+@Card)+1
print @bigIntCard
You also need the +1,...
January 2, 2013 at 10:21 am
How did you get to this number 2305969845 as I dont get close even by just adding the abs(-199870816) to the top value for an Integer.
January 2, 2013 at 9:46 am
I believe the int gets to a max of 2147483648 before it flips over to negatives, and it then starts off at -2,147,483,648 and counts down towards 0, as 2^32...
January 2, 2013 at 9:34 am
I did thanks, hope you had a good christmas and new year as well.
January 2, 2013 at 4:51 am
anthony.green (1/2/2013)
Jason-299789 (1/2/2013)
In which case you will need to change the
IF @p_Error IS NOT NULL
January 2, 2013 at 4:41 am
so is @p_error an integer?
In which case you will need to change the
IF @p_Error IS NOT NULL
January 2, 2013 at 3:07 am
BarneyL (1/2/2013)
January 2, 2013 at 2:28 am
Hi Bob,
The SCD component in SSIS can have significant performance issues, especially where large data volumes are concerned and there are a lot of changes going on as the Type...
January 2, 2013 at 1:22 am
PS : just had one thought of inspiration
Its using a different driver, but could still be a valid solution.
December 18, 2012 at 7:47 am
I'm going to have to bow out as I have limited knowledge of Teradata.
It sounds very much like an ODBC/Teradata driver error, have you tried the TeraData forums to see...
December 18, 2012 at 7:45 am
Id agree with that Jeff, a permenant calendar table (or similar) would be the best option.
I just thought it strange to put a clustered index on a temporary tally table,...
December 18, 2012 at 7:11 am
I've just tested this and it shuold work with an INT32 datatype.
How is your tast set up? is it set to use Single or Full row count?
The Variable is set...
December 18, 2012 at 6:59 am
Sorry I thought the variable you were using was in the SSIS package not an SQL variable.
I take it the SQL Task you have just does
SELECT COUNT(1) From myTable
After...
December 18, 2012 at 6:25 am
anthony.green (12/18/2012)
December 18, 2012 at 6:17 am
Viewing 15 posts - 436 through 450 (of 902 total)