Home > ora 12154 > dblink error ora-12154

Dblink Error Ora-12154

Contents

here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of this site About Us Learn more about Stack Overflow the company Business Learn ora 12154 error in oracle 11g more about hiring developers or posting ads with us Stack Overflow Questions Jobs Documentation Tags Users database link ora 12154 Badges Ask Question x Dismiss Join the Stack Overflow Community Stack Overflow is a community of 4.7 million programmers, just like you, helping ora 12154 tns could not resolve connect identifier specified 11g each other. Join them; it only takes a minute: Sign up on using oracle database link theres an error “ORA-12154 TNS Could not resolve the connect identifier specified” up vote 0 down vote favorite I'm trying to define ora-02085 a database link on oracle 10.2 with connection identifier that throws the error in the question header. I have the connection identifier (service name) in my tnsnames.ora file. I can connect with sqlplus using this service name. no problem. This is the creation sql: create database link dev1.REGRESS.RDBMS.DEV.US.ORACLE.COM connect to user1 identified by pass1 using 'dev1'; select using the link: select * from t_users@dev1; I get: ORA-12154: TNS:could not resolve the connect identifier specified connecting to

Ora-02019: Connection Description For Remote Database Not Found

oracle with sqlplus to the 'unidentified' service (with no problem): sqlplus user1/pass1@dev1 I defined another link to the same database I'm woking in (loopback) - works OK. I read and tried anything I could find about the subject but did not solve this. Any suggestions? oracle database-link share|improve this question edited May 4 '12 at 0:57 BrettAdamsGA 60311122 asked May 2 '12 at 15:36 gold finger 11112 Did you configure SQLNET? If you're using Local naming you may have to add tnsnames to the NAMES.DIRECTORY_PATH in your Oracle Net Profile. You should post both your tnsnames and sqlnet files. –apesa May 2 '12 at 15:50 add a comment| 1 Answer 1 active oldest votes up vote 3 down vote Try: create database link dev1 connect to user1 identified by pass1 using 'dev1'; Also note that a tnsnames.ora entry for dev1 has to exist on the database server that you're linking from. share|improve this answer answered May 2 '12 at 15:39 Phil 1,6501014 thanks Phil. You nailed it with your second note. –gold finger May 3 '12 at 10:37 It's so obvious I'm quite ashamed I didn't think of it. The tnsnames I refered to was of course on my workstation. Thank you very much. –gold finger May 3 '12 at 10:40 add a comment| Your Answer draft saved draft discarded S

Marts and Cubes Data Visualization Training Higher Education Public Sector RFP & RFI Assistance ETL & Data Integration Data Planning & Design Enterprise Data

Create Database Link Oracle

Governance Master Data Management Data Solutions for DevOps Database Lifecycle Management Remote DBA Services Database Support Services Database Upgrades Database Monitoring Database Consulting Database Projects Database Staffing Database Assessment Database Tuning Database Development Database Documentation Complex Database Migrations Rapid Database Deployment Database Source Control Database Automation Data Replication Database Administration Database Lifecycle Management Remote DBA Services Database http://stackoverflow.com/questions/10417010/on-using-oracle-database-link-theres-an-error-ora-12154-tns-could-not-resolve-t Support Services Database Upgrades Database Monitoring Database Consulting Database Projects Database Staffing Database Assessment Database Tuning Database Development Database Documentation Complex Database Migrations Technologies MS SQL Oracle Oracle EBS MySQL mongoDB SharePoint DB2 Enterprise Support ITIL ProcessTiered DeliveryService ManagementOnsite & OffsiteOnshore & OffshoreScope & Service LevelsMonitoring & Ticketing24×7 Delivery Teams Resources Achieving Unified Commerce in the Data-Driven Retail https://www.datavail.com/blog/ora-12154-tnscould-not-resolve-the-connect-identifier-specified/ Industry We’ll discuss how to overcome these roadblocks by creating a robust database infrastructure that supports the new world of unified commerce and gives you a leg-up on the competition. Download TypeBlogs Case Studies Infographics Presentations Service Overviews Videos Webinars White Papers SolutionDatabase Assessments Data Consulting Database Monitoring Database Projects Database Security Database Staffing Database Support Database Upgrades Database Development Database Performance Tuning and Health Checks Remote DBA RoleCIO/CTO Database Manager Developer IT VP/Director Primary DBA TechnologyDB2 MongoDB MS SQL MySQL Oracle Oracle EBS SharePoint Select a resource category below for View All Resources >> Read the Blog About Datavail Leadership TeamNewsEventsCareersCulturePartnersContact Us Home>Blog>ORA-12154: TNS:could not resolve the connect identifier specified ORA-12154: TNS:could not resolve the connect identifier specified By Jeremiah Wilton | In Oracle The error also appears in some versions as: "ORA-12154: TNS:could not resolve service name." When a program needs to connect to an Oracle service via Oracle Networking (SQL*Net), it must look up the connect data for that service somewhere. When the lookup fails, the Orac

