Viewing 15 posts - 691 through 705 (of 1,129 total)
From my past experience on bulk insert, the account under which the sql service is running on source should have full access (or atleast bulk import access) on the db...
February 10, 2011 at 1:11 pm
GilaMonster (2/10/2011)
sqldba_icon (2/10/2011)
February 10, 2011 at 11:20 am
GilaMonster (2/10/2011)
There is a recompile hint, but please don't start using hints unless you know what's causing...
February 10, 2011 at 10:42 am
pankushmehta (2/7/2011)
select percent_complete, estimated_completion_time/60000.0 'EstimatedMinutesRemaining'
, *
from sys.dm_exec_requests
where command like 'backup%'
However, the Estimated_Completion_Time is not an accurate figure. It does give me a close enough figure on how long...
February 9, 2011 at 10:25 pm
SKYBVI (2/8/2011)
select es.session_id,es.status,wt.exec_context_id,wt.wait_type,wt.blocking_session_id,wt.blocking_exec_context_id, wt.resource_description, wt.wait_duration_msfrom sys.dm_exec_sessions es
inner join sys.dm_os_waiting_tasks wt on es.session_id = wt.session_id
where es.is_user_process = 1
Regards,
Sushant
Thank Sushant. This doesn't give what i need.I need to findout how much more...
February 9, 2011 at 10:22 pm
From one of the Microsoft sessions which i recently attended, i was told that Microsoft doesn't recommend more than 30 databases per instance to be setup for mirroring.
February 9, 2011 at 3:49 pm
Grant Fritchey (2/9/2011)
February 9, 2011 at 1:15 pm
Thanks Grant. We are actually using UDF's inside the procedure. There is a table scan going inside the UDF. How do i fix that?
February 9, 2011 at 8:29 am
TheSQLGuru (2/9/2011)
1) run your query on both servers with HARD-CODED input values instead of parameters.
2) run query on both servers...
February 9, 2011 at 8:27 am
Grant Fritchey (2/8/2011)
sqldba_icon (2/8/2011)
i) In my proc i have the following options set up
Set ANSI_NULLS ON
go
SET QUOTED_IDENTIFIERS ON
go
Set Transaction isolation level read uncommitted
SET NOCOUNT ON
ii)...
February 8, 2011 at 5:47 pm
Two updates on the same question,
i) In my proc i have the following options set up
Set ANSI_NULLS ON
go
SET QUOTED_IDENTIFIERS ON
go
Set Transaction isolation level read uncommitted
SET NOCOUNT ON
ii) This article ...
February 8, 2011 at 3:32 pm
Grant Fritchey (2/8/2011)
February 8, 2011 at 2:54 pm
actually i think it is more of data related. Because when i run my tests against two days old data it does seek and if i do it against current...
February 8, 2011 at 2:01 pm
Thanks Gail. The exec plan has all the table names and database names. I am little hesistant to send it that way. What do you suggest?
February 8, 2011 at 1:44 pm
I just copied a recent full backup and still the same index is used but one does index scan and other does index seek? How can that be possible...
February 8, 2011 at 12:17 pm
Viewing 15 posts - 691 through 705 (of 1,129 total)