Viewing 15 posts - 31 through 45 (of 48 total)
Try SET XACT_ABORT ON; in the beginning of your code and turn it OFF after that.
November 18, 2011 at 6:35 am
I would use the hint first (nolock) .. if that still doesn't work I would select the rows first into a variable table and after that I would use...
November 4, 2011 at 2:36 am
Is not happy with this sort of parameters: @[first-name]
try: @first_name for example.
February 10, 2011 at 9:50 am
Run this and try your statements again.
sp_configure @configname= 'Ad Hoc Distributed Queries',@configvalue = 1
go
reconfigure
go
September 22, 2010 at 4:05 am
Run this
sp_configure @configname = 'show advanced options',@configvalue = 1
go
reconfigure
go
if u are not able to see all the options.
September 22, 2010 at 3:43 am
Run this
sp_configure @configname = 'show advanced options',@configvalue = 1
go
reconfigure
go
if you are not able to see all the options.
September 22, 2010 at 3:42 am
what are the values for Ad Hoc Distributed Queries ?
September 22, 2010 at 3:40 am
Can you please display the output of this sp_configure.
September 22, 2010 at 3:35 am
Maybe this http://vstoolsforum.com/forums/p/170/366.aspx can help you.
September 22, 2010 at 3:18 am
I would take a look at this sort of things maybe ... :
select ...
from
sys.dm_os_waiting_tasks wtt...
September 15, 2010 at 8:27 am
select top 1 * from fn_dblog(null, null) ?
August 10, 2010 at 2:40 am
There is an interesting documentation here http://technet.microsoft.com/en-us/library/cc280384.aspx, maybe it helps.
April 20, 2010 at 5:09 am
Can you give it a try replacing this line: SET @sql = 'ALTER TABLE #tblPartners ADD [' + @PARTNER_CODE + '_GFF] varchar(20)' ?
April 19, 2010 at 6:39 am
Have you tried to put the 'begin transaction' just after the set @interval = 50000 line ?
April 19, 2010 at 2:03 am
Use this one instead:
select * from sys.all_objects
where
type = 'FN' -- SQL scalar function
April 15, 2010 at 1:17 am
Viewing 15 posts - 31 through 45 (of 48 total)