Viewing 15 posts - 166 through 180 (of 286 total)
As I said import everything into Staging table using Data Flow and then run MERGE by Execute SQL Task.
Or if by ssis you mean specifically Data Flow then use OLE...
June 4, 2013 at 9:36 am
From your explanation it look's like that your database design is very poor.
If you still want to perform the task, then I would suggest you to dump everything to staging...
June 3, 2013 at 3:35 pm
You can use Profiler or Extended Events.
June 3, 2013 at 3:20 pm
tim.cloud (4/4/2013)
and I think it's because of needing to get the MAX date_started record in the WHERE clause.
Why don't you verify this assumption by running the sub-query separately?
April 4, 2013 at 5:22 pm
javib (3/22/2013)
March 22, 2013 at 3:38 pm
sqldba_newbie (3/22/2013)
March 22, 2013 at 3:29 pm
Insert all 740K into a staging table and then do a MERGE.
March 22, 2013 at 3:13 pm
mbrady5 (3/13/2013)
If I want to Sum a field where the date has passed, how would I do that?
Usually using SUM, WHERE and likely GROUP BY.
March 13, 2013 at 5:28 pm
Your client application should do all the formatting, not a database server!
March 13, 2013 at 5:11 pm
ScottPletcher (2/21/2013)
Alexander Suprun (2/21/2013)
ScottPletcher (2/21/2013)
February 21, 2013 at 4:10 pm
ScottPletcher (2/21/2013)
February 21, 2013 at 2:42 pm
wayne_dyck (2/20/2013)
Hi,The outsourced IT company managing our servers has been uncooperative with my requests for access to either the SQL Profiler or the underlying stored procedures.
Run SQL Profiler against your...
February 20, 2013 at 1:29 pm
DECLARE @ID INT = 2
SELECT TOP 1 * FROM #tTestTB
WHERE VisOrder < @ID AND TreeType = 'S'
AND EXISTS(SELECT * FROM #tTestTB WHERE...
February 20, 2013 at 1:25 pm
Viewing 15 posts - 166 through 180 (of 286 total)