Viewing 15 posts - 226 through 240 (of 492 total)
Database does not have any edition,Database have compatibility option in the advanced option of database
like 80 for 2000 , 90 for 2005 ,10 for 2008
May 15, 2011 at 7:04 am
Install Service Pack 1 for the SQL Server 2008 R2 and CU # 7 is available also
Select st.text,sp.* from sys.sysprocesses sp
cross apply sys.dm_exec_Sql_text(sp.sql_handle) st
order by sp.cpu desc
this query provide...
May 15, 2011 at 6:59 am
Depending (there is that word again) on the volume of data changes a setup involving transactional replication can utilize infinitely more network and system resources than periodically running a well-crafted...
May 13, 2011 at 10:17 pm
Execute your query and then execute this query on another server
Select st.text,sp.* from sys.sysprocesses sp
cross apply sys.dm_exec_sql_text(sp.sql_handle) st
order by sp.cpu desc
it will tell you bottleneck
mostly only CPU usage depend on...
May 13, 2011 at 11:50 am
Start cmd as [RUN as Administrator] then execute it
May 13, 2011 at 11:43 am
1-Install the latest service pack for the SQL Server 2005
2-Is your network break after some interval ?
3-Have you define catalog in the connection String ?
May 13, 2011 at 11:38 am
select * from sys.dm_os_performance_counters
where counter_name = 'Page life expectancy'
provide value of this counter,RAM allocation is depend on the load of the server,this counter will tell you SQL Server required RAM...
May 13, 2011 at 9:55 am
For Logshipping Issue
http://aureus-salah.com/2011/05/10/sql-server-logshipping-issue/
May 13, 2011 at 9:45 am
Its better to install 1 by 1
May 13, 2011 at 9:42 am
Use Audits and Database Audit Specification
http://msdn.microsoft.com/en-us/library/cc280472.aspx
http://technet.microsoft.com/en-us/library/cc280404.aspx
And you can use EVENT_DATA also
May 13, 2011 at 9:11 am
http://www.microsoft.com/sqlserver/en/us/product-info/competitor-compare.aspx
Transaction Processing Performance Council
http://www.tometasoftware.com/MySQL-5-vs-Microsoft-SQL-Server-2005.asp
Migration Help
http://www.microsoft.com/sqlserver/en/us/product-info/migration-tool.aspx#MySQL
May 13, 2011 at 9:04 am
you need any 1 of them SERVER IP or is there DNS in your organization then SERVER NAME can use also
IP is best
May 13, 2011 at 8:54 am
can create SSIS as well and whole code can be in a single agent job
May 13, 2011 at 8:52 am
schedule a job with email on another SQL Server
exec xp_cmdshell 'ping serverip\servername'
if you not get the ping then email to you otherwise not,I might be schedule on OS level also...
May 13, 2011 at 8:49 am
Diskpart might be help
May 13, 2011 at 8:44 am
Viewing 15 posts - 226 through 240 (of 492 total)