Viewing 15 posts - 121 through 135 (of 501 total)
Try the IS_MEMBER function.
March 2, 2012 at 2:33 pm
jason.nodarse (2/21/2012)
February 21, 2012 at 2:24 pm
jason.nodarse (2/21/2012)
I need to find a way to lock SQL down to only using 20gigs
You can set the max server memory to 20 GB for SQL by executing...
February 21, 2012 at 2:13 pm
It will take approximately the same amount of time to compress an index as it does to rebuild it.
February 9, 2012 at 2:28 pm
In Active Directory, create a service account for SQL. Then in the account properties, select the account tab, and check "Password never expires" under account options.
February 3, 2012 at 2:44 pm
Is the SQL Server Browser service started?
January 20, 2012 at 2:03 pm
You might be running into this bug if you are on SP4.
January 12, 2012 at 2:57 pm
Run the code below with results to text. It will generate the statements to transfer schemas.
SELECT 'ALTER SCHEMA TheNewSchema TRANSFER ' + S.name + '.' +T.name +';'
FROM sys.tables as T...
December 19, 2011 at 2:44 pm
If nothing was returned by DBCC TRACESTATUS then you don't have any trace flags enabled.
December 14, 2011 at 3:22 pm
Right click on the linked server and select “Script Linked Server as”
For trace flags, you can use DBCC TRACESTATUS
December 14, 2011 at 2:52 pm
A few other things you may want to script out or keep track of if they apply:
•sp_configure
•Alerts
•Operators
•Jobs
•SQL Agent config
•Database Mail config
•Trace Flags
•Linked Servers
•Replication publications or subscriptions
December 14, 2011 at 2:32 pm
If you know when the CPU spikes occurred, you can use the view ReportServer.dbo.ExecutionLog2 to go back and see which reports were running during that time. I use the queries...
December 13, 2011 at 2:16 pm
You might have to change the environment variables.
Right click Computer / Properties / Advanced system settings / Environment variables
In the “path” system variable make sure:
C:\Program Files (x86)\Microsoft SQL Server\80\Tools\Binn
Comes...
December 9, 2011 at 1:51 pm
My apologies, I had lost track of the original post.
November 22, 2011 at 5:38 pm
Richard Moore-400646 (11/22/2011)
November 22, 2011 at 4:17 pm
Viewing 15 posts - 121 through 135 (of 501 total)