Home > dbd error > dbd error ocisessionbegin perl

Dbd Error Ocisessionbegin Perl

Contents

Q&A Tutorials Poetry RecentThreads NewestNodes Donate What'sNew on Aug 05, 2009 at 09:28UTC ( #786017=perlquestion: print w/replies, xml ) Need Help?? laminee has asked for the wisdom of the Perl Monks perl dbi connect oracle service name concerning the following question: Hi Monks, I am trying to replicate

Ora-01017: Invalid Username/password; Logon Denied (dbd Error: Ocisessionbegin)

the sqlplus '/as sysdba' connection using DBI and DBD::Oracle by following the guidelines from http://search.cpan.org/~pythian/DBD-Oracle-1.23/Oracle.pm#Connect_Attributes. My tnsnames.ora dbi connect dbi oracle is like this: #Generated tnsnames.ora by gen_tnsnames.sh script #Localnode service connectivity ABCD12.COMPANYDOMAIN.COM = (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = testserver24.companydomain.co +m )(PORT = 30710))

Perl Dbd Oracle

) (CONNECT_DATA = (INSTANCE_NAME = ABCD12) (SERVICE_NAME = ABCD12.COMPANYDOMAIN.COM) ) ) [download] and I have no problem connecting with the usual sqlplus '/as sysdba'. I am doing the following in my script: use DBI; use DBD::Oracle qw(:ora_session_modes); my $dsn = "dbi:Oracle:"; #$ENV{ORACLE_SID} = "ABCD12"; $ENV{ORACLE_SID} = "ABCD12.COMPANYDOMAIN.COM"; delete $ENV{TWO_TASK}; my $dbh = DBI->connect($dsn, "", "", { ora_session_mode => ORA_SYSDBA +}); [download] and getting the error: DBI connect('','',...) failed: ORA-12545: Connect failed because targe +t host or object does not exist (DBD ERROR: OCIServerAttach) [download] Specifying ORACLE_SID with/without the domain name doesn't change the error message. I have checked that $TNS_ADMIN is defined and the host name is present in /etc/hosts. What am I doing wrong here? Thanks, AniComment on Connecting 'as sysdba' using DBD::OracleSelect or Download Code Replies are listed 'Best First'. Re: Connecting 'as sysdba' using DBD::Oracle by tweetiepooh (Friar) on Aug 05, 2009 at 11:08UTC Try $dsn = "dbi:Oracle:ABCD12"; [download] and make sure that sqlnet.ora has NAMES.DEFAULT_DOMAIN = COMPANYDOMAIN.COM [download] [reply][d/l][select] Re^2: Connecting 'as sysdba' using DBD::Oracle by laminee (Novice) on Aug 05, 2009 at 11:38UTC With $dsn = "dbi:Oracle:DS8CC2"; [download] or $dsn = "dbi:Oracle:DS8CC2.ORACLEOUTSOURCING.COM"; [download] the error becomes DBI connect('DS8CC2','',...) failed: ORA-01031: insufficient privilege +s (DBD ERROR: OCISessionBegin) [download] and DBI connect('DS8CC2.ORACLEOUTSOURCING.COM','',...) failed: ORA-01031: +insufficient privileges (DBD ERROR: OCISessionBegin) [download] respectively. But as I mentioned, there's no issue while connecting

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 more about hiring developers or posting ads with us Stack Overflow Questions Jobs Documentation Tags Users Badges Ask Question x Dismiss Join the Stack Overflow Community Stack Overflow is a community of 4.7 million programmers, just like you, helping each other. Join them; it only takes a minute: Sign up Perl DBI connecting to Oracle 12c up vote 0 down vote favorite I'm http://www.perlmonks.org/index.pl?node_id=786017 using Perl DBI & trying to connect to Oracle 12c. I get an error: DBI connect('host=serverip;sid=comms;port=1521','comms',...) failed: ORA-28040: No matching authentication protocol (DBD ERROR: OCISessionBegin) My connection is: DBI->connect($connectionString, $user, $passwd,{PrintError=>1, RaiseError=>1, AutoCommit=>1}) Would like to know if DBI can connect to Oracle 12c? Should I change to use something else? Am new to Perl, so any help very much appreciated. Thank You. oracle perl dbi oracle12c share|improve this question http://stackoverflow.com/questions/28935996/perl-dbi-connecting-to-oracle-12c asked Mar 9 '15 at 5:58 njihan 313 add a comment| 2 Answers 2 active oldest votes up vote 0 down vote accepted Seems like an issue with the sqlnet.ora file. The parameters might not be same for the sqlnet.ora file in the client-side and server-side. Since you have not posted all the details, there could be more than one issue. however, the most common is the SQLNET.ALLOWED_LOGON_VERSION. Read the Database Net Services Reference documentation for more details on Parameters for the sqlnet.ora File. share|improve this answer answered Mar 9 '15 at 6:27 Lalit Kumar B 26.9k82547 Thank you for your reply. Added SQLNET.ALLOWED_LOGON_VERSION = 8 & able to connect now. –njihan Mar 9 '15 at 7:52 You're welcome. Thanks for the feedback. –Lalit Kumar B Mar 9 '15 at 7:54 add a comment| up vote 0 down vote The connection string is always of the form: "dbi:Oracle:" There are several ways to identify a database: If the database is local, specifying the SID or service name will be enough. If the database is defined in a TNSNAMES.ORA file, you can use the service name given in the file To connect without TNSNAMES.ORA file, you can use an EZCONNECT url, of the form: //host[:port][/service_na

