Viewing 12 posts - 376 through 388 (of 388 total)
I don't think dynamic AWE is support in SQL 2000, Why don't you upgrade to 2005 or 2008?
Here is the steps enable and set AWE memory
To enable AWE
sp_configure 'show...
February 10, 2010 at 10:04 am
"This dynamic AWE example does not apply to SQL Server 2000"
Try this, Check books online for more Info
sp_configure 'show advanced options', 1
RECONFIGURE
--To enable AWE
sp_configure 'awe enabled', 1
RECONFIGURE
GO
February 10, 2010 at 9:51 am
I agree with Linda, we have SQL instances on Virtuals in Test Environment for more than two years. We had problems with Virtuals Host failing which brings down...
February 10, 2010 at 9:39 am
I don't think you will be able to access data from another server using select statement without linked server connection. You can replicate the objects if you want copy of...
February 10, 2010 at 9:25 am
I had experienced same problem, fix was to put the database in emergency mode and extract all the data using SSIS package. Once you had detached database you lost...
February 10, 2010 at 8:52 am
Mismatch columns between publisher and subscriber can many reasons one of then could be schema changes at the subscriber. In Replication there is an option to allow schema changes at...
February 9, 2010 at 9:36 pm
If you are using SSMS 2008 client, you can see all the objects details in Object Explorer details tab Including Row count, data size, Index size etc.
Enjoy!
February 7, 2010 at 3:08 pm
Gail is correct, It is not best practice to move\restore system databases. If i understood correct you want the same objects on both servers correct? If thats the case...
February 7, 2010 at 2:51 pm
Best practices is not to restore system databases, i have not seen in any environment DBA' s restoring system databases until and unless mandatory. Why are you trying to restore...
February 7, 2010 at 2:20 pm
If cost is not constraint then Clustering is the best option for high availability, you have two options in clustering Active\Active and Active\Passive.
Active\Active: In any point in time both nodes...
February 5, 2010 at 2:28 pm
You can verify the last backup file and last restore file by querying these table log_shipping_monitor_primary or log_shipping_monitor_secondary
on either one of the servers primary or secondary on msdb database....
February 5, 2010 at 1:49 pm
Drop Index on destination table then rebuild index then load data, Rebuilding Index takes lesser time than defrag. If you want you can do rebuild index online...
February 4, 2010 at 4:15 pm
Viewing 12 posts - 376 through 388 (of 388 total)