Viewing 15 posts - 4,726 through 4,740 (of 11,678 total)
Yes, but most sites offer them for a fee.
You can take a look around YouTube to see if you can find interesting ones.
September 27, 2013 at 1:22 am
There are also sample databases available for earlier versions of SQL Server.
September 27, 2013 at 1:20 am
You can use UNION ALL to string the resultsets together in one resultset.
This resultset you can use as a subquery for another query which counts the Yes answers.
WITH CTE_Results AS
(
result1
UNION...
September 27, 2013 at 12:40 am
Seems to me you need to play around with subreports and passing parameters to these subreports so that you only get information for one agent.
September 27, 2013 at 12:36 am
The error window is for errors/warnings when you are designing the package. (for example: you did not specify a connection manager for the Execute SQL Task)
For runtime information, you need...
September 27, 2013 at 12:33 am
Use a for each loop.
There you can use wildcards to find the correct files, for example source_*.csv.
A small tutorial:
How to loop through files in a specified folder, load one by...
September 27, 2013 at 12:31 am
The set-up seems to be OK.
You can use breakpoints to stop the loop at every iteration, so you can inspect the variables.
On a sidenote: this set-up takes only a few...
September 27, 2013 at 12:29 am
George M Parker (9/26/2013)
September 27, 2013 at 12:26 am
Another option is to use source control on your development environment.
For example TFS integrated in BIDS.
September 27, 2013 at 12:20 am
Maybe the quickest way to get some overview of the 3 different tools is to read the training kit for the 2008 exam:
MCTS Self-Paced Training Kit (Exam 70-448): Microsoft SQL...
September 27, 2013 at 12:17 am
It might be a track worth pursuing, but to me it seems like you're adding an extra step.
How do you load the data now? If you sort the data according...
September 27, 2013 at 12:14 am
etl.laptop (9/26/2013)
September 27, 2013 at 12:11 am
Didn't even have to think for this one. Which is nice for a Friday 😀
September 26, 2013 at 11:38 pm
CptCrusty1 (9/25/2013)
September 26, 2013 at 3:42 pm
To be short: you need to install SSIS on the server where you want to run the packages. This isn't necessarily the machine where they are designed of course, but...
September 26, 2013 at 3:39 pm
Viewing 15 posts - 4,726 through 4,740 (of 11,678 total)