Viewing 15 posts - 121 through 135 (of 169 total)
I've used SQL Backup from Red Gate. I'm currently using Quest tools - LiteSpeed for compressed backups, Spotlight on SQL Server for perf monitoring and reporting, Capacity planner for index...
November 24, 2009 at 8:41 am
Thanks Hall of Fame. I thought about using profiler so I will do this today on my test environment while the user creates objets. I have requested a call from...
November 9, 2009 at 9:50 am
well that worked, but the quirky thing with the application is this, the user has to have two tables (that the application creates) with the user name as the schema...
November 4, 2009 at 9:46 pm
I can try to login as them into SSMS, that's a good thought.
Yeah, the application is weird. The user connects to a service, and then the service connects to the...
November 3, 2009 at 3:02 pm
Sorry for the confusion, I want their default schema to be dbo. BUT, when I change their default schema and they try to create an object, through their application, it...
November 3, 2009 at 2:37 pm
Thanks for the response! I'm glad to know you've done it - makes me feel a bit better 🙂
I'll post back afterwards to say how it all went in case...
October 15, 2009 at 3:13 pm
Could be disk latency. I would also check your IO by file in Spotlight, you may be able to pinpoint the process that is holding up the disks.
October 15, 2009 at 2:26 pm
So glad you got it to work faster!
June 22, 2009 at 7:58 am
You may want to index your view on the date of visit and patient id. Subqueries tend to run slower. Is the underlying table indexed - and if it is,...
June 19, 2009 at 5:45 pm
ugh - was hoping there was some slick unknown method for doing this - hack the lsn and commit it or something.
Yes, I will have to look at re-engineering it....
June 18, 2009 at 9:37 am
Try:
SELECT Q1.*, Q2.DrFName
FROM (SELECT Patid, LastName, FirstName, Min(dos) as MinDate, Max(dos) as MaxDate
FROM @VwVisitDetails
GROUP BY Patid, LastName, FirstName) AS Q1
INNER JOIN
(SELECT Patid, LastName, FirstName, Max(dos) as MaxDate, DrFName
FROM...
June 18, 2009 at 9:02 am
Recommend benchmarking your performance, showing your decision makers how you can improve performance, and increase customer satisfaction by improving availability.
Slow reporting and other system processes leads to inefficient work -...
June 16, 2009 at 1:32 pm
that was my thought also - are you using one login to identify the process?
June 16, 2009 at 9:22 am
From my experience it is better to have OLTP databases on a faster RAID and OLAP databases on a bigger disk with more redundancy. It seems you are trying to...
June 16, 2009 at 9:20 am
Is anything connecting to the file - a service, something you cannot see from SSMS?
-----
I don't know if it would help to visualize how much space is being consumed by...
June 16, 2009 at 8:11 am
Viewing 15 posts - 121 through 135 (of 169 total)