Viewing 15 posts - 1 through 15 (of 130 total)
ChrisM@Work (9/17/2012)
Grant Fritchey (9/17/2012)
ISNULL and COALESCE on columns in the where clause are going to hurt performance....This should be close to a SARGable version of the query:
Chris M:
Your code is...
September 17, 2012 at 10:49 am
Grant Fritchey (9/17/2012)
September 17, 2012 at 7:01 am
I see a couple of websites that explain some of this:
I also see that Grant has a book on execution plans:
September 16, 2012 at 10:42 pm
Silly question, how do I read the execution plan to know what columns to index?
I created two indexes (just eyeballed query and guessed). The first one seems to have...
September 16, 2012 at 9:17 pm
I did an update of the statistics on all of the related tables. That didn't change the execution time.
The view ([font="Courier New"]EmailAudit[/font]) duplicates many of the tables in the...
September 16, 2012 at 7:45 pm
I'm updating statistics on those tables right now; dbo.EmailAudit is a view. I'll look into that.
Thanks,
Rob
September 14, 2012 at 1:03 pm
See if this helps: http://msdn.microsoft.com/en-us/library/ms137625(v=sql.105).aspx
April 24, 2012 at 6:33 am
Take a look at this:
http://www.sqlservercentral.com/articles/Integration+Services+(SSIS)/67871/
That should give you a pretty good idea of what you want.
HTH,
Rob
March 1, 2012 at 8:50 am
At a high level, you're going to create a SQL Agent job that runs a SSIS package that extracts/pulls the data you want from your CRM machine and writes it...
February 27, 2012 at 8:28 am
Really? for development you can get the immediate BIDS feedbak by running package through a SQL Agent job on the server?
Rob
January 5, 2012 at 1:24 pm
I'm not in disagreement with you Elliot about having SSIS installed and running on the server and not through BIDS on a local machine.
if you are pushing data from one...
January 5, 2012 at 10:04 am
I realize that your data source is a flat file, but could you import the flat file into a SQL Server table or temp table. Then you could do...
January 5, 2012 at 9:08 am
What leads you to think that CPU is a bottleneck?
On most of my SSIS packages (even when run through BIDS) doing data loads, network or I/O are the typical slow...
January 5, 2012 at 8:23 am
Try running the T-SQL from your OLE DB Command in SSMS. Does it squawk about a conversion there? This might shed some light.
HTH,
Rob
December 29, 2011 at 1:04 pm
If you're using SQL 2008 or newer, it sounds like a good place for the MERGE statement.
December 15, 2011 at 7:18 am
Viewing 15 posts - 1 through 15 (of 130 total)