Viewing 15 posts - 2,011 through 2,025 (of 5,394 total)
No need to change that setting for the moment.
Did you restart SQL Server after exec sp_configure 'remote access', 1?
If not, do it and it will probably fix the issue.
January 26, 2012 at 6:01 am
Joy Smith San (1/26/2012)
How to check is the provider is loaded ?
EXEC master.dbo.sp_MSset_oledb_prop
Check the allow_in_process column. It is 1 for in process, 0 for out of process.
Is there anything else...
January 26, 2012 at 5:12 am
Process explorer can help you identifying who is locking the files.
Probably it's SQL Server (sqlservr.exe).
January 26, 2012 at 5:06 am
Which server product is the linked server? SQL server?
How is the provider loaded? In process or out of process?
January 26, 2012 at 4:49 am
OK, I think I got it.
Sorry for my thick head.
ALTER PROCEDURE [dbo].[sproc_GetPostsByThread](@threadID nvarchar(max))
AS
BEGIN
SET NOCOUNT ON
-- interfering with SELECT statements.
...
January 26, 2012 at 4:36 am
Vague question. Language issue I suppose.
I'm sorry, I guess all you can get is a vague answer:
CREATE TABLE #tempTable (
id int NOT NULL identity(1,1),
...
January 26, 2012 at 4:30 am
These should get you started:
http://msdn.microsoft.com/en-us/library/ms345108(v=sql.90).aspx
January 26, 2012 at 4:26 am
Sorry, try this:
EXECUTE('EXEC database.schema.procedurename') AT linkedservername
January 26, 2012 at 4:23 am
I'm sorry, but I'm getting lost. Too much confusion.
Let's start from scratch.
This is your table:
IF OBJECT_ID('TempDB..#mytable','U') IS NOT NULL
DROP TABLE #mytable
CREATE...
January 26, 2012 at 4:14 am
Did you try:
EXECUTE database.schema.procedurename AT linkedservername
Doe this work?
January 26, 2012 at 4:02 am
This is the results I get.
Level Sequence ...
January 26, 2012 at 3:45 am
Then, it's the session that runs the KILL statement, your current session in SSMS.
Issue a "USE master" command and you should be fine.
January 26, 2012 at 3:34 am
Nope, I already have done that.
Please, copy your code, paste it in a query window in tempdb and execute it. You will see no output for parameter '3'.
January 26, 2012 at 3:29 am
Trigger is on the view in order to allow direct inserts to the table by the service broker procedure.
Stored Procedures calls can work in parallel on the log table, because...
January 26, 2012 at 3:27 am
Viewing 15 posts - 2,011 through 2,025 (of 5,394 total)