Viewing 15 posts - 766 through 780 (of 859 total)
dpt,
I have suggestion to run the performance dash board and find the missing indexes create all the missing indexes and test it in ur testing envorinment.
If it's good go ahead.
December 16, 2009 at 2:52 am
sivark1 (12/15/2009)
During the search in this forum i found one of the solution (Tsql script to move the (x no.of) all ...
December 16, 2009 at 2:24 am
deepzzzz (12/16/2009)
Try with sp_dropserver and sp_addserver stored procedures
Did u see the posted link?
December 16, 2009 at 1:36 am
sivark1 (12/15/2009)
hii searched in google different ways thay r telling
can you pls give the best solution steps to fix this issue
This is high priority issue
Thanks in advance
Hi...
December 15, 2009 at 4:34 am
go google:-P
December 15, 2009 at 2:00 am
jagadeesanpv (12/14/2009)
I have recently installed Microsoft SQL Server 2008 (SP1) - 10.0.2531.0 (Intel X86) on Windows Server 2008
I am getting the following SQL log frequently
Setting database option COMPATIBILITY_LEVEL...
December 15, 2009 at 1:14 am
am-244616 (12/14/2009)
Guys,Is it possible to rename the new instance to be same of the old uninstalled instance?
Hi,
December 14, 2009 at 6:21 am
mahesh.vsp (12/14/2009)
By using manual drop and create index script!SQL Server version 2000.
Then why u r posting in 2005 forum.
--Please post the 2000 related question in 2000 forum
December 14, 2009 at 5:53 am
Hi,
How u r rebuild the indexes through maintenance plan ?
How to verify that an index has been rebuilt. Is there any updated time so that we can come know...
December 14, 2009 at 4:06 am
Hi,
Please can u send me the actual execution plan
the "select into" selects from tables in one database into tables in another database. Did something change in SQL 2008 that would...
December 12, 2009 at 4:40 am
haichells (12/11/2009)
I am trying to execute some script in a list of dbs. i wrote a generic script to change the db which is not working. Please find below the...
December 11, 2009 at 8:53 am
Hi ,
Look the MS Article about tail of log backup
Also read the gail's article
Managing Transaction Logs[/url]
Edited:Post the correct URL
December 11, 2009 at 5:24 am
DECLARE @cmdstr varchar(200)
Declare @path varchar (100)
set @path = 'D:\ppc_auctions.txt'
SET @cmdstr = 'bcp "select sku,auction_type_id from auctions where status_id = 2" queryout ' + @path + ' -t"," -c -T'
print @cmdstr
EXEC...
December 11, 2009 at 4:29 am
Hi,
Try the following example
DECLARE @cmdstr varchar(100)
SET @cmdstr = 'bcp "select name,id from sys.sysobjects where id >200" queryout "D:\ppc_auctions.txt" -t"," -c -T'
print @cmdstr
EXEC master..xp_cmdshell @CMDstr
--Don't break the select statement (Write in...
December 11, 2009 at 4:28 am
sp_updatestats and dbcc updateusage
They are completely unrelated and do totally different things.
sp_updatestats runs a statistics update (using UPDATE STATISTICS) across all the statistics in the database where the underlying table...
December 11, 2009 at 3:44 am
Viewing 15 posts - 766 through 780 (of 859 total)