Viewing 15 posts - 11,251 through 11,265 (of 11,676 total)
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
You are trying to set the wrong property.
With the expression that you created you should set the ExcelFilePath property.
The connection string has the following form:
Provider=Microsoft.Jet.OLEDB.4.0;Data Source="\\myServer\myExcelfile.xls";Extended Properties="EXCEL 8.0;HDR=NO;IMEX=1";
which is a...
July 12, 2010 at 5:26 am
A simple question, but a usefull one nonetheless, especially if you use the function with variables as input parameters.
July 12, 2010 at 5:20 am
Viewing 15 posts - 11,251 through 11,265 (of 11,676 total)