CommunityOracle User Group CommunityTopliners CommunityOTN Speaker BureauJava CommunityError: You don't have JavaScript enabled. This tool uses JavaScript and much of it will not work correctly without it enabled. Please turn JavaScript back on and reload this https://community.oracle.com/thread/2188088 page. Please enter a title. You can not post a blank message. Please type your message and try again. More discussions in General Database Discussions All PlacesDatabaseGeneral Database Discussions This discussion is archived 9 Replies Latest reply on Mar 7, 2011 5:58 PM by EdStevens Got error: ORA-12154 when to use a dblink 836048 Mar 4, 2011 7:52 PM ora 12154 Hi, I got an error when I use a dblink created in the database: dev_nap. *** login OSSP database (oracle 9i) in sqlplus SQL> select * from global_name; GLOBAL_NAME ------------------------------------- OSSP *** login dev_nap (oracle 10g 10.2) by sqlplus SQL> select * from global_name; GLOBAL_NAME -------------------------------- DEV_NAP.OPBU.XEROX.COM SQL> CREATE DATABASE LINK OSSP 2 CONNECT TO usog01001 IDENTIFIED BY database link ora jan25hc USING 'OSSP'; Database link created. SQL> select count(*) from TK_SERVICE_ACTIVITY@OSSP; Above info, I login with the same sqlplus. Thanks Helen I have the same question Show 0 Likes(0) 309Views Tags: none (add) databaseContent tagged with database, linkContent tagged with link, oracleContent tagged with oracle This content has been marked as final. Show 9 replies 1. Re: Got error: ORA-12154 when to use a dblink sb92075 Mar 4, 2011 7:55 PM (in response to 836048) post content of tnsnames.ora Like Show 0 Likes(0) Actions 2. Re: Got error: ORA-12154 when to use a dblink 836048 Mar 4, 2011 8:32 PM (in response to sb92075) DEV_NAP_TRIBBLE.CESA.OPBU.XEROX.COM = (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = tribble.cesa.opbu.xerox.com)(PORT = 1521)) ) (CONNECT_DATA = (SID = dev_nap) (SERVER = DEDICATED) ) ) OSSP = (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = ossp_svr.wvdc.xerox.net)(PORT = 1527)) ) (CONNECT_DATA = (SID = ossp) (SERVICE_NAME = ossp) (DB_NAME = ossp) ) ) Like Show 0 Likes(0) Actions 3. Re: Got error: ORA-12154 when to use a dblin

 

Related content

12154 error in toad

Error In Toad table id toc tbody tr td div id toctitle Contents div ul li a href Error Received Logging On To The Standby g a li li a href Error Connecting To a li ul td tr tbody table p Oracle SQL Server PRODUCTSDiscussion Resources Backup Reporter Benchmark Factory Code Tester for Oracle SQL relatedl Navigator SQL Optimizer for IBM DB SQL Optimizer ora toad for Oracle SQL Optimizer for SQL Server SQL Optimizer for SAP toad oracle ora ASE Spotlight on DB LUW Spotlight on Oracle Spotlight on SQL Server Spotlight on SAP ASE ora toad windows

asp net ora 12154 error

Asp Net Ora Error table id toc tbody tr td div id toctitle Contents div ul li a href Ora Error Solution a li li a href Ora Error Informatica a li li a href Ora Error a li li a href Ora Error a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the relatedl workings and policies of this site About Us Learn more ora error in oracle g about Stack Overflow the company Business Learn more about hiring developers

business objects error ora-12154

