Viewing 15 posts - 31 through 45 (of 77 total)
This sounds like parameter sniffing. Take a look at the links below:
http://sqlinthewild.co.za/index.php/2007/11/27/parameter-sniffing/
http://sqlinthewild.co.za/index.php/2008/02/25/parameter-sniffing-pt-2/
http://sqlinthewild.co.za/index.php/2008/05/22/parameter-sniffing-pt-3/
PS Many thanks to Gail for these articles.
PPS Pinning tables is a thing of the past as of...
June 11, 2012 at 12:44 pm
Multiple objects can have borders. Check for rectangles with borders around your textbox. It might be worthwhile to open the code for the report and do a search...
June 11, 2012 at 12:31 pm
There should be some border properties on each of the objects that can be changed
June 11, 2012 at 10:48 am
Lookup ROW_NUMBER in books online for more information
IF OBJECT_ID('TempDB..#SectionMaster') IS NOT NULL DROP TABLE #SectionMaster
CREATE TABLE #SectionMaster
(SectionID INT NOT NULL PRIMARY KEY CLUSTERED,
SectionName VARCHAR(50) NOT NULL,
Position INT NOT...
June 11, 2012 at 5:34 am
Reading comprehension is a big part of being DBA.
This is the very first link I hit on Google.
May 30, 2012 at 11:28 am
SQL Server Central also has a stairways series from Andy Leonard.
April 10, 2012 at 11:00 am
I would also recommend not using a global temp table. There are some edge cases where they might be necessary but as a general rule of thumb I would...
April 9, 2012 at 5:48 am
Try this:
IF object_id('TEMPDB.DBO.##test') IS NOT NULL drop table ##test
create table ##test
(counted int)
April 9, 2012 at 5:43 am
Since you have indexes on your temp table, the results from your select need to be sorted according to the index. That sort operation is the "cost of the...
April 5, 2012 at 11:51 am
When you restore the secondary, use "WITH MOVE <Logical File Name> to <Physical File Name>" to point the new data file to a different physical location.
April 2, 2012 at 1:24 pm
SELECT UPPER(cpt4_id)
FROM #TRANS T
INNER JOIN #outpatient_service OS ON T.auth_id = OS.auth_id AND
OS.key_id = (SELECT MIN(key_id)
FROM #outpatient_service OS2
WHERE OS.auth_id = OS2.auth_id)
WHERE T.auth_id = @auth_id
April 2, 2012 at 11:51 am
SQL Server 2008 R2 / SQL Server 2012 can do this with a data driven subscription in SSRS.
April 2, 2012 at 10:50 am
Can you explain a little more about your situation? Do you not have the same amount of disk space available on disk for your principal server vs your log...
April 2, 2012 at 7:14 am
I would start by limiting the amount of data in your lookup transformations. Check your queries and make sure that they are only returning the columns you need for...
March 30, 2012 at 5:59 am
Viewing 15 posts - 31 through 45 (of 77 total)