Hi
I have a problem with performance when I execute proc against linked Sybase
Server.
Here is a strings I used to add a server:
sp_addlinkedserver N'hetco_sybase', ' ', N'MSDASQL', N'hetco_sybase'
sp_addlinkedsrvlogin N'hetco_sybase', false, null, N'sa', 'sa_password'
Execute of proc is taking a second when it run directly on Sybase, is taking
about 20 sec.
I've never noticed any network problems in our environment before.
Any ideas?
Does anybody know a better alternative to connect to Sybase?Try the instructions on the sybase website for creating a linked server.
"Gene." <Gene@.discussions.microsoft.com> wrote in message
news:C26C4E8F-D554-47E8-B207-04AF2A6954A9@.microsoft.com...
> Hi
> I have a problem with performance when I execute proc against linked
Sybase
> Server.
> Here is a strings I used to add a server:
> sp_addlinkedserver N'hetco_sybase', ' ', N'MSDASQL', N'hetco_sybase'
> sp_addlinkedsrvlogin N'hetco_sybase', false, null, N'sa', 'sa_password'
> Execute of proc is taking a second when it run directly on Sybase, is
taking
> about 20 sec.
> I've never noticed any network problems in our environment before.
> Any ideas?
> Does anybody know a better alternative to connect to Sybase?
Showing posts with label sp_addlinkedserver. Show all posts
Showing posts with label sp_addlinkedserver. Show all posts
Wednesday, March 28, 2012
Poor Linked Sybase Server performance
Monday, March 12, 2012
Pls Help - Urgent handling "-" in query
Hi,
i am using sp_addlinkedserver to connect with my another server.
Let say my current server name is anand and other server name is anand-new
now sp_addlinkedserver worked ok
Now i want to fetch some record from the anand-new server.
I am writing my query in I server (i.e. Anand)
SELECT TOP 10 * FROM anand-new.NEWSITE.DBO.Xyz_NEW
I am getting error
Server: Msg 170, Level 15, State 1, Line 1
Line 1: Incorrect syntax near '-'.
Pls help
Its urgent
Cheers,
AnandSELECT TOP 10 * FROM [anand-new.NEWSITE.DBO.Xyz_NEW]|||Sounds like you (or your DBA) should avoid using such characters in server names! I hate seeing SQL that is full of square brackets!
i am using sp_addlinkedserver to connect with my another server.
Let say my current server name is anand and other server name is anand-new
now sp_addlinkedserver worked ok
Now i want to fetch some record from the anand-new server.
I am writing my query in I server (i.e. Anand)
SELECT TOP 10 * FROM anand-new.NEWSITE.DBO.Xyz_NEW
I am getting error
Server: Msg 170, Level 15, State 1, Line 1
Line 1: Incorrect syntax near '-'.
Pls help
Its urgent
Cheers,
AnandSELECT TOP 10 * FROM [anand-new.NEWSITE.DBO.Xyz_NEW]|||Sounds like you (or your DBA) should avoid using such characters in server names! I hate seeing SQL that is full of square brackets!
Subscribe to:
Posts (Atom)