Business Objects Error Ora- table id toc tbody tr td div id toctitle Contents div ul li a href Error While Trying To Retrieve Text For Error Ora- a li li a href Ora Error Solution a li li a href Ora Tns Could Not Resolve Service Name a li li a href Ora Tns Could Not Resolve Service Name Oracle i a li ul td tr tbody table p SAP BusinessObjects Web IntelligenceWhere is this place located All Places SAP BusinessObjects Web Intelligence Replies Latest reply Jun relatedl AM by Mark Prosser p h id Error While Trying To

crystal reports error ora-12154

Crystal Reports Error Ora- table id toc tbody tr td div id toctitle Contents div ul li a href Ora Tns Error a li li a href Ora Tns Could Not Resolve Service Name a li ul td tr tbody table p SAP Crystal Reports version for Visual StudioWhere is this place located All Places SAP Crystal Reports version for Visual Studio Replies Latest relatedl reply Jan PM by Andrew error while trying to retrieve text for error ora- Paes Tweet Crystal Reports Windows Server ORA- TNS could not resolve the ora error in oracle g connect identifier specified Andrew

database server error ora-12154

Database Server Error Ora- table id toc tbody tr td div id toctitle Contents div ul li a href Error While Trying To Retrieve Text For Error Ora- a li li a href Ora Tns Could Not Resolve Service Name a li li a href Ora Tns No Listener a li ul td tr tbody table p TNS received bad packet type from network layer Cause Internal error Action Not normally visible to the user For further details turn on tracing and reexecute the operation If error persists relatedl contact Worldwide Customer Support ORA- TNS unable to send break message

database error code 12154 ora 12154

Database Error Code Ora table id toc tbody tr td div id toctitle Contents div ul li a href Ora Error In Oracle g a li li a href Ora Tns Could Not Resolve Service Name a li li a href Ora Tns Could Not Resolve The Connect Identifier Specified Xe a li ul td tr tbody table p TNS received bad packet type from network layer Cause Internal error Action Not normally visible to the user For relatedl further details turn on tracing and reexecute the operation database link ora If error persists contact Worldwide Customer Support ORA- TNS

error 12154 ora-12154

Error Ora- table id toc tbody tr td div id toctitle Contents div ul li a href Ora Error a li li a href Ora Tns Could Not Resolve Service Name a li li a href Ora Error In Oracle a li li a href Error Ora a li ul td tr tbody table p SQL TuningSecurityOracle UNIXOracle LinuxMonitoringRemote supportRemote plansRemote servicesApplication Server ApplicationsOracle FormsOracle PortalApp UpgradesSQL ServerOracle ConceptsSoftware SupportRemote Support SPAN Development Implementation Consulting StaffConsulting PricesHelp Wanted Oracle PostersOracle Books Oracle Scripts Ion Excel-DB relatedl Don Burleson Blog P TD TR ora tns could not resolve the connect identifier

error attach server ora-12154

Error Attach Server Ora- table id toc tbody tr td div id toctitle Contents div ul li a href Error While Trying To Retrieve Text For Error Ora- a li li a href Ora Error In Toad a li li a href Ora Tns Error a li li a href Ora Tns No Listener a li ul td tr tbody table p while creating a linked server to Oracle x x x x x x x x x x x x x x x SnehadeepJune This is one relatedl of the most common errors while creating linked p h id

error code ora 12154

Error Code Ora table id toc tbody tr td div id toctitle Contents div ul li a href Ora Tns Could Not Resolve Service Name Oracle i a li li a href Ora Tns Could Not Resolve The Connect Identifier Specified Xe a li ul td tr tbody table p TNS received bad packet type from network layer Cause Internal error Action Not normally visible to the user For further details turn on tracing and reexecute relatedl the operation If error persists contact Worldwide Customer Support ora error in oracle g ORA- TNS unable to send break message Cause Unable

error from recovery catalog database ora-12154

Error From Recovery Catalog Database Ora- table id toc tbody tr td div id toctitle Contents div ul li a href Ora Error In Oracle g a li li a href Rman Ora a li li a href Rman- Error From Recovery Catalog Database a li ul td tr tbody table p ORA- database link ora TNS could not resolve service name message p h id Ora Error In Oracle g p Tue August in lukfai Messages Registered July p h id Rman Ora p Location India Junior Member C set oracle sid katie C net start oracleServiceKatie The OracleServicekatie

error from auxiliary database ora-12154

