Viewing 10 posts - 1 through 10 (of 10 total)
SSC-Dedicated, thanks for the reply. I agree ... perhaps it should be removed if it isn't really used.
November 4, 2016 at 1:45 pm
When I read the article from SQL Server Central a lot of it did sound kind of "deja' vu". However, many articles and posts regarding SQL Server functions, processes,...
December 5, 2013 at 6:08 am
There needs to be a disclaimer or note on this script/article stating that this applies to backups handled under certain conditions. The way it is currently written it is...
September 23, 2013 at 7:42 am
I have modified the script to avoid sp_configure and cursors.
;
WITH cteConfigValues AS
(
SELECT
ConfigurationName = [name]
,[Description]
,CurrentValue =
CASE [value_in_use]
WHEN 0 THEN 0
ELSE 1
END
,[value_in_use]
FROM
[master].sys.configurations
WHERE
[name] IN
(
'affinity64 mask'
,'affinity I/O mask'
,'affinity64 I/O mask'
,'lightweight pooling'
,'priority boost'
,'max worker...
September 12, 2013 at 6:57 am
If you have fields that contain values and not numbers then the following should work to hide columns that have only NULL values for each row in the column.
Place this...
September 11, 2013 at 3:02 pm
Simply go back to the SSMS query and execute it despite the fact that the connection icon is still GREYED OUT. The query should get reconnected and finish! ...
March 18, 2013 at 9:01 pm
--BUILD LIST OF Captured SQL Agent Jobs from Profiler GUIDs
--ASSUMES THAT YOU HAVE A PROFILER TRACE TABLE "xxProfilerTraceTablexx"
--ALSO ASSUMES "xxProfilerTraceTablexx" IS ON SAME TABLE AS SQL Agent Jobs
IF EXISTS
(
SELECT *...
September 26, 2011 at 12:15 pm
I am running SQL2008 Express Edition. As it turns out, apparently all I needed to do to resolve this issue was to fix my firewall settings and turn on...
February 22, 2010 at 1:32 pm
So I thought that using the Microsoft OLE DB Provider for SQL Server (SQLOLEDB) would make a difference. It did not. As a matter of fact, the error...
February 22, 2010 at 1:30 pm
I am having a very similiar problem. I could create the linked server to the SQL2008 box from the SSMS2005 interface just fine, without any errors. I am...
February 22, 2010 at 1:02 pm
Viewing 10 posts - 1 through 10 (of 10 total)