Viewing 15 posts - 466 through 480 (of 2,612 total)
I am going to question your design a bit here - don't take it personally.
The first thing that I see as an issue is object ownership and permissions. If...
November 6, 2008 at 6:01 am
If you have a single connection in ADO and you start one transaction, when you begin a second transaction these will be "nested" transactions just as if you had opened...
November 5, 2008 at 11:45 am
The number of dimensions is less important than the number of attributes and how you have your attribute hierarchies configured, but 20 dimension is getting into the range of "a...
November 5, 2008 at 11:06 am
SSIS is designed to allow dynamic package creation. There are samples on the MSDN website. It involves writing an application (in a .net programming language) that uses the SSIS...
November 5, 2008 at 7:14 am
If you also had a table with a primary key of PageID, the composite key on the table with both would make a lot of sense and be necessary.
November 5, 2008 at 5:15 am
If for the 40 files you have different columns and they are going into tables with different schemas, you will really need 40 data flows. You could use some...
November 5, 2008 at 4:59 am
If you had another table with the PageID as an identity column and had a FK to this other table, the composite key on your table would make sense.
In your...
November 5, 2008 at 4:48 am
If the SQL Agent is running on Server 1, the SSIS package is being run there, not on Server 2. SSIS does not have built-in remote execution capabilities.
Since you...
November 4, 2008 at 11:29 am
Interestingly enough, SSIS is not a cluster-aware resource.
Here are some articles:
http://www.sqljunkies.com/WebLog/knight_reign/archive/2005/07/06/16015.aspx
November 4, 2008 at 11:01 am
MS gives some sample code (search google) for executing an SSIS package programatically. Wrap this in a web service and run the web service on the SSIS server. ...
November 4, 2008 at 10:19 am
To execute an SSIS package, you must be on an SSIS Server. So, unless you have done a full install of the SSIS Server service on your application server,...
November 4, 2008 at 9:45 am
Unfortunately, that is really a misuse of an identity column. The are designed to be used as meaningless primary keys so having gaps is unimportant. There is no...
November 4, 2008 at 5:21 am
A SORT component has the option to only return distinct values. Sort by and include just the one column you want. There is a checkbox for removing the...
November 4, 2008 at 5:14 am
You really need to collect more information about a project before trying to start a design.
Some things to think about are: the number of documents, the format you want to...
November 4, 2008 at 5:08 am
Service Broker is actually the tool that MS has given you to process actions in a queue. This sounds like what you should be using.
It is a bit confusing...
November 3, 2008 at 12:46 pm
Viewing 15 posts - 466 through 480 (of 2,612 total)