Viewing 15 posts - 646 through 660 (of 1,825 total)
Have you tried setting the format options of the textbox ?
September 16, 2010 at 3:56 am
Its not all bad though...
http://www.sqlservercentral.com/Forums/Topic987019-1292-1.aspx
September 16, 2010 at 3:54 am
Most likely the queries are bad.
Ensure that you have correct indexes, and that those indexes are being used.
Can you post a query ?
September 16, 2010 at 1:52 am
Views dont have stats, as they look to the underlying data.
This is tough to diagnose like this , though i feel the answer is in rewriting you queries.
That will take...
September 15, 2010 at 9:32 am
Try not using { FN CURDATE() } , which returns a char but getdate which is a datetime type.
September 15, 2010 at 9:04 am
Can you post the view code ?
I would like to see how PS_NAMES ,PS_JOB and PS_PERSON are joined.
September 15, 2010 at 8:27 am
Check that the Stats are actually updated with 'DBCC SHOW_STATISTICS'
sp_updateStats, to quote BOL
updates only the statistics that require updating based on the rowmodctr information in the sys.sysindexes catalog view, thus...
September 15, 2010 at 7:20 am
Just as a stab in the dark , are you joining on the results of udfs ?
You might be seeing this....
September 15, 2010 at 4:45 am
Please post the plans as per
http://www.sqlservercentral.com/articles/SQLServerCentral/66909/
September 15, 2010 at 4:42 am
DTA will not help you if your queries are poor in the first place, such as the one stated in one of your other threads.
http://www.sqlservercentral.com/Forums/Topic986028-360-1.aspx
September 15, 2010 at 1:51 am
Cross post....
http://www.sqlservercentral.com/Forums/Topic986023-360-1.aspx
http://www.sqlservercentral.com/Forums/Topic986028-360-1.aspx
By posting multiple similar questions , you are helping no-one , least of all yourself.
Lets deal with you specific select issues first.
September 15, 2010 at 1:45 am
Probably for the same reasons i have stated in your other thread
http://www.sqlservercentral.com/Forums/Topic986028-360-1.aspx
September 15, 2010 at 1:35 am
Though its good you have posted the plans, what statement is causing the Timeout ?
September 15, 2010 at 1:24 am
where dbo.FnISTDt(d.starttime)>=convert(datetime,@fromdt,103)and dbo.FnISTDt(d.starttime)<=convert(datetime,@todt,103) ) D
:w00t:
This is probably the root cause.
Two links that will help you...
http://www.karaszi.com/SQLServer/info_datetime.asp <--- Required reading IMO
and check out Rob Farley's "Sargability" Session from...
September 15, 2010 at 1:19 am
The major cause of performance problems after an upgrade is not updating statistics.
Try that , if thats no help then post the execution plan.
September 15, 2010 at 1:13 am
Viewing 15 posts - 646 through 660 (of 1,825 total)