Viewing 15 posts - 4,306 through 4,320 (of 13,877 total)
I think it's appearing at the run time. When I execute the package all the validation...
July 3, 2018 at 11:23 am
I am waiting on access to TFS, so yeah, it would be great...
July 3, 2018 at 9:10 am
I made a copy of an SSIS package XML. I saved it to...
July 3, 2018 at 9:02 am
July 3, 2018 at 8:39 am
July 3, 2018 at 7:55 am
July 3, 2018 at 7:35 am
Hi,
Hope you can help!
I have a .dtsx package that drops a flat file off in...
July 3, 2018 at 7:30 am
July 3, 2018 at 7:23 am
UPDATE Number_Codes
SET
CODE1 = ISNULL(CODE1, 999)
, CODE2 = IIF(CODE1 IS NOT NULL AND CODE2 IS NULL, 999, CODE2)
, CODE3 = IIF((CODE1 + CODE2) IS NOT NULL...
July 2, 2018 at 5:35 am
First of all, I appreciate your input. It feels like Data...
July 2, 2018 at 5:17 am
June 29, 2018 at 12:38 pm
Here's another way:
DROP TABLE IF EXISTS #Products;
CREATE TABLE #Products
(
Product VARCHAR(50) PRIMARY KEY CLUSTERED
, Type1 VARCHAR(50)
, Type2 VARCHAR(50)
, Type3 VARCHAR(50)
, Type4 VARCHAR(50)
);
INSERT #Products
June 29, 2018 at 12:36 pm
This gives the same accuracy as your first 'exact' example:
SELECT CAST(1000000000000.123456 AS DECIMAL(29,12)) * CAST(10000.123456 AS DECIMAL(29,12))
This code helped me determine the CASTs to...
June 29, 2018 at 9:30 am
Viewing 15 posts - 4,306 through 4,320 (of 13,877 total)