Viewing 15 posts - 166 through 180 (of 541 total)
leosinclair (9/7/2012)
I...
September 7, 2012 at 7:30 am
if SAN was restarted.
Can you offline-online those disk resources?
August 23, 2012 at 1:50 pm
For Ad hoc queries you can query catalog table:
;WITH XMLNAMESPACES (
DEFAULT 'http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition',
'http://schemas.microsoft.com/SQLServer/reporting/reportdesigner' AS rd
)
SELECT name
, x.value('CommandType[1]', 'VARCHAR(50)') AS CommandType
, x.value('CommandText[1]','VARCHAR(50)') AS CommandText
, x.value('DataSourceName[1]','VARCHAR(50)') AS DataSource
FROM (
SELECT name
, CAST(CAST(content AS VARBINARY(MAX))...
August 14, 2012 at 12:27 pm
You have to connect via SSMS to Virtual IP or Name of the cluster in order to view replication monitor.
August 8, 2012 at 2:19 pm
Yes you can.
1. Run the Create Publication wizard on the publisher. Make sure NOT to create a snapshot.
2. Once the wizard has finished, right-click the new publication, choose Properties
...
August 8, 2012 at 1:15 pm
na1774 (8/7/2012)
We have a table 'Servers' which lists all the Servers in our Company.
My scenario is that we have a a Dynamic as well as static FQDN to connect...
August 8, 2012 at 11:52 am
SQLHammer (8/6/2012)
I recently performed a server migration and I'm left with some SQL Agent issues. I restored an msdb from one server to another, I ran sp_help_revlogin on the original...
August 6, 2012 at 1:41 pm
"If it ain't broke, don't fix it"
oops did not read the other post
What's on D, F and T drives?
August 3, 2012 at 10:09 am
Markus (8/1/2012)
August 1, 2012 at 8:18 am
MyDoggieJessie (7/31/2012)
I opened two command windows, started the service in one and immediately alt-tabbed over to connect in the other (both windows...
July 31, 2012 at 3:07 pm
You don't need a cursor in catch. Primary key, ERROR_NUMBER, ERROR_LINE and ERROR_MESSAGE should be enough.
Try this:
DECLARE @MyTable AS TABLE (id INT NOT NULL PRIMARY KEY CLUSTERED, name VARCHAR(10) NULL)
BEGIN...
July 13, 2012 at 9:02 am
Viewing 15 posts - 166 through 180 (of 541 total)