Viewing 15 posts - 4,186 through 4,200 (of 9,253 total)
has the user been added as an explicit server login on the sql server.
What are the resultsd of the following query
select name, SID
from sys.server_principals
where type = 'U'
and...
April 17, 2013 at 7:08 am
In that case you use CREATE INDEX specifying the new file group with the DROP_EXISTING = ON clause
See here for more detail
April 17, 2013 at 12:16 am
No problem, don't forget to check the pre reqs and restrictions carefully, it can save you a whole lot of time later on.
April 17, 2013 at 12:13 am
Does the PK have a clustered index upon it at present?
April 16, 2013 at 10:14 am
yes but i'm assuming you'll have other databases that are not part of the AO group or even other instances that may use DTC, if you don't then don't worry....
April 16, 2013 at 5:35 am
SQLSACT (4/16/2013)
Because Node1 has SQL installed as nonclustered, is it safe to say that it's not absolutely necessay to share DTC across all 3 nodes.
yes you could argue that....
April 16, 2013 at 4:59 am
SQLSACT (4/16/2013)
By this do you mean it's not part of the storage allocated to the clustered instance of SQL Server?
Yep, MSDTC has absolutely nothing to do with SQL Server,...
April 16, 2013 at 3:31 am
SQLSACT (4/16/2013)
Nope - All Servers are in the same DC
DC?
SQLSACT (4/16/2013)
Would it make a difference if it was spanned across multiple sites?
It's a consideration, yes.
SQLSACT (4/16/2013)
April 16, 2013 at 2:51 am
SQLSACT (4/16/2013)
My Setup:
>> 3 Servers (Node1-Node2-Node3) all part of the same Cluster "Cluster1"
>> SQL installed as clustered on Node2 & Node3, producing "SQLCluster"
>> SQL installed as nonclustered on Node1,...
April 16, 2013 at 2:08 am
JayK (4/15/2013)
Thanks for getting back - in reality I just need to check that data in a single column is the same for each matching PK in the 2...
April 16, 2013 at 1:58 am
tsdsuresh (4/15/2013)
I have set up logshipping between server A (Primary) and server B (Secondary), and tested log shipping by activate database from server B ( Stop the log...
April 16, 2013 at 1:47 am
check results of the following query both before and after the drop
SELECTOBJECT_NAME(i.object_id) AS TableName
, ISNULL(i.name, 'HEAP') AS IndexName
, i.index_id as IndexID
, i.type_desc AS IndexType
, p.partition_number AS PartitionNo
, p.rows AS NumRows
,...
April 16, 2013 at 1:44 am
Interesting one this, there is a known issue around the removal of LOB data in sql server. Dropped LOB data is not removed immediately, there is a ghost process that...
April 16, 2013 at 12:25 am
Viewing 15 posts - 4,186 through 4,200 (of 9,253 total)