Viewing 15 posts - 8,551 through 8,565 (of 18,923 total)
Michael Earl (1/6/2009)
I close my eyes and throw darts.I went through three monitors last month.
LAMOROTF, can't wait to see that on youtube :D.
January 6, 2009 at 7:04 am
I'm a bit curious here (never used SSIS). So you are saying that this sort transform basically only keeps 1 row PER manager. Can you decide which row...
January 6, 2009 at 5:24 am
Steve Jones - Editor (1/5/2009)
I've logged a note. Personally I think I'd like an hourly email rather than 20-30 a day.
Doesn't that make 24 e-mails a day anyways? :w00t:
January 5, 2009 at 11:02 am
This of course assumes that you are using sql 2005.
Sorry to go this basic... but if you made a tiny posting error and are using sql 2000, you...
January 5, 2009 at 9:02 am
That sounds about right (I'm just no expert there), but sleeping seems like "done doing my batch" to me.
I see what you are going through. But on the other...
January 5, 2009 at 9:00 am
Thanks, but I meant the query you are using ;).
January 5, 2009 at 8:58 am
Create a table (like any other table). Make sure the name is significant like Staging_Managers.
The insert all the data in that table. (Make sure you truncate before the...
January 5, 2009 at 8:56 am
It's basically the same answer as I want to restore without a backup... you're screwed my friends. Learn and move on.
Now would be a good time to learn to...
January 5, 2009 at 8:54 am
Please post the actual code, it's eaiser for us to help that way.
January 5, 2009 at 7:53 am
What login are you using?
Does that login have permissions on all DBs?
January 5, 2009 at 7:33 am
Well step 1 in any etl is EXTRACT.
So I'd put all that data into temp table then I'd start the transform tasks. Then my query would easily work.
January 5, 2009 at 7:24 am
Back to the basics... why is this causing you a problem? Are you having blocking issues, running out of ram?
If you just have many sleeping connections and no other...
January 5, 2009 at 7:22 am
This is a hack but it will do the job : run subcription with default name.
Create a windows task that renames the file with for exemple today's date (might have...
January 5, 2009 at 7:02 am
What did you try and what is wrong with those results?
January 5, 2009 at 5:51 am
How do you define the first guy??
SELECT * FROM Source INNER JOIN (
SELECT Manager_id, MIN(emp_id) FROM Source GROUP BY Manager_ID
) dtFirst ON Source.Manager_id = dtFirst.Manager_id and Source.emp_id = dtFirst.emp_id
inner join...
January 5, 2009 at 5:48 am
Viewing 15 posts - 8,551 through 8,565 (of 18,923 total)