Viewing 15 posts - 106 through 120 (of 130 total)
Just a Correction in the above query.
select distinct trace_event_id, e.name
from ::fn_trace_geteventinfo(1) t join sys.trace_events e
on t.eventid = e.trace_event_id
t.event_id is actually t.eventid
July 21, 2010 at 11:25 pm
Obviously..
You should backup your database either be it User defined or system defined and that too on the different drives.
July 19, 2010 at 4:01 am
Ans 1 : Client is looking for Consolidated Application which will be access by both the sites.
Ans 2 : did not got what exactly u r trying to...
July 13, 2010 at 1:12 am
You do not have to reboot the active node to failover the services ( sql instance).
THis is better explained by Tara Kizer.
July 8, 2010 at 10:53 pm
July 8, 2010 at 5:48 am
Database mirroring endpoints also shows important information about mirroring
select * from sys.database_mirroring_endpoints
July 8, 2010 at 5:42 am
SQL DBA + Clustering + PA + SSIS is a good combination.
July 8, 2010 at 5:35 am
The Support files are getting installed on C Drive only.
I have done 2 installation to verify this.
If you are installing SQL 2nd time on the same node, the support files...
July 8, 2010 at 5:24 am
There should be seperate Service account ( startup account) for Each SQL server Instance.
Also, that started account should be having local admin accounts on all nodes.
July 8, 2010 at 5:21 am
Even i am getting the answer as "-1, 0, 1".
I have executed the query in SQL 2008 Enterprise edition.
i am agreeing with others about the fact that
to get ans as...
June 27, 2010 at 11:30 pm
Try this.
select a.name as [Table Name], b.name as [Index Name],
b.type_desc from sys.tables a, sys.indexes b
where a.object_id = b.object_id
and a.name=' Type the table name here'
( Runs on SQL 2005 /...
June 22, 2010 at 3:12 am
That would be great if you share that script. It will help out lot of people.
June 22, 2010 at 12:45 am
you can compare the database login between SQL 2005 and SQL 2008.
Also, as a end step, you should take a backup of Database in sql 2008.
June 21, 2010 at 1:02 am
Viewing 15 posts - 106 through 120 (of 130 total)