Viewing 15 posts - 31 through 45 (of 57 total)
If the table is re-loaded every day, you could consider using view swapping/schema switching/table partitioning/rename table. I.e. you load a table the user can’t see, once the load is done,...
February 18, 2014 at 12:01 pm
Here is a blog post that describing your switching scenario: http://kevinmintmier.wordpress.com/tag/xmla/
If you use a scheduling agent, you would be able to execute the alter command after the processing command.
November 27, 2013 at 12:06 pm
SSIS needs to be installed on the machine where the packages are run, it is an option for the general SQL Server install.
How to run a package: http://technet.microsoft.com/en-us/library/ms138023(v=sql.105).aspx
If the packages...
November 3, 2013 at 2:15 pm
Question 1.
Yes, research package configuration.
Article: http://www.sqlservercentral.com/articles/Integration+Services+(SSIS)/66500/
BOL: http://technet.microsoft.com/en-us/library/ms141682(v=sql.105).aspx
Question 2
The deployment process does not alter packages, it moves them to a location where SQL Server agent can access and...
November 1, 2013 at 11:47 am
You missed bridge table 😉
How often does an advisors qualifications change?
When an Advisor qualifies for a new code, is that an event?
October 8, 2013 at 10:27 am
You can have a 1 to 1 relationship between a dimension and a fact table, you often see this in a degenerate dimension.
You write “Actually issues will be associated with...
October 8, 2013 at 9:58 am
Try to pass the file names in one variable with a space between the file names. Watch out for string size overflow.
Here are three alternative solutions:
1)Use wildcards to download...
October 7, 2013 at 9:53 am
Have a look at this: http://www.sqlservercentral.com/articles/Job/101563/
Scroll halfway down the article too see the sample report
October 1, 2013 at 8:03 am
Dts.Variables(0).Value is the value of the first variable in the collection of variables defined in the Control Flow.
I don’t know what book you are referring to, however to...
September 30, 2013 at 6:56 am
Did you map the result to a variable in the Result Set pane for the Execute task?
September 29, 2013 at 6:45 am
You mentioned that "I set in the expression @Connectstring to the variable I'm filling up with the connectionstring"
Why don't you just set the variable value to your development connection string?
You...
September 27, 2013 at 9:08 am
Yes, it is possible. The concept of dynamically setting the connection string is best practice.
The link you provided seems to show all the necessary steps for this to work.
Just a...
September 26, 2013 at 11:43 am
The Kimball books are a pleasure to read compared to other technical books, they are however very generic. Which goes for all data warehouse books I have read.
If you...
September 25, 2013 at 8:14 am
Instead of setting the connection server to the package configuration value, set it to a variable under Properties/Expression/Server name for the connection.
Use the package configuration to set the variable value.
Set...
September 24, 2013 at 12:29 pm
In your fifth paragraph you mention: "inspected each one", this implies a business process. Then later "number parts inspected, replaced or broken", this implies that there is a Repair or...
September 23, 2013 at 8:58 am
Viewing 15 posts - 31 through 45 (of 57 total)