Viewing 15 posts - 106 through 120 (of 623 total)
Thanks all. I will be entering a development and testing phase and I will post back if I have any questions or something to add to the conversation.
November 4, 2014 at 9:14 am
Thanks for you response.
>>Are you allowed to enter a status for a date in the past, before an existing status?
No, but a date range could be split in which...
October 24, 2014 at 2:31 pm
If you record sets are fairly small, your networking robust and your security context allows it, linked severs can be a reasonable solution. Performance and troubleshooting can be difficult.
August 8, 2014 at 9:41 am
I hear transactional replication is complicated and difficult to support.
http://www.brentozar.com/archive/2013/09/transactional-replication-change-tracking-data-capture/
How often do you need to refresh the destination server?
August 8, 2014 at 9:09 am
Ah yes I shouldn't speed read through posts....
Sounds like a job for SSIS or possibly a linked server.
August 8, 2014 at 8:37 am
Is your source and destination database on the same server or different servers?
August 8, 2014 at 8:21 am
Have a look at Jeff's article:
August 7, 2014 at 10:18 am
Think about how you may want to report on or search your data when you consider your categorization, things can go from simple to complicated real fast.
Simple-One category per ingredient....
July 30, 2014 at 8:57 am
Given what I imagine is limited data in your ingredients table I would not break the table up for performance reasons. When I say limited I am assuming you have...
July 29, 2014 at 2:36 pm
Read this http://www.sqlservercentral.com/articles/SQLServerCentral/66909/
Your memory theory sounds plausible but I would look at query optimization first before you throw money at the problem.
July 22, 2014 at 3:35 pm
Thanks Matt. I'm studying your solution.
Sorry about the incorrect desired results as Douglas H pointed out.
April 24, 2014 at 8:22 am
Your Foreach Loop container will loop once for every record in your table. Each time it should reset your variables including variable StoredProcedureName and execute the Data Flow Task. If...
December 27, 2013 at 8:11 am
Can you add a new variable ExecutionString and concatenate StoredProcedureName, StartDate, EndDate together to give you a string like: EXEC usp_SPName1 '12/20/2013', '12/26/2013'
Then set the SQLCommandVariable to the new variable...
December 26, 2013 at 4:25 pm
Try setting the AccessMode property of the OLE DB source to 'SQL Command from Variable'. Then try setting the SQLCommandVariable to the name of your variable.
December 26, 2013 at 1:29 pm
Do all your source stored procedures return identical recordsets? Or another way of asking this, do all you flat file outputs have the same format?
December 26, 2013 at 1:10 pm
Viewing 15 posts - 106 through 120 (of 623 total)