Error From Auxiliary Database Ora- table id toc tbody tr td div id toctitle Contents div ul li a href Database Link Ora a li li a href Ora Error Solution a li li a href Ora Error a li li a href Ora Error a li ul td tr tbody table p NEWNAME FOR DATAFILE and SET NEWNAME FOR TEMPFILE SET NEWNAME FOR TABLESPACE relatedl SET NEWNAME FOR DATABASE The following variables are p h id Database Link Ora p introduced for SET NEWNAME from gR - b The file name remains ora error in oracle g same as

error ora 12154 could not resolve service name

Error Ora Could Not Resolve Service Name table id toc tbody tr td div id toctitle Contents div ul li a href Ora Tns Could Not Resolve Service Name Oracle i a li li a href Ora Tns Could Not Resolve The Connect Identifier Specified Xe a li li a href Ora Tns Could Not Resolve The Connect Identifier Specified At Oci Call Ociserverattach a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of this site About

error ora 12154 in

Error Ora In table id toc tbody tr td div id toctitle Contents div ul li a href Sqlnet Ora a li li a href Ora Error Toad a li li a href Error While Trying To Retrieve Text For Error Ora a li li a href Ora Error In Oracle a li ul td tr tbody table p while creating a linked server to Oracle x x x x x x x x x x x x x x x SnehadeepJune This is one of the most common errors relatedl while creating linked server to Oracle database Today I

error ora 12154 tns could not resolve the service name

Error Ora Tns Could Not Resolve The Service Name table id toc tbody tr td div id toctitle Contents div ul li a href Ora Tns Could Not Resolve Service Name Oracle i a li li a href Ora Tns Could Not Resolve Connect Identifier Specified g a li li a href System Data Oracleclient Oracleexception Ora Tns Could Not Resolve The Connect Identifier Specified a li li a href Ora Tns Could Not Resolve The Connect Identifier Specified N a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers

error ora-12154 toad

Error Ora- Toad table id toc tbody tr td div id toctitle Contents div ul li a href Ora Toad Windows a li li a href Ora Tns Error a li li a href Ora Toad a li ul td tr tbody table p NoSQL Oracle SQL Server PRODUCTSDiscussion Resources Benchmark Factory Code Tester for Oracle SharePlex SQL Navigator SQL Optimizer relatedl Spotlight Stat Toad Intelligence Central Toad Data Modeler toad oracle ora Toad Data Point Toad Extension for Eclipse Toad for Hadoop Toad for p h id Ora Toad Windows p IBM DB Toad for Oracle Toad for MySQL

error ora 12154 tns could not resolve service name

Error Ora Tns Could Not Resolve Service Name table id toc tbody tr td div id toctitle Contents div ul li a href Ora Tns Could Not Resolve Service Name Oracle i a li li a href Ora Tns Could Not Resolve Service Name Windows a li li a href Ora Tns Could Not Resolve Connect Identifier Specified g a li ul td tr tbody table p TNS received bad packet type from network layer Cause Internal error Action Not normally visible to the user For further details turn on relatedl tracing and reexecute the operation If error persists contact

error ora-12154 oracle

Error Ora- Oracle table id toc tbody tr td div id toctitle Contents div ul li a href Ora Oracle i a li li a href Oracle Ora Database Link a li li a href Ora Oracle a li li a href Ora Oracle a li ul td tr tbody table p server but either failed to contact the server or did not find a relatedl matching service name on that server TNS or oracle error ora 'Transparent Network Substrate' is a transport protocol that allows Oracle sessions to p h id Ora Oracle i p communicate across a network

error ora 12154 tns could

Error Ora Tns Could table id toc tbody tr td div id toctitle Contents div ul li a href Ora Tns Could Not Resolve Service Name Oracle i a li li a href Ora Tns Could Not Resolve The Connect Identifier Specified Xe a li li a href Ora Tns Could Not Resolve Service Name Windows a li li a href Ora Tns Could Not Resolve The Connect Identifier Specified N a li ul td tr tbody table p TNS received bad packet type from network layer Cause Internal error Action Not normally visible to the user For further details

error oracle connection error ora-12154

Error Oracle Connection Error Ora- table id toc tbody tr td div id toctitle Contents div ul li a href Oracle Ora Database Link a li li a href Oracle Odbc Ora a li li a href Oracle Ora a li ul td tr tbody table p TNS received bad packet type from network layer Cause Internal error Action Not normally visible to the user For further details turn on tracing and relatedl reexecute the operation If error persists contact Worldwide Customer ora error in oracle g Support ORA- TNS unable to send break message Cause Unable to send break

