Viewing 15 posts - 1 through 15 (of 53 total)
Recompile is not creating new execution plan also its not solving the issues.Only after I run update stats,execution time comes back to normal.
December 3, 2013 at 2:03 pm
Thanks for such a quick response.I don't see any locking or blocking during the issue.I also compared execution plan both before and after and its looks exactly same.
December 3, 2013 at 8:09 am
Thanks for quick response Kevin.Nolock is not an option for us as its not acceptable from business perspective.
October 11, 2007 at 11:02 am
You can use following stored procedure.You can refer books online for more information.
sp_add_job [ @job_name = ] 'job_name'
[ , [ @enabled = ] enabled ]
[ , [ @description...
May 4, 2007 at 12:50 pm
Try something like this and let me know if it works.
USE MyDB
GO
SET IDENTITY_INSERT PrivateDocuments ON
GO
Insert into PrivateDocuments(columna,columnb)
April 30, 2007 at 3:12 pm
Try this.
SET NOCOUNT ON
DECLARE @iFileExists INT
create table #table (File_exists int, File_directory int,parent_dir int)
insert into #table EXEC master..xp_fileexist 'D:\test.txt'
select @iFileExists=File_exists from #table
PRINT @iFileExists
drop table #table
Thanks,
SR
April 25, 2007 at 9:07 am
Thanks for response Bulent.
Even I taught so but one of my peer argues that it will improve performance if we have 2 subscribers on same server on same database and...
April 11, 2007 at 8:14 am
Thanks Andrew.I will check it in sqlteam.com.
I turned on trace but I didn't find anything unusual.
Thanks,
SR
January 25, 2007 at 8:05 am
Hi Andrew,
Is Parameter sniffing is applicable for functions also?
Thanks,
Sree
January 23, 2007 at 8:13 am
Thanks for your response Murphy.Its not a stored procedure its a user defined function.I have seen the excution plan.Its almost same in both QA and Prod server.
I will look into Parameter...
January 22, 2007 at 9:05 am
Thanks for nice explanation Gail.
Thanks,
Sree
December 4, 2006 at 3:20 pm
Thanks for response Gail.How about if I do truncate table which is a non-logged transaction?
Thanks,
SR
November 30, 2006 at 7:33 am
Viewing 15 posts - 1 through 15 (of 53 total)