Viewing 15 posts - 61 through 75 (of 615 total)
A SQL re-start is probably the cleanest way to do this but if this isn't possible then shrinking is your next option. I can't think of how else you would...
January 7, 2014 at 4:33 am
Sorted... nothing wrong with SSIS, was just me being stupid! 😛
January 7, 2014 at 3:41 am
Look up precedence constraints and expressions.
January 7, 2014 at 3:29 am
Thanks Michael, I will try your suggestion and let you know.
January 2, 2014 at 9:32 am
First day back at work after a two weeks break... :w00t:
Happy new year all!
January 2, 2014 at 3:11 am
Happy new year! 😀
So one contract can have multiple aged balances?
How about the below:
Select b.dbPatID, a.dbPatFirstName, a.dbPatLastName, b.dbStaffLastName, SUM(a.TotTot) AS TotTot
from EPSAgedBalances AS a
inner join EPSAllContracts AS b
on b.dbPatID =...
January 2, 2014 at 2:18 am
You sure the database is not being backed up?! Normally it shows as None in the Last Database Backup field if the database has never been backed up!
Are there...
December 18, 2013 at 10:33 am
Not sure if I'm over-simplifying your problem but how about the below?!
INSERT INTO #TempTable (GroupName, NumberOfCases)
SELECT 'Total', SUM(NumberOfCases)
FROM #TempTable
December 18, 2013 at 5:41 am
Koen Verbeeck (12/18/2013)ps: you were quick with your edit 😉
LOL... you think that was quick? You should see me chatting up the ladies 😀
December 18, 2013 at 5:30 am
kapil_kk (12/18/2013)
Abu Dina (12/18/2013)
I like to keep things simple so I would link the Data Flow Task to an Execute SQL Task (with On Success precedence constraint)...
December 18, 2013 at 5:10 am
You don't really have to transfer the IDs into a staging table if you don't want. As I said above, you can have an On Success precence constraint from your...
December 18, 2013 at 5:07 am
+1 to Koens's suggestion.
I like to keep things simple so I would link the Data Flow Task to an Execute SQL Task (with On Success precedence constraint) that contains your...
December 18, 2013 at 4:57 am
If your source data comes from a SQL Server table then why not use SQL command as your Data Access mode (in the OLEDB Data Source component) and have a...
December 18, 2013 at 4:43 am
December 17, 2013 at 9:03 am
Ooohh, Splashtop on an iphone?! Don't know but I got pretty fat fingers... I'd end up shutting down the server instead of logging off! 😀
December 17, 2013 at 8:51 am
Viewing 15 posts - 61 through 75 (of 615 total)