Viewing 15 posts - 6,781 through 6,795 (of 11,678 total)
Try it like this:
DECLARE @Param0 datetime;
DECLARE @Param1 datetime;
SET @Param0 = ?;
SET @Param1 = ?;
SELECT DISTINCT * FROM
(SELECT DISTINCT * FROM [Forward_Mar&Apr2012]
WHERE [Valuation Process Date DD]=DATEADD(DD,-1,@Param0))A
JOIN
(SELECT DISTINCT * FROM [Forward_Mar&Apr2012]
WHERE [Valuation...
July 2, 2012 at 1:43 am
The table is called dbo.sysssislog.
If it's not created in the database, take a look at the system tables, it may have ended up there.
July 2, 2012 at 1:40 am
Rock from VbCity (7/1/2012)
July 2, 2012 at 1:38 am
I suggest hiring a consultant.
Or at least following some courses about database design and read some books about the subject.
July 2, 2012 at 1:28 am
What is the expression that you used?
July 2, 2012 at 1:03 am
What's wrong with this solution?
SSIS before SQL Server 2012 isn't really flexible with flat files, so every line must have the same number of columns.
You could always do it with...
June 29, 2012 at 12:44 am
The dataflow will only finish if every component in the dataflow has finished. In other words, when every parallel path has finished. So you're good, just connect the Execute SQL...
June 29, 2012 at 12:42 am
You'll need to use a derived column to convert the strings to an actual datetime value.
You can check first if there string value is blank and if it is, replace...
June 29, 2012 at 12:40 am
Ron's series on transactions led me to believe it should be 2. 🙂
Got it wrong, but definately learned something. Good question!
(3 wrong in a row, this is not a good...
June 29, 2012 at 12:30 am
There's no such thing as too many records. As long as you don't have blocking components (sort component, aggregate component for example) you can read as many rows as you...
June 28, 2012 at 11:11 pm
What have you tried so far?
June 28, 2012 at 4:44 am
I don't understand the issue. If you import it as fixed width, what's not working?
June 28, 2012 at 3:45 am
Nice alternative solution. However, if processing fails midway, you have to start all over again.
June 28, 2012 at 1:11 am
opc.three (6/27/2012)
June 28, 2012 at 12:47 am
Viewing 15 posts - 6,781 through 6,795 (of 11,678 total)