Viewing 15 posts - 3,811 through 3,825 (of 9,253 total)
when you setup the central management server you can create a group and register instances. You may then execute a t-sql script against the group affecting all the registered instances
January 4, 2014 at 11:11 am
JimS-Indy (1/3/2014)
I have access to an app that lets me manage group membership for groups I "own".
What is the app called
January 3, 2014 at 10:07 am
you can detach by all means.
January 3, 2014 at 7:12 am
EdVassie (1/3/2014)
January 3, 2014 at 6:41 am
the only time i would be shaky would be a major platform change, for instance in place upgrade from Windows 2003 Std to Windows 2008 R2 Std, etc
January 3, 2014 at 4:28 am
gautham.gn (1/3/2014)
I want to find those columns which are in main table but are not present in _dup table.
Try this
SELECTc.TABLE_SCHEMA
, c.TABLE_NAME
, c.COLUMN_NAME
FROM INFORMATION_SCHEMA.COLUMNS c
LEFT OUTER JOIN INFORMATION_SCHEMA.COLUMNS cd
ON c.TABLE_SCHEMA =...
January 3, 2014 at 4:12 am
arrjay (1/2/2014)
All 5 database instances are being used by the users.
sounds like you're hitting this from an Oracle terminology point, theyre different entirely.
Each instance will default to...
January 3, 2014 at 3:25 am
similar to HP Polyserve then by the sound of it.
January 3, 2014 at 3:20 am
Ginga (12/31/2013)
We have a server that needs more memory but we've hit the 32GB limit imposed by Windows Server 2008 R2 Standard. We plan to perform an in place...
January 3, 2014 at 3:14 am
WebTechie38 (1/2/2014)
I am trying to document the environment I am working at.
I want to document our clustered servers.
1) Server Name
2) Virtual Server Name
3) Primary node name
4) ...
January 3, 2014 at 2:47 am
So you're replicating the database storage drives at the storage level, no HA on the Windows or SQL level, correct?
January 3, 2014 at 2:33 am
For more on moving database files in SQL Server see my guide at this link[/url], now to the issue at hand
ramana3327 (1/2/2014)
use test_copy
alter database test_copy
MODIFY FILE...
January 3, 2014 at 2:25 am
JimS-Indy (1/2/2014)
January 3, 2014 at 2:08 am
niver (1/2/2014)
January 3, 2014 at 1:04 am
darklight_arizona (1/2/2014)
You mean to say we put all the system databases (like master, msdb, temdb etc)
on a shared disk and these databases are common to both the nodes.
Active...
January 3, 2014 at 12:56 am
Viewing 15 posts - 3,811 through 3,825 (of 9,253 total)