Viewing 15 posts - 4,411 through 4,425 (of 9,253 total)
runal_jagtap (1/10/2013)
yup i was talking abt LDF Files.
Yup???
You've been listening to Gail and Paul too much 😀
January 10, 2013 at 7:34 am
no, the agent failure will not fail over the instance
January 10, 2013 at 7:30 am
DBA in Unit 7 (1/8/2013)
January 9, 2013 at 1:45 am
peterjbassi (1/8/2013)
Thanks Perry.That script worked was perfect.
You're welcome, there are other scripts around but they don't account for partitions and the new allocation units used by SQL Server 2005 onwards
January 8, 2013 at 8:00 am
Innerise (1/8/2013)
Suppose we have a production SQL cluster, 2 nodes, active/passive.Also suppose we also have a DR cluster SQL cluster, 2 nodes, active/passive.
I can understand the provision of high availability...
January 8, 2013 at 7:03 am
jitendra.padhiyar (1/8/2013)
@Penny
That's ok mitundra 😉
January 8, 2013 at 2:54 am
If you have more than one file restart the instance afterwards to kickstart the proportional fill from equal file sizes.
January 8, 2013 at 1:42 am
To get details of table\index sizes on SQL Server 2005 onwards use the following script,
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
,...
January 8, 2013 at 1:37 am
b.ammad (1/7/2013)
I have a 2 node Active/Passive cluster mounted in Windows Server 2008 R2. Currently on the active node there's a SQL Server DB Engine instance running. SQL Server...
January 8, 2013 at 1:30 am
I can't say I've seen that before, are you sure you modified the xml file the same on all nodes?
January 7, 2013 at 8:49 am
iamsam.sandeep (1/6/2013)
HI.Just wanted to know if there is any difference betwen Sql patching in 2005 and 2008 Cluster evn
Not just the patching but the installation of the product...
January 7, 2013 at 3:53 am
balasach82 (1/5/2013)
[Taking backup of db and restoring the same db and changing the file location while restoring]
Example:
Database: Inventory
Backup Inventory
Restore Inventory (replace existing Inventory...
January 5, 2013 at 1:45 pm
most times a differential backup will do the job 😉
January 5, 2013 at 11:26 am
Contrary to popular belief you do not need to stop SQL Server, there, that's that over with 😉
To move the database files perform the following;
get the logical filename and current...
January 5, 2013 at 11:24 am
you need to change the node IPs first so that the cluster networks are updated with the new IP\mask. Once this is done change the virtual IP for any client...
January 5, 2013 at 11:08 am
Viewing 15 posts - 4,411 through 4,425 (of 9,253 total)