Viewing 15 posts - 1,141 through 1,155 (of 1,988 total)
Just out of curiosity what happens if you pull all the data into local tables then try running the same two tests(with and without TOP 1000)?
March 2, 2017 at 8:44 am
March 1, 2017 at 3:17 pm
February 27, 2017 at 1:58 pm
February 27, 2017 at 9:08 am
Well based on your data assuming that EndTime will always have at least 1 not null value greater than the minimum time from Starttime,
SELECT Taskid, MIN(StartTime),...
February 23, 2017 at 10:42 am
February 23, 2017 at 8:05 am
What exactly is the the call to xp_cmdshell doing? And are you by any chance getting any errors in the windows logs at the time?
February 21, 2017 at 3:08 pm
I believe you're looking for something like this,
February 21, 2017 at 2:50 pm
February 16, 2017 at 9:18 am
February 16, 2017 at 8:32 am
Is this something like what you're looking for?
Select column one, column two from tableA
Where
tableA.columnone NOT IN (SELECT column_one FROM tableB)
February 15, 2017 at 3:35 pm
Well you can do it in SQL, ALTER TABLE <TABLE NAME> ALTER <COLUMN NAME> int
Keep in mind you might very well have values in the table that can't...
February 15, 2017 at 1:56 pm
There's nothing wrong with using SPROCS in SSIS, but you're correct if you have SSIS packages that aren't being used for anything more than a shell to schedule running a...
February 13, 2017 at 2:30 pm
Viewing 15 posts - 1,141 through 1,155 (of 1,988 total)