Viewing 15 posts - 6,496 through 6,510 (of 6,678 total)
I disable hyper-threading on all of my SQL Servers. I have not found anything other than problems with having it enabled - and only rare situations where it actually...
June 15, 2008 at 2:41 pm
Yes - I did look at those. And once again, you will not see how much memory SQL Server is actually using from that view. You even show...
June 15, 2008 at 1:52 pm
With the system using 5.7GB of memory (page file) - you are definitely running into memory issues. This is only leaving approximately 300MB available to the OS and other...
June 15, 2008 at 1:11 pm
Oh, also - if you only have 6GB of memory available, setting max memory to 5GB (5200) might be a bit high. I would drop that down to 4GB...
June 15, 2008 at 11:02 am
Switch over to the Performance tab and view the PF Usage graph. That should show you the max that is being used.
To verify that SQL Server is using the...
June 15, 2008 at 10:59 am
First - what is reported in that view does not tell you how much memory SQL Server is actually using. You can look at PF Usage to get a...
June 15, 2008 at 10:32 am
To add to what Lynn has already stated - I think you need to lookup OUTER JOIN's. Once you have posted additional information about the problem, I am sure...
June 14, 2008 at 8:04 pm
Order By in SQL Server 2005 does work, however - it only works to guarantee the order to satisfy the TOP requirement and does not guarantee the order the results...
June 9, 2008 at 7:50 am
Are you looking for something like:
SELECT is_disabled FROM sys.sql_logins WHERE name = 'username';
Or,
SELECT is_disabled FROM sys.server_principals WHERE name = 'username';
Jeff
June 8, 2008 at 11:19 am
Or, you can use EXCEPT:
SELECT * FROM TABLEA
EXCEPT SELECT * FROM TABLEB;
Look in BOL for further information,
Jeff
June 8, 2008 at 10:42 am
I am going to assume that you have the following in your view:
CREATE VIEW dbo.MyView AS
SELECT TOP 100 PERCENT ... ORDER BY someorder
GO
If so, I don't know of a fix...
June 8, 2008 at 10:37 am
You can find the downloads for SQL Server sample databases at: http://www.codeplex.com/MSFTDBProdSamples
Jeff
June 7, 2008 at 11:25 am
marchbrown1529 (6/6/2008)
DECLARE @todaysdate DATETIME
set @todaysdate...
June 6, 2008 at 4:47 pm
I am not sure what you are asking for. I don't know of any properties that keep track of maintenance plans in SMO. You could look at Microsoft.SqlServer.Management.Smo.Agent...
June 6, 2008 at 3:29 pm
Open up the maintenance folder in Object Explorer, right-click on the Maintenance Plan and View History. In the log viewer - you can then open up the job and...
June 6, 2008 at 1:21 pm
Viewing 15 posts - 6,496 through 6,510 (of 6,678 total)