Viewing 15 posts - 4,426 through 4,440 (of 6,397 total)
From what I can see, all your tables are heaps.
Is there a reason you dont have CLUSTERED indexes on any of these tables?
July 4, 2012 at 4:30 am
The job history table is a cumulative table of all history from all jobs. By default it only stores around 1000 rows in the table, so if you have...
July 4, 2012 at 4:24 am
To add on to Gullimeel, please follow the link in my signature on how to post performance problems.
July 4, 2012 at 4:08 am
Woohoo, easy 7 points, happy holidays all those in the US
July 4, 2012 at 2:06 am
What browser are you running it in?
July 4, 2012 at 1:45 am
I would strongly recommend using a calendar table which you can link on to get the results you need.
I will try and find the links to some articles on this...
July 4, 2012 at 1:39 am
If this is a brand new requirement and you dont have anything to base your hardware requirements on it is best to ask the people who want the application /...
July 4, 2012 at 1:37 am
What do you get from the below query
select log_reuse_wait_desc, name from sys.databases
July 4, 2012 at 1:31 am
I think the OP wants to acheive a MCM rather than he already has an MCM as I just checked the MCM list and couldn't find Ramdas in the list.
July 3, 2012 at 7:30 am
What is the authentication method? Windows / SQL?
Does the user exisit on Server2? If not you wont be able to connect?
If windows authentication do you have SPN's configured for...
July 3, 2012 at 7:26 am
Looks like you want to look at a computed column.
http://msdn.microsoft.com/en-us/library/ms191250%28v=sql.105%29.aspx
July 3, 2012 at 7:04 am
In that case I would go down the route of AD groups and get a a copy of RSScriptor to copy the objects from the old server to the new...
July 3, 2012 at 6:59 am
then just change the query to match the rank id's you are after.
July 3, 2012 at 6:27 am
wrap your initial query up into a CTE, then select from the CTE where rank in (1,2,3)
July 3, 2012 at 6:21 am
If its in the development stages, then you should be able to use perfmon on your development SQL server and identify the counters needed.
Granted this wont give you a true...
July 3, 2012 at 6:19 am
Viewing 15 posts - 4,426 through 4,440 (of 6,397 total)