0
votes
0answers
13 views
Master-detail migrate in SSIS 2008
Hello all!
I have two MSSQL 2008 databases dbA and dbB,
dbA contains master-detail tables pair: AMaster, ADetail. Corresponding it dbB also contains BMaster and BDetail. The only one difference …
3
votes
10answers
283 views
Are there any programming languages where variables are really functions?
For example, I would write:
x = 2
y = x + 4
print(y)
x = 5
print(y)
And it would output:
6 (=2+4)
9 (=5+4)
Also, are there any cases where this could actually be useful?
Clarification: Yes, …
0
votes
4answers
156 views
Measuring Progress of SSIS Data Flow
I am running a SSIS package to load say a million rows from a flat file, which uses a script task for complex transformations and a SQL Server table destination. I am trying to figure out the best way …
0
votes
1answer
396 views
SSIS Dataflow script task error handling
Hi
I have a script task that is performing transformations in the middle of a SSIS dataflow. If the script fails (say it tries to convert alpha to numeric) I need it to stop with a 'failed' status …
0
votes
1answer
240 views
Context diagram in DFD
Should context level diagram includes Database or not?
Is DB acts as external entity?
0
votes
1answer
573 views
UML dataflow diagram strategies for an example structure
What would be the best strategies to describe the following:
1) class A created instances of classes B and C
2) class B being able to communicate to class D through a pointer in class B to a specific …
1
vote
2answers
2k views
SSIS - AcquireConnection method call to the connection manager <Excel Connection Manager> failed with error code 0xC0202009
I have an SSIS package which reads an Excel File (Data Flow Source) and transfer the data to SQL Server using OLEDB Destination Data Flow Item. The OLEDB Connection Manager used for the destination is …
0
votes
2answers
1k views
Dataflow between Android BroadcastReceiver, ContentProvider, and Activity?
I've developed an application that receives a Broadcast and then
launches an Activity, where that Activity queries a ContentProvider
which pulls information out of the DNS in real-time.
I'd like to …
2
votes
4answers
413 views
Dataflow Programming Languages
What is a dataflow programming language? Why use it? and are there any benefits to it?
1
vote
2answers
145 views
How would you display/layout Data-Flow between Enterprise Applications?
My employer is a large Swiss Telco. We have many Systems used to transfer data for different tasks, e.g. Performance Management, Fault Management, Configuration Management etc.
In order explain to …
2
votes
3answers
298 views
Dataflow Programming API for Java?
I am looking for a Dataflow / Concurrent Programming API for Java.
I know there's DataRush, but it's not free. What I'm interested in specifically is multicore data processing, and not distributed, …
0
votes
2answers
224 views
Generate dataflow diagrams from source?
is there any tool available which can generate Dataflow diagrams and entity relationship diagrams directly from the source code?
0
votes
1answer
948 views
Why is > conditional split in SSIS package returning >= result? update: (DateTime != DT_DBTIMESTAMP ?!)
I have an SSIS data flow conditional split transformation that is returning a >= result when it should be returning a > result.
From the beginning... My SSIS package executes a SQL task that stores a …
1
vote
2answers
306 views
Reference manual for Apache Pig Latin
Pig is a dataflow programming environment for processing very large files. Pig's language is called Pig Latin.
Does anyone know of a good reference manual for PigLatin? I'm looking for something that …
2
votes
1answer
405 views
Dataflow Programming - Patterns and Frameworks
I just came across the proposed Boost::Dataflow library.
It seems like an interesting approach and I was wondering if there are other such alternative frameworks for C++, and if there are any related …
