Viewing 15 posts - 11,251 through 11,265 (of 11,678 total)
Phil Parkin (7/15/2010)
You left out the square brackets around the field name ...
No, that is only necessary when the field name contains a space.
I think he forgot the initial (....
July 15, 2010 at 6:45 am
only4mithunc (7/15/2010)
Also as I have mentioned before any idea like how in flat file destination we are able to do this..?
I'm already surprised that it works for flat files.
Say you...
July 15, 2010 at 6:12 am
itsaditi2001 (7/15/2010)
I tried this ...its not working for me..
TRIM([STARTD_CVV] ) == FINDSTRING( STARTD_CVV, "-", 1 ) ? (DT_STR, 8, 1252)NULL(DT_STR,8, 1252) :[STARTD_CVV]
Try the following:
(FINDSTRING(TRIM([STARTD_CVV]), "-",1) > 0) ? NULL(DT_STR, 8,1252)...
July 15, 2010 at 5:52 am
itsaditi2001 (7/15/2010)
July 15, 2010 at 5:00 am
Jeff Moden (7/13/2010)
Have you got a link for all of the requirements, Steve? Thanks.
:blink:
I think I have an URL where you can download experience. If I can find it,...
July 14, 2010 at 3:27 am
anilpinnamaneni (7/14/2010)
Neither the order by or sort transformation will help in inserting the data sequentially in to the table
That is because that is not the purpose of those methods.
The ORDER...
July 14, 2010 at 1:28 am
I don't think it is a good idea to build your connection string with getdate().
Since getdate() gives you the current timestamp, it will always change when you run the package...
July 13, 2010 at 7:48 am
Do you get any errors/warnings?
Are all the permissions set up correctly?
July 13, 2010 at 5:10 am
Are you sure it is not a permission issue?
Also, in production. is there only a warning or also an error? How does it fail?
July 13, 2010 at 5:08 am
I believe you are in the wrong forum. This is a forum about Microsoft's Business Intelligence suite on SQL Server.
You should try a dedicated Cognos forum.
(and I don't believe you...
July 13, 2010 at 5:02 am
OK, then why don't you store the child package names in a table, read the table and loop over a Execute Package Task with a for each loop (using expressions...
July 13, 2010 at 4:59 am
I got it wrong because I overlooked the semicolon.
I was focusing more on the use of subqueries with count in a query, which I thought was the point of this...
July 13, 2010 at 3:26 am
stewartc-708166 (7/13/2010)
the excel connection manager requires that the destination excel files exists beforehand;refer:
Indeed. That's why you need to point it to a test file (with the same structure) during design...
July 13, 2010 at 3:06 am
I have succeeded many times. Use the ExcelFilePath property as mentioned earlier, with the expression you build in the beginning.
When you start designing, configure your excel connection manager by pointing...
July 13, 2010 at 12:11 am
stewartc-708166 (7/12/2010)
Instead of inserting this at the ConnectionString property, try setting the ExcelFilePath property
re·dun·dan·cy (r-dndn-s)
n. pl. re·dun·dan·cies
1. The state of being redundant.
2. Something redundant or excessive; a superfluity.
3. Repetition...
July 12, 2010 at 5:57 am
Viewing 15 posts - 11,251 through 11,265 (of 11,678 total)