Viewing 15 posts - 1 through 15 (of 19 total)
Here's another solution which does not involve CASE statement:WITH
IDs AS(
SELECT DISTINCT
ID
FROM
ValueTracking),
Src AS(
SELECT
ID,
CAST(REPLACE(Month, '_', '') + '01' AS date)...
August 29, 2017 at 12:23 pm
Thanks a lot! I have a script, but I thought it's possible to do it with Send Mail task only.
February 9, 2009 at 6:39 pm
Or you can create a custom format using yy or yyyy for year; M, MM, MMM, or MMMM for month; and d or dd for day. Note, that M's should be capital. For example,...
October 26, 2006 at 9:39 am
You have to make the 4 diffrent datasets. This is the only way. I'm even not sure that Custom Data Extensions will help you
September 15, 2006 at 9:43 am
Set Format property to HH:mm. make sure that the datatype of this value is datetime. Hope it helps.
September 1, 2006 at 9:32 am
Any arithmetic operation with NULL returns NULL.
SELECT fld1/fld2 will cause an error if fld2 = 0
SELECT fld1/NULLIF(fld2, 0) return NULL if fld2 = 0
August 24, 2006 at 9:17 am
You also can use NULLIF(fld, 0) in divider
August 23, 2006 at 9:52 am
Luiz,
RowNumber function doesn't work with matrices because it returns row number in dataset, not in matrix.
Here's what I did to alternate colors in matrix rows.
Public...
August 23, 2006 at 9:40 am
Jules,
Cube is not updated automatically when underlying data changes. You do need to reporcess the cube to reflect changes
August 22, 2006 at 1:53 pm
SELECT * FROM Region WHERE RegionDescription LIKE COALESCE('%East%', RTRIM(RegionDescription))
fixes the problem
August 17, 2006 at 1:30 pm
Unfortunately, there's nothing like a checkbox or property that says: "Do not send if result set is empty". But you can create this subscribtion for your business users. You can set...
August 17, 2006 at 11:26 am
I had the same problem and didn't find standard solution. Every time thre was different solution and it took a lot of time to find it. Here's my approach to find...
August 17, 2006 at 10:46 am
Viewing 15 posts - 1 through 15 (of 19 total)