Viewing 15 posts - 61 through 75 (of 205 total)
Thanks. Will this work if the linked server is NOT a SQL Server database?
May 3, 2016 at 11:24 am
Actually, new data will probably be constantly flowing into Hadoop. The 10-minute latency is just something the business set up as a requirement.
April 27, 2016 at 2:57 pm
Good idea, but we have new data going into Hadoop/Hive every 10 minutes or so. Are you saying we should use SSIS every 10 minutes or so as well?...
April 27, 2016 at 12:04 pm
We tried using Multidimensional against our Hadoop/Hive data. It didn't work. The problem was linked server, which made performance unacceptably slow. That's why we are using Tabular. ...
April 27, 2016 at 10:20 am
I think it depends on where you live. For example, Oracle seems to be much more popular than SQL Server in the San Francisco Bay Area. Then again,...
April 26, 2016 at 5:33 pm
One more thing. What if I want the error message from the child sproc's TRY/CATCH to be visible to the parent sproc?
January 12, 2015 at 12:39 pm
Thanks, I think I understand what you did. Here's my modified version below. Does it make sense?
-- Modified version
CREATE PROCEDURE USP_Wrapper
AS
BEGIN
DECLARE @ReturnValue int
EXEC @ReturnValue = USP_Child01
IF @ReturnValue <>...
January 12, 2015 at 12:28 pm
Sorry, it is a metadata table, not a logging table. It contains information about the structure of the source system. The question is whether a metadata table of...
July 2, 2014 at 2:39 am
Some ETL tools such as Informatica have data lineage built in. To my knowledge, SSIS does not. You'll have to either build on SSIS's auditing features or maybe...
June 26, 2014 at 12:20 pm
Good, but does the Project Deployment Model have something built in that might work as well or better?
June 26, 2014 at 10:34 am
Yes, I have it set to drop the objects before moving them over. That was the original goal of the backup/restore, to have a new copy in staging.
June 24, 2014 at 12:51 pm
Quick Update:
I decided that using a simple backup/restore might not be the best idea for staging. Why? Because:
1) We are backing up from one server on one domain...
June 24, 2014 at 11:21 am
I have two questions.
Scenario 1
Let's say I connect the SSIS package directly to the production database and do the full ETL into the destination star schema database. The process...
June 19, 2014 at 9:55 am
Viewing 15 posts - 61 through 75 (of 205 total)