scott/tiger in Oracle 12c? - oracle12c

I have installed Oracle 12 c , Release 2 and when starting SQL plus, I wanted to login with scott/tiger but received the following message:
Invalid user... Any idea how can I make it to work?
Thank you
Sorin

Related

password crypt authentication not supported error when connecting postgreSQL and automation anywhere

I am trying to connect Automation anywhere with postgreSQL For that I have created with all three below entries
Earlier , I was getting this error "test connection failed error in initializing provider. the specified dsn contains an architecture mismatch between the driver and application postgresql" when i was trying to connect 32 bit Automation anywhere to 64bit DNS, but after created 32 bit DNS and i am getting this error "password crypt authentication not supported".
Can anyone help me resolving this.
Thanks
Support for the insecure crypt password authentication method has been retired in PostgreSQL 8.4 in 2009.
I think you should use a less antique version of the ODBC driver.

Error Executing update ERR_UPDATEQUERY in Yellowfin 7.1 Installer

I am getting an error while exposing my database source to yellowfin 7.1 Installer . I have searched a lot in google .But I can't get clear. Also i am using PostGreSql . I dont know where to add all previleges to corresponding role or username in Postgresql.
So please guide me where do I add all previleges in Postgresql.

Administrator password was not updated in the database error in configuring ATG version 11.0.0 integrated with Endeca

I'm facing an error while configuring the ATG 11.0.0 with Oracle DB and with Endeca 11.0.0.
Here is the error:
Importing ( 8 of 8 ) /CIM/tmp/import/switchingA-import4.xml:
/CommerceReferenceStore/Store/Storefront/data/storecontent.xml to /atg/store/
stores/StoreContentRepository
/CommerceReferenceStore/Store/KnowledgeBase/install/data/basic-urls.xml to /
atg/multisite/SiteRepository
...Success
Update:
administrator password (1 of 1). The administrator password was not
updated in the database. The update was bypassed. Please check the cim.log for
details
-------DATA IMPORT FAILED-------------------------------------------------------
enter [h]Help, [m]Main Menu, [q]Quit to exit
Make sure you have configured the connection details and created the schema.
1 of 8 data imports had errors. Please check D:\E2E\ATG\ATG11.0\CIM\log/
cim.log for more details.
*[D] Done - Mark Import as Done
[C] Continue
Please suggest a solution to this problem.
Thanks in Advance
It may be because the schema is corrupted..
Drop the production,CAT_A and CAT_B schemas and do the steps on
I had this problem too, such that I couldn't login to the dynamo admin servers on bcc and prod instances. I modified the unpacked ear file to start up with Admin.Reset, which resets it to admin/admin and it works.

Error while starting HCK studio on server 2008 r2

When I try to open HCK studio, it shows an error:
Error: Failed to connect to database. Failed to connect to OM.
I tried the solution mentioned here:
http://social.msdn.microsoft.com/Forums/windowsdesktop/en-US/0371abd0-9d9b-427d-95b1-8a57ee69b50a/error-failed-to-connect-to-database-failed-to-connect-to-om?forum=whck
It did not solve my problem.
Under HCK Manager ->Tools -> Management Console ->
"Datastore" is missing in my case. How to create new one (if possible)? and I don't know which user had installed HCK on server pc.
And any one can tell me the Server role required for driver testing on SQL Server manager? ...
Database name cannot be greater then 15 characters.
If your controller name is greater then 15 characters you must be facing the same problem as mine.

SQL30082N Attempt to establish connection failed with security reason 5

I'm getting this error when i try to connect to DB2 Database server using OLEDBConnection in Visual studio 2008 windows application developed in c#:
SQL30082N Attempt to establish connection failed with security reason 5
I'm using Microsoft OLEDB Provider for DB2. When i try to connect i am getting the above error.
I am using the below connection string for connecting to DB2
ConnectionStr = "Provider=IBMDADB2;Database="SampDB";Hostname=114.968.25.61;Protocol=TCPIP;Port=60001;Uid =testuser; Pwd=!DB2User!;";
I am 100% sure that this userid is correct. My DB2 client provider version is 8.0
In my desktop i am getting this error. but this windows application works well on all others machine. Please help me in fixing the issue.
According to Info Center, reason code 5 for SQLSTATE SQL30082N means that the UserId is missing.
I think what may be the issue (if you copied and pasted your exact connection string) is that there is an extra space after Uid.
If you're using .NET, then you may want to look at the OleDbConnectionString class. It will format and escape the connection string as needed.