Viewing 15 posts - 16 through 30 (of 40 total)
found nice webcast on creating linked server on ssc.
January 25, 2012 at 10:02 pm
Chrissy321 (1/25/2012)
Hello All,How can I alter this convert statement to return 1/25/2012 rather than 01/25/2012.
Or return 1/1/2012 rather than 01/01/2012
SELECT CONVERT(varchar(10),getdate(),101)
Thanks if you can help.
This may help you.
Declare @x varchar(100)
SELECT...
January 25, 2012 at 9:57 pm
Have look on this article.
http://www.sqlmag.com/article/product-review/sql-server-backup-compression-shootout
January 25, 2012 at 11:08 am
This will resolve after Setting database option "TRUSTWORTHY" on
ALTER DATABASE <database_name> SET TRUSTWORTHY ON
January 25, 2012 at 10:48 am
no need to move system databases. is there any specific requirement? you can script out the logins , permissions and Sql jobs and deploy it to your new partition.
Please check...
January 25, 2012 at 3:54 am
Simha24 (1/25/2012)
what type necessary things i need to taken care to resolve this issue.
-- My developer are not build...
January 25, 2012 at 3:48 am
you need to change DTC configuration setting. please check this link for more details.
January 25, 2012 at 2:47 am
Here are some queries to get memory usage details.
SELECT cntr_value/1024 as 'Memory used in mb'
from master.dbo.sysperfinfo
where object_name = 'SQLServer:Memory Manager' and
counter_name = 'Total Server Memory (KB)'
DBCC memorystatus() --this gives overall...
January 25, 2012 at 2:43 am
nice blog on this topic.
http://sqlblog.com/blogs/linchi_shea/archive/2008/03/03/is-the-8kb-page-obsolete-or-aging.aspx
January 25, 2012 at 2:19 am
its really a nice article. I will update this thing in our contingency check-list document.
January 25, 2012 at 2:00 am
welcome 🙂
January 25, 2012 at 1:02 am
Satya_0000 (1/25/2012)
this will help me,Thank you very much .
Welcome 🙂
January 25, 2012 at 12:09 am
Viewing 15 posts - 16 through 30 (of 40 total)