ora 12154 database driver error

Ora Database Driver Error table id toc tbody tr td div id toctitle Contents div ul li a href Sqlnet ora Location a li li a href Informatica Oracle Connection String a li ul td tr tbody table p WizardInformatica Cloud for Amazon AWSComplex Event ProcessingProactive Healthcare Decision ManagementProactive MonitoringReal-Time Alert ManagerRule PointData IntegrationB B Data ExchangeB B Data TransformationData Integration HubData relatedl ReplicationData ServicesData Validation OptionFast CloneInformatica PlatformMetadata ManagerPowerCenterPowerCenter ora- tns could not resolve the connect identifier specified in informatica ExpressPowerExchangePowerExchange AdaptersData QualityAddress DoctorAddress Doctor CloudData as a ServiceData informatica repository service ora- ExplorerData QualityData Quality Services Strike Iron

ora 12154 dblink error

Ora Dblink Error table id toc tbody tr td div id toctitle Contents div ul li a href Ora- a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of this site About Us Learn more relatedl about Stack Overflow the company Business Learn more about hiring developers ora tns could not resolve the connect identifier specified g or posting ads with us Stack Overflow Questions Jobs Documentation Tags Users Badges Ask Question x p h id Ora-

ora 12154 tns error in toad

Ora Tns Error In Toad table id toc tbody tr td div id toctitle Contents div ul li a href Ora Toad a li li a href Ora Tns Could Not Resolve Service Name a li ul td tr tbody table p NoSQL Oracle SQL Server PRODUCTSDiscussion Resources Benchmark Factory Code Tester for Oracle SharePlex SQL Navigator SQL Optimizer Spotlight Stat Toad Intelligence Central relatedl Toad Data Modeler Toad Data Point Toad Extension for p h id Ora Toad p Eclipse Toad for Hadoop Toad for IBM DB Toad for Oracle Toad for toad tns admin environment variable is not

ora 12154 error in oracle 11g

Ora Error In Oracle g table id toc tbody tr td div id toctitle Contents div ul li a href Ora- Tns Listener Does Not Currently a li li a href Ora- Oracle c a li li a href Error While Trying To Retrieve Text For Error Ora- a li ul td tr tbody table p to send data Connection probably disconnected Action Reestablish connection If the error is persistent turn relatedl on tracing and reexecute the operation ORA- TNS received ora error in oracle c bad packet type from network layer Cause Internal error Action Not normally ora error

ora 12154 error in oracle forms

Ora Error In Oracle Forms p CommunityOracle User Group CommunityTopliners CommunityOTN Speaker BureauJava CommunityError You don't have JavaScript enabled This tool uses JavaScript and much of it will not work correctly without it enabled Please turn JavaScript back on and relatedl reload this page Please enter a title You can not ora oracle g post a blank message Please type your message and try again More discussions ora tns could not resolve service name in General Database Discussions All PlacesDatabaseGeneral Database Discussions This discussion is archived Previous Next Replies Latest reply on Aug PM by rajeysh Go to original post

ora 12154 error toad

Ora Error Toad table id toc tbody tr td div id toctitle Contents div ul li a href Ora Tns Could Not Resolve Service Name a li li a href Tns admin Environment Variable Is Not Defined a li li a href Tnsnames ora Location a li ul td tr tbody table p NoSQL Oracle SQL Server PRODUCTSDiscussion Resources Benchmark Factory Code Tester for Oracle SharePlex SQL Navigator SQL Optimizer Spotlight Stat Toad Intelligence Central Toad Data Modeler Toad Data Point Toad relatedl Extension for Eclipse Toad for Hadoop Toad for IBM DB Toad ora toad for Oracle Toad for

ora 12154 toad error

Ora Toad Error table id toc tbody tr td div id toctitle Contents div ul li a href Ora Toad a li li a href Tns admin Environment Variable Is Not Defined a li ul td tr tbody table p NoSQL Oracle SQL Server PRODUCTSDiscussion Resources Benchmark Factory Code Tester for Oracle SharePlex SQL Navigator SQL relatedl Optimizer Spotlight Stat Toad Intelligence Central Toad Data p h id Ora Toad p Modeler Toad Data Point Toad Extension for Eclipse Toad for Hadoop ora tns could not resolve service name Toad for IBM DB Toad for Oracle Toad for MySQL Toad