= DBI->connect( "dbi:Oracle:orcl", "SYS", "sys", {ora_session_mode =>ORA_SYSDBA,RaiseError => 1,AutoCommit => 0 })or die "Can't open orcl database: $DBI::errstr"; my $dbh = DBI->connect( "dbi:Oracle:orcl", "SYS", "sys", {RaiseError http://ora10gadmin.blogspot.com/2013/03/dbi-connectorclsys-failed-ora-28009.html => 1,AutoCommit => 0 })or die "Can't open $db_name database: $DBI::errstr"; https://books.google.com/books?id=ZxEL-FO4u7wC&pg=PA237&lpg=PA237&dq=dbd+error+ocisessionbegin+perl&source=bl&ots=6ew2tfiFb9&sig=trzXxDGShG1qvmRc8bUspK_BA5w&hl=en&sa=X&ved=0ahUKEwjpycrGmL7PAhVjpIMKHcHHANwQ6AEIVDAH Error Msg: DBI connect('orcl','sys',...) failed: ORA-28009: connection as SYS should be as SYSDBA or SYSOPER (DBD ERROR: OCISessionBegin) Solution: Use the below updated script to connect oracle DB using Perl (SYSDBA role): #!/usr/bin/perluse strict ; use DBI;use Getopt::Long qw(:config no_ignore_case);#use DBD::Oracle qw(ora_session_modes);my $dbh = DBI->connect( "dbi:Oracle:orcl", "SYS", dbd error "sys", {ora_session_mode =>2,RaiseError => 1,AutoCommit => 0 })or die "Can't open $db_name database: $DBI::errstr";my $sth = $dbh->prepare( "SELECT * FROM dba_tables" ) or die "Can't prepare SQL statement: $DBI::errstr\n"; ### Execute the statement in the database $sth->execute or die "Can't execute SQL statement: $DBI::errstr\n"; ### Retrieve the returned rows of data my @row; while ( @row = $sth->fetchrow_array( ) ) dbd error ocisessionbegin { print "Row: @row\n"; } warn "Data fetching terminated early by error: $DBI::errstr\n" if $DBI::err;$dbh->disconnect or warn "Error disconnecting: $DBI::errstr\n"; exit; Posted by sumit Tyagi at 11:23 Email ThisBlogThis!Share to TwitterShare to FacebookShare to Pinterest Labels: Perl-OCI Newer Post Older Post Home Subscribe to: Post Comments (Atom) About Me sumit Tyagi View my complete profile Blog Archive ► 2016 (29) ► Oct (1) ► Sep (6) ► Aug (1) ► Jul (6) ► May (4) ► Mar (9) ► Jan (2) ► 2015 (73) ► Dec (5) ► Nov (1) ► Oct (3) ► Sep (4) ► Aug (3) ► Jul (9) ► Jun (7) ► May (8) ► Apr (7) ► Mar (12) ► Feb (7) ► Jan (7) ► 2014 (33) ► Dec (22) ► Nov (8) ► Aug (1) ► May (1) ► Jan (1) ▼ 2013 (21) ► Nov (1) ► Sep (1) ► Jul (2) ► May (1) ► Apr (2) ▼ Mar (6) Do You Have a Wait Problem? Maximize the Data Up-Load Performance in Oracle Tablespace usage report (w/ autoextend)

from GoogleSign inHidden fieldsBooksbooks.google.com - Secrets of the Oracle Database is the definitive guide to undocumented and partially-documented features of the Oracle Database server. Covering useful but little-known features from Oracle Database 9 through Oracle Database 11, this book will improve your efficiency as an Oracle database administrator...https://books.google.com/books/about/Secrets_of_the_Oracle_Database.html?id=ZxEL-FO4u7wC&utm_source=gb-gplus-shareSecrets of the Oracle DatabaseMy libraryHelpAdvanced Book SearchBuy eBook - $47.39Get this book in printApress.comAmazon.comBarnes&Noble.comBooks-A-MillionIndieBoundFind in a libraryAll sellers»Secrets of the Oracle DatabaseNorbert DebesApress, Aug 3, 2010 - Computers - 450 pages 0 Reviewshttps://books.google.com/books/about/Secrets_of_the_Oracle_Database.html?id=ZxEL-FO4u7wCSecrets of the Oracle Database is the definitive guide to undocumented and partially-documented features of the Oracle Database server. Covering useful but little-known features from Oracle Database 9 through Oracle Database 11, this book will improve your efficiency as an Oracle database administrator or developer. Norbert Debes shines the light of day on features that help you master more difficult administrative, tuning, and troubleshooting tasks than you ever thought possible.Finally, in one place, you have at your fingertips knowledge that previously had to be acquired through years of experience and word of mouth through knowing the right people. What Norbert writes is accurate, well-tested, well-illustrated by clear examples, and sure to improve your ability to make an impact on your day-to-day work with Oracle. Preview this book » What people are saying-Write a reviewWe haven't found any reviews in the usual places.Selected pagesTitle PageTable of ContentsIndexContentsCHAPTER 1 Partially Documented Parameters 3 CHAPTER 2 Hidden Initialization Parameters 29 PART 2 Data Dictionary Base Tables 40 CHAPTER 3 Introduction to Data Dictionary Base Tables 41 CHAPTER 4 IND VOBJECT_USAGE and Index Monitoring 45 PART 3 Events 56 CHAPTER 5 Event 10027 and Deadlock Diagnosis 57 CHAPTER 6 Event 10046 and Extended SQL Trace 61 Oracle 223 CHAPTER 23 Application Instrumentation and EndtoEnd Tracing 251 PART 8 Performance 268 CHAPTER 24 Extended SQL Trace File Format Reference 271 CHAPTER 25 Statspack 311 CHAPTER 26 Integrating Extended SQL Trace and AWR 345 CHAPTER 27 ESQLTRCPROF Extended SQL Trace Profiler 351 CHAPTER 28 The MERITS Performance Optimization Method&#

 

Related content

dbd error ocistmtfetch

Dbd Error Ocistmtfetch p representation of strings Message ID D easysoft com E R wrote Alright so here's another mystery use DBI relatedl ENV NLS LANG AMERICAN AMERICA WE ISO P dbh DBI- connect c chr print result select scalar SELECT FROM DUAL WHERE ' c' chr n The select scalar subroutine merely returns the first column of the first row of the query The above code emits result However if I change NLS LANG to AMERICAN AMERICA US ASCII it emits result Is there another NLS LANG setting I should use or should I check my versions of OCI

dbd error code 20

Dbd Error Code table id toc tbody tr td div id toctitle Contents div ul li a href Dbd Error Ocistmtexecute a li li a href Sqlite Error Messages a li li a href How To Fix Error Code a li ul td tr tbody table p their respective owners in the US and other countries Privacy Policy Legal Steam relatedl Subscriber Agreement Refunds STORE Featured Explore Curators dbd error error possibly near indicator Wishlist News Stats COMMUNITY Home Discussions Workshop Greenlight Market Broadcasts ABOUT p h id Dbd Error Ocistmtexecute p SUPPORT Install Steam login language Bulgarian e tina

dbd error ociserver

Dbd Error Ociserver table id toc tbody tr td div id toctitle Contents div ul li a href Tns No Listener Dbd Error Ociserverattach a li li a href Ociserverattach Failed Ora Tns No Listener a li li a href Ora Dbd Error Ociserverattach a li ul td tr tbody table p listener DBD ERROR OCIServerAttach message Tue September babble Messages Registered July Location new york Junior Member Hi Gurus relatedl OS Red Hat Enterprise Linux Oracle dbd error ociserverattach ora I Installed OEM And when I'm trying to connect to DB through p h id Tns No Listener Dbd

dbd error ocisessionbegin

Dbd Error Ocisessionbegin table id toc tbody tr td div id toctitle Contents div ul li a href Ora Insufficient Privileges Dbd Error Ocisessionbegin a li li a href Error Ora The Account Is Locked a li li a href Ora- The Account Is Locked Oracle g a li ul td tr tbody table p friend Failed to connect to database instance DBD ERROR OCISessionBegin message Fri October masoodnt Messages Registered October Junior relatedl Member I'm trying to connect to remote database from oracle exception ocisessionbegin enterprise manager the connection is going fine but when i try ora invalid username

dbd error ocisessionend during global destruction

Dbd Error Ocisessionend During Global Destruction p Q A Tutorials Poetry RecentThreads NewestNodes Donate What'sNew on Mar at UTC perlquestion print w replies xml Need Help guice has asked for the wisdom of the relatedl Perl Monks concerning the following question Anybody have any problems with Parallel ForkManager or maybe even DBI eating up resources I currently run a script that forks upto children using ForkManager with upto a total children by the time it's done When I run a big load my CPU load slowly climbs from to over by the time it finishes Once the whole script is

dbd error ociserverattach ora-12541

Dbd Error Ociserverattach Ora- p for Help Receive Real-Time Help Create a Freelance Project Hire for a Full Time Job Ways to Get relatedl Help Ask a Question Ask for Help Receive Real-Time Help Create a Freelance Project Hire for a Full Time Job Ways to Get Help Expand Search Submit Close Search Login Join Today Products BackProducts Gigs Live Careers Vendor Services Groups Website Testing Store Headlines Experts Exchange Questions ORA- TNS no listener DBD ERROR OCIServerAttach Want to Advertise Here Solved ORA- TNS no listener DBD ERROR OCIServerAttach Posted on - - Oracle Database Verified Solution Comments Views

dbd error ocisessionbegin at t/10general.t line 22

Dbd Error Ocisessionbegin At T general t Line p View Threaded Feb PM Post of views Permalink make relatedl fixdeps unable to fix DBD Oracle MISSING Fails with ORA- Hi all As a background I'm quite familiar with Oracle and mostly know my way with Linux too but I've no experience on PERL nor RT before What I'm trying to do is install RT on Oracle Linux and configure it to use an existing remote Oracle g database I've used this installation document http requesttracker wikia com wiki CentOS InstallPlusSome as my guideline with minor differences in versions etc and

dbd error

Dbd Error table id toc tbody tr td div id toctitle Contents div ul li a href Dbd Error Ociserverattach a li li a href Dbd Error Ocisessionbegin a li li a href Perl Dbi Connect a li ul td tr tbody table p PerlNews Q A Tutorials Poetry RecentThreads NewestNodes Donate What'sNew on Mar at UTC relatedl perlquestion print w replies xml Need Help dbd error error possibly near indicator suhailck has asked for the wisdom of the Perl Monks dbd error ocistmtexecute concerning the following question Hi Im new to perl and i wrote a script for oracle

dbd error log

Dbd Error Log table id toc tbody tr td div id toctitle Contents div ul li a href Dbd Error Ocistmtexecute a li li a href Dbd Error Ocisessionbegin a li li a href Perl Dbi Trace a li li a href Dbi trace a li ul td tr tbody table p the answer generally runs along the lines of Why aren't you performing error checking Sure enough nine out of ten relatedl times when error checking is added the exact error message dbd error error possibly near indicator appears and the cause for error is obvious Automatic Versus Manual

dbd error ociserverattach ora 12154

Dbd Error Ociserverattach Ora p here for a quick overview of the site Help Center Detailed answers to any questions relatedl you might have Meta Discuss the workings and failed to connect to database instance ora- tns no listener dbd error ociserverattach policies of this site About Us Learn more about Stack Overflow the company ora- tns could not resolve the connect identifier specified Business Learn more about hiring developers or posting ads with us Stack Overflow Questions Jobs Documentation Tags Users Badges Ask Question x Dismiss Join the Stack Overflow Community Stack Overflow is a community of million programmers

dbd error ociserverattach windows

Dbd Error Ociserverattach Windows p Perl Lists Python Lists PHP Lists relatedl Ruby Lists Tcl Lists ActiveState Lists Lists raquo perl-dbi-users Re ORA- DBD ERROR OCIServerAttach From Charles Seelig csee penrose com Wed Sep - - TNS ADMIN is not set in either the registry or environment - Not run by web server only from the command line CS Jeff Urlwin wrote Chances are something is wrong in the registry or environment Is there a TNS ADMIN set anywhere Are you running under a web server when it's not working Jeff Greetings Context Windows XP client Perl This is perl

dbd error ociserverattach agent

Dbd Error Ociserverattach Agent table id toc tbody tr td div id toctitle Contents div ul li a href Environment Variable Oracle unqname Not Defined Please Set Oracle unqname To Database Unique Name a li li a href Ora- Tns protocol Adapter Error a li ul td tr tbody table p here relatedl for a quick overview of the site agent connection to instance failed ora Help Center Detailed answers to any questions you might enterprise manager is not able to connect to the database instance have Meta Discuss the workings and policies of this site About Us Learn more

dbd error ocistmtprepare

Dbd Error Ocistmtprepare table id toc tbody tr td div id toctitle Contents div ul li a href Database Error Ora- Invalid Length Specified For Statement a li ul td tr tbody table p Rejected bugs Report a new bug Preferred bug tracker Please visit the preferred bug tracker to report your relatedl issue This queue is for tickets about the DBD-Oracle ora- CPAN distribution Report information The Basics Id Status stalled Priority p h id Database Error Ora- Invalid Length Specified For Statement p Queue DBD-Oracle People Owner Nobody in particular Requestors dflewelling epsilon com Cc AdminCc Bug Information

dbd error ocienvinit

Dbd Error Ocienvinit p DBD ERROR OCIEnvInit Message ID c ae- b - a - fc - eacba bbee n g prg googlegroups com Hello List I have seen several such messages and tried to gather as much wisdom as I could from those but I still can not get it to work Would appreciate someone helping with this Here is the scenario Running following perl script on Microsoft Windows XP Professional Version Service Pack Build C Nishi Perl perl tst pl DBI connect 'host myHost SID sid ' 'myUser' failed DBD ERROR OCIEnvInit at tst pl line DBD ERROR

dbd error ociserverattach 11g

Dbd Error Ociserverattach g table id toc tbody tr td div id toctitle Contents div ul li a href Failed To Connect To Database Instance Ora- Tns no Listener dbd Error Ociserverattach a li li a href Ns Main Err Code a li ul td tr tbody table 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 relatedl without it enabled Please turn JavaScript back on ora- tns connection closed error and reload this page Please enter a title You can not p

dbd error ociserverattach

Dbd Error Ociserverattach table id toc tbody tr td div id toctitle Contents div ul li a href Tns No Listener Dbd Error Ociserverattach a li li a href Dbd Error Ociserverattach Perl a li li a href Dbd Error Ocisessionbegin a li ul td tr tbody table p listener DBD ERROR OCIServerAttach message Tue September babble Messages Registered July Location new york Junior Member Hi Gurus OS Red relatedl Hat Enterprise Linux Oracle I Installed dbd error ociserverattach ora OEM And when I'm trying to connect to DB through URL I get p h id Tns No Listener Dbd

dbd error ora-01406

Dbd Error Ora- p Blog Extensions Documentation Community Development Tasks Download Support You are here Foswiki Support Web SupportQuestions Question Jan relatedl MichaelDaum Edit AttachThis question about This website Task filed Oracle Long Column Type I got this oracle error while using the SqlPlugin ERROR DBD Oracle st fetchrow hashref failed ORA- A Truncation or null fetch error occurred DBD ERROR ORA- error on field of ora type LongReadLen too small and or LongTruncOk not set for Statement select view name text from all views As a workaround I patched lib Foswiki Plugins SqlPlugin Connection pm by adding the following

dbd error ocistmtexecute/describe

Dbd Error Ocistmtexecute describe p Q A Tutorials Poetry RecentThreads NewestNodes Donate What'sNew on Jun at UTC perlquestion print w replies xml Need Help eugemz has asked for relatedl the wisdom of the Perl Monks concerning the following question I need help I can not even count the number of hours that I use to find a solution for this problem I m just giving up I have a perl program that process text files and insert the data in a DB In this case is running in linux ubuntu and Oracle g DB I use DBD Oracle Version and

dbd error ociserverattach em

Dbd Error Ociserverattach Em p listener DBD ERROR OCIServerAttach message Tue September babble Messages Registered relatedl July Location new york Junior Member Hi Gurus OS Red Hat Enterprise Linux Oracle I Installed OEM And when I'm trying to connect to DB through URL I get error message ORA- TNS no listener DBD ERROR OCIServerAttach My listener is also up Can somebody help me to troubleshoot this problem Regards Report message to a moderator Re ORA- TNS no listener DBD ERROR OCIServerAttach message is a reply to message Tue September Arju Messages Registered June Location Dhaka Bangladesh Mobile Senior Member This

ocisessionbegin error

Ocisessionbegin Error table id toc tbody tr td div id toctitle Contents div ul li a href Ora- The Account Is Locked dbd Error Ocisessionbegin a li li a href Ociserverattach a li li a href Ora- a li li a href Dbsnmp a li ul td tr tbody table p relatedl Thu October dba failed to connect to database instance ora the password has expired dbd error ocisessionbegin Messages Registered August Location Delhi Senior p h id Ora- The Account Is Locked dbd Error Ocisessionbegin p Member Hi I'm new to OEM When login i'm getting error ora- the

ora-12154 dbd error ociserverattach

Ora- Dbd Error Ociserverattach table id toc tbody tr td div id toctitle Contents div ul li a href Failed To Connect To Database Instance Ora- Tns no Listener dbd Error Ociserverattach a li li a href Ora- Tns could Not Resolve The Connect Identifier Specified a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any relatedl questions you might have Meta Discuss the workings p h id Failed To Connect To Database Instance Ora- Tns no Listener dbd Error Ociserverattach p and policies of this site About

ora-12541 dbd error ociserverattach

Ora- Dbd Error Ociserverattach p listener DBD ERROR OCIServerAttach message Tue September babble Messages Registered July Location relatedl new york Junior Member Hi Gurus OS Red ora tns no listener but listener is running Hat Enterprise Linux Oracle I Installed OEM And failed to connect to database instance ora- tns no listener dbd error ociserverattach when I'm trying to connect to DB through URL I get error message ORA- TNS no listener DBD lsnrctl command not found ERROR OCIServerAttach My listener is also up Can somebody help me to troubleshoot this problem Regards Report message to a moderator Re ORA-

oracle dbd error ociserverattach

Oracle Dbd Error Ociserverattach table id toc tbody tr td div id toctitle Contents div ul li a href Failed To Connect To Database Instance Ora- Tns no Listener dbd Error Ociserverattach a li li a href Ora- Tns could Not Resolve The Connect Identifier Specified a li ul td tr tbody table p Q A Tutorials Poetry RecentThreads NewestNodes Donate What'sNew on Apr at UTC perlquestion print w replies xml Need Help Anonymous Monk has asked for the relatedl wisdom of the Perl Monks concerning the following ora dbd error ociserverattach question I am having problems connecting to Oracle

oracle dbd error ocisessionbegin

Oracle Dbd Error Ocisessionbegin table id toc tbody tr td div id toctitle Contents div ul li a href Perl Oracle Connection Example a li li a href Perl Connect To Oracle Database Example a li ul td tr tbody table p friend Failed to connect to database instance DBD ERROR OCISessionBegin message Fri October masoodnt Messages Registered October Junior Member I'm trying to connect to remote relatedl database from oracle enterprise manager the connection is going fine perl dbi oracle service name but when i try to connect to a database xyz it's giving error like ora- invalid username