Viewing 15 posts - 31 through 45 (of 162 total)
I wasn't sure either, so I had to look. Yes, please let me know how it goes. I am curious.
October 3, 2012 at 10:51 am
I have no experience with replicating partitioned tables but this article makes me believe it's possible.
http://msdn.microsoft.com/en-us/library/cc280940(v=sql.105).aspx
October 3, 2012 at 10:29 am
What is "almost" live data? An hour, 5 minutes, a couple seconds behind?
If it's something like an hour would a snapshot of a mirror work? I'm guessing it's...
October 3, 2012 at 10:19 am
No problem. Thank the Jason's. They provided the solution. I just provided an alternative if modifying the proc wasn't an option.
To answer your questions above. The...
October 3, 2012 at 9:39 am
Now that you know parameter sniffing is the problem you may want to consider putting the recompile option in the proc if you haven't already. There might be several...
October 3, 2012 at 9:29 am
You don't have to change the query in the stored proc. Just execute the proc with the recompile option.
EXEC lloyds.up_qmc_Report_E4247_112_RBNSAtStartOfYear 2012,3,197,2,20120630 WITH RECOMPILE;
October 3, 2012 at 9:20 am
Just a personal preference but I prefer laurie's solution. Never liked seeing ISNULL used in that fashion.
October 2, 2012 at 7:15 am
Store it in UTC time...what you're asking can end up becoming a huge pain in the you know what.
September 28, 2012 at 11:34 am
I don't see what's wrong with your query other than you don't have a loannumber column. It is loan_number.
Post the ddl and sample data for TableC and give expected...
September 27, 2012 at 7:12 am
I would take a look at SQL query stress by Adam Machanic.
September 27, 2012 at 7:02 am
Someone got their hands on a delorean.
August 14, 2012 at 8:53 am
To add to what you have and what Grant said, I like to look through the SQL agent jobs as well. Figure out when they run, how often they...
July 18, 2012 at 8:19 am
An entry level position that requires certs? That's just a little contradictory.
July 18, 2012 at 8:06 am
If you want to keep the temp tables in place, I would try joining them to your deletion table on eventid instead of using the IN with a subquery and...
June 22, 2012 at 7:02 am
Instead of @@Error, try using a try...catch block. It's a significantly better way to handle errors.
Check out http://msdn.microsoft.com/en-us/library/ms175976.aspx
June 22, 2012 at 6:50 am
Viewing 15 posts - 31 through 45 (of 162 total)