April 6, 2010 at 4:48 pm
hi guys, i have a sql server linked server with a couple of catalogs, my question is how do i add another catalog to this existing linked server?
April 6, 2010 at 5:05 pm
DBA-640728 (4/6/2010)
hi guys, i have a sql server linked server with a couple of catalogs, my question is how do i add another catalog to this existing linked server?
A 'catalog' is just another name for a database.
You can't add a new database using the linked server sub-tree in Object Explorer, you have to connect to the target server and add the database there.
Or have I misunderstood your question?
Paul White
SQLPerformance.com
SQLkiwi blog
@SQL_Kiwi
April 6, 2010 at 10:06 pm
DBA-640728 (4/6/2010)
hi guys, i have a sql server linked server with a couple of catalogs, my question is how do i add another catalog to this existing linked server?
catalog means database only,
so simply u have to go in security pane of linked server and see which Remote login is used for linked server,
then go to the target server and give required rights on new database to this login,then u can access that new Database thru linked server.
Sanket Ahir
Don't run behind the success, Try to be eligible & success will run behind u......
April 6, 2010 at 10:14 pm
sanketahir1985 (4/6/2010)
...and give required rights on new database to this login...
Just to be clear on this: the login involved is the login used to connect Object Explorer (typically the same login specified in Registered Servers). The permission required to list the database is CONNECT at the database level. Further permissions will be required to enumerate the contents of the 'catalog'.
Paul White
SQLPerformance.com
SQLkiwi blog
@SQL_Kiwi
April 7, 2010 at 11:28 am
unless the linked server is configured with a specific login to use--- if you look at the properties of the linked server it will have defined the security context with which is connects to the remote server. Whatever login is being used, needs to have permissions to the databases you want to see on the remote server.
April 7, 2010 at 6:19 pm
NJ-DBA (4/7/2010)
unless the linked server is configured with a specific login to use--- if you look at the properties of the linked server it will have defined the security context with which is connects to the remote server. Whatever login is being used, needs to have permissions to the databases you want to see on the remote server.
True. Good point.
Paul White
SQLPerformance.com
SQLkiwi blog
@SQL_Kiwi
April 13, 2010 at 8:32 pm
thank you!
April 13, 2010 at 8:33 pm
this worked perfectly , thank uu
Viewing 8 posts - 1 through 7 (of 7 total)
You must be logged in to reply to this topic. Login to reply