How would I create a database alias name for the following database
testingdatabase .com
This database exisist on a remote server. I have tried using the database
name as
server.[testingdatabase .com].dbo.table
were server is a linked server using sp_addlinkedser ver
[testingdatabase .com] is the database name
dbo is the instantance
table is the name of the table.
using select * from server.[testingdatabase .com].dbo.table producing the
following error.
unspecified error
I cannot change or rename the database for many reason's (Original programer
hardcoded this in a compiled app) don't have access to source code anyway.
I have not found any docs on database alias, found docs for server / tables
etc.
Thanks
Conrad
testingdatabase .com
This database exisist on a remote server. I have tried using the database
name as
server.[testingdatabase .com].dbo.table
were server is a linked server using sp_addlinkedser ver
[testingdatabase .com] is the database name
dbo is the instantance
table is the name of the table.
using select * from server.[testingdatabase .com].dbo.table producing the
following error.
unspecified error
I cannot change or rename the database for many reason's (Original programer
hardcoded this in a compiled app) don't have access to source code anyway.
I have not found any docs on database alias, found docs for server / tables
etc.
Thanks
Conrad
Comment