I want to change connected database of my adf project

I changed connection on business compenent form Project Properties of model and viewController, but it use old connection.
Are there another properties that I have to change.
Oracle - ADF
Thanks

Yes, you need to change the datasource that your Application Module is connecting to.
- Right-click on your App Module and click Configurations...
- Select the configuration that your view controller uses (usually <App Module name>Local)
- Click Edit...
- Change the connection type/name to the desired connection
- Click all the OK's
- Test it
Hope this is what you need

Similar Messages

  • I want to change a clip in a saved project

    Here is my actual question.  I am putting together a project and I wish to individualize it presentation to the specific people I am presenting to.  Therefore, 100% of the imovie will be the same.  Only 1 clip (where I mention the party I am presenting to) will be unique.   How can I either duplicate a project without having to recreate everything before I save it.   OR  how can I edit or change one clip is a project after I save it.
    I simple terms I want to make 10 copies of the exact same thing with ONLY the first clip being unique and don't want to have to  redo the entire thing each time.

    Here is my actual question.  I am putting together a project and I wish to individualize it presentation to the specific people I am presenting to.  Therefore, 100% of the imovie will be the same.  Only 1 clip (where I mention the party I am presenting to) will be unique.   How can I either duplicate a project without having to recreate everything before I save it.   OR  how can I edit or change one clip is a project after I save it.
    I simple terms I want to make 10 copies of the exact same thing with ONLY the first clip being unique and don't want to have to  redo the entire thing each time.

  • Error: ORA-12505, error when i want to change database in webaccess.

    Hello
    I want to change the database for webaccess. I use a database in MS Sql Server now. for that I choose "Database Configuration Setup" from the Start menu,
    Programs, Oracle - Primavera P6> Primavera P6 Web Access Utilities . I open this tool and in the 1st step I select Oracle in the 2nd step I entered the below informationusername and passsword: admuser
    database name: pmdb (I create this database before and I tested that successfully in P6)
    Database Host Address: *127.0.0.1*
    Database Host Address: 1521 (I'm sure the port is 1521)
    I didn't select SSL and Public Group ID set to 1
    after i click on next one error returned that "ORA-12505, TNS:listener does not currently know of SID given in ..."
    I added XE as SID before database name and correct database name to XE:PMDB. but I below error returned:
    Error:Unable to resolve privileged username and password
    Invalid connection string
    format, a valid form at is: "host :port:sid"
    Please verify the information you entered.

    wow, I found the solution.
    you must set database name as XE
    correct information are as below:
    username and passsword: admuser
    database name: XE
    Database Host Address: *127.0.0.1*
    Database Host Address: *1521*
    then click next.

  • Can i change the database connections through MAXL Scripts?

    Hi,
    just want to know whether i can change the database connections through MAXL Scripts. i am using essbase 9.3.1.

    Hi John,
    I have built my rulefile by connecting to a database & now i want to change the database connections. I know i can change the database connections through frontend. ( File--> open file). I want to know whether i can change the database connections by writing any MAXL Scripts.

  • Changing connection at runtime

    How can I change the db connection at
    runtime in a bc4j and jsp application:
    I start from a standard db connection
    read from the app property file and then
    I read from the database connection information and I have to reconnect.
    Thank's in advance
    Mauro

    If you want to change connections, you first have to logout. Besides the logon_screen builtin does not change the connection, but it only sets several application properties.
    In the Forms Help there is an example how to use the logon_screen. It basically comes to the next pl/sql code:
    declare
    MyUsername VARCHAR2(40);
    MyPassword VARCHAR2(40);
    MyConnect VARCHAR2(40);
    begin
    logon_screen;
    MyUsername := Get_Application_Property(USERNAME);
    MyPassword := Get_Application_Property(PASSWORD);
    MyConnect := Get_Application_Property(CONNECT_STRING);
    logout;
    if MyConnect is not null then
    logon(MyUsername,MyPassword&#0124; &#0124;'@'&#0124; &#0124;MyConnect);
    else
    logon(MyUsername,MyPassword);
    end if;
    end;
    null

  • Can we change Audit Database

    Is there any way to reconfigure audit database in SAP 4.0 and I m using SQL Server 2008 as my database. i just want to change Audit database in same Sql Server because by mistake i choose different database in ODBC connection.

    Yes It is possible.
    Go to CMC>Auditing
    Under Configuration>ADS Database
    Connection Name: Give a new connection name
    Type: Microsoft SQL Server
    User Name: your SQL server user name and password.
    Save the configuration and restart the SIA. It will show such a status as displayed below, if configuration is success.

  • Is it possible to change the Database default date format  'dd/mm/yy'

    I'm inserting a date with the format 'dd-mon-yy' in a column, it gives the error:- " a non-numeric character was found where a numeric was expected ". I also tried the TO_DATE function but not successful.
    I want to change the Database default Date format 'dd/mm/yy' to 'dd-mon-yy'. Is it possible?
    version is (Oracle Server 7.3.2.0). I checked it on version ( Oracle Server 7.3.4.0) with format of 'dd-mon-yy'.
    May I keep the both formats at a time?
    Thanks for solution(s),
    Tariq.

    you can try with:
    ALTER SESSION
    SET NLS_DATE_FORMAT = 'dd-mon-yy';

  • How to change existing database block size in all tablespaces

    Hi,
    Need Help to change block size for my existing database which is in 8kb of block size.
    I have read that we can only change block size during database creation, but i want to change it after database installation.
    because for some reason i dont want to change the database installation script.
    Can any one list the steps to change database block size for all existing table space (except system, temp ).
    want to change it to 32kb.
    Thank you for you time.
    -Rushang Kansara

    > We are facing more and more physical reads, I thought by using 32K block size
    we would resolve that..
    A physical read reported by Oracle may not be - it could well be a logical read from the o/s file system cache and not a true physical read. With raw devices for example, a physical I/O reported by Oracle is indeed one as there is no o/s cache for raw devices. So one needs to be careful how aone interprets number like physical reads.
    Lots of physical reads may not necessarily be a bad thing. In contrast, a high percentage of "good/fast" logical reads (i.e. a high % buffer cache hit ratio) may indicate a serious problem with application design - as the application is churning through the exact same data again and again and again. Applications should typically only make a single pass through a data set.
    The best way to deal with physical reads is to make them less. Simple example. A database deals with a lot of inserts. Some bright developer decided to over-index a table. Numerous indexes for the same columns exist in difference physical column orders.
    Oracle now spends a lot of time dealing (reading) with these indexes when inserting (or updating a row). A single write I/O may incur a 100 read I/Os as a result of these indexes needing to be maintained.
    The bottom line is that "more and more physical I/O" is merely a symptom of a problem. Trying to speed these up could well be a wasted exercise. Besides, the most optimal approach to "lots of I/O" is to tune it to make less I/O.
    I/O is the most expensive operation for a RDBMS. It is very difficult to make this expense less (i.e. make I/Os faster). It is more effective to make sure that you use this expensive resource in an optimal way.
    Simple example. Single very large table with 4 indexes. Not very efficient design I/O wise. Single very large partitioned table with local indexes. This can reduce I/O on that table by up to 80% in my experience.

  • Changing the Database connection after deployment.

    Dear All,
    I have deployed an application and want to change the connection to live database so how do i change it..
    Do i have to redeploy the application ?. Both db's are oracle.
    -Thanks

    Hi Santosh,
    As Frank said u can connect ur Application using a JDBC Datasource.. So u can change in ur Connection Settings in WLS... u can find the documentation as below....
    Section 9.3.1 http://download.oracle.com/docs/cd/E14571_01/web.1111/b31974/bcservices.htm#sm0203
    For Weblogic Server : Section 35.8 http://download.oracle.com/docs/cd/E12839_01/web.1111/b31974/deployment_topics.htm#CHDFJADJ
    Regards,
    Suganth.G

  • Steps to change universe database connection from SQL server to Oracle 10

    Hi,
    we are moving from sql server to Oracle 10.Please let me know the steps and various parameters I should consider while changing universe database connection from SQL server to Oracle 10.
    Following are the steps which I assumed :
    1.     create a new Oracle database connection or edit the existing connection to point to Oracle server
    2.     Need to check sql for each object, having integrity check for universe will solve the purpose of parsing each object
    3.     Exporting the universe after integrity check
    4.     Report data testing
    Let me know if I miss on any steps.Also what all factors I need to consider while moving to Oracle for eg: what @ custom sql,what @ table names,what @ LOV etc.
    Kindly reply

    Thanks Abhijeet and Shreyash,
    I will follow the steps you have suggested.
    Actually I was searching for this on net and got to know that with Oracle database connection,theres lot of stuff needs to take care of in terms of custom sql and LOV and in our case,we have lot of custom sql for each object in the universe so just wanted to confirm.
    I will do the changes and let you guys know in case theres any isuue specifically to Oracle.

  • When I attempt to connect to iCloud I get the error message: Apple id's email address cannot be verified.  There is nothing wrong with my apple id and I do not want to change it.Any suggestions?

    When I attempt to connect to iCloud I get the error message: Apple id's email address cannot be verified.  There is nothing wrong with my apple id and I do not want to change it.Any suggestions?

    Debi....
    Try "resetting" your Apple ID password >  Apple - My Apple

  • I am trying to publish my ibook. When I click the publish icon i immediately get this message: 'iBooks Author couldn't connect to the iBooks store'. My internet connection is fine, and this book was uploading fine yesterday. I want to change metadata

    I am trying to publish my ibook. When I click the publish icon I immediately get this message: 'iBooks Author couldn't connect to the iBooks store. Check your internet connection, then try again.' My internet connection is fine, and this book was uploading fine yesterday. I want to change metadata.

    When you are having problems with a site - consider weather between you and it and amount of traffic (time of day).
    Bad weather can cause problems with a connection as it travels on the information highway - hazard a guess all traffic that went through Buffalo is being routed elsewhere.   
    Bad weather can slow down handshake etc to the point of requiring too many resends - so Ibook is timing you out.

  • So you want to change your primary mail but can't get past the password question?

    Claudius,either you didn't read my post, or you jumped to conclusions. I had a skype account that was created using a microsoft account (NOT THE ACCOUNT I AM USING NOW). PURE MICROSOFT ACCOUNT NO OTHER ACCOUNT LINKING.I had to change the primary mail of that account.I was told "no can do" by skype support.I found that if I went to account settings and clicked on the link on the line below the one that said "MICROSOFT etc" (labeled something along the lines of "TV or Device") I got the opportunity to set the password of the "live:username" account (WHICH YOU COINCIDENTALLY HAVE TO DO IF YOU WANT TO USE SMART TVs ETC).Once that was done, I COULD SUCCESSFULLY DO WHAT SKYPE SUPPORT SAID WAS IMPOSSIBLE- I could change the primary mail address. once that was done, and NOT BEFORE, I linked the account to a facebook account as well, just to be sure I have more than one way to access the skype account. What caused you to get the impression that I was writing something else? furthermore this sentence - "The solution you described in your initial message isn't actually once since all the time you were operating on different account that weren't actually linked" does not make sense, I think you mis-edited it.and I need to point out that you are incorrect. I WAS NOT OPERATING ON DIFFERENT ACCOUNTS I WAS OPERATING ON ONE SKYPE ACCOUNT, THAT WAS CREATED USING A MICROSOFT ACCOUNT just like you say you recommend. I still don't know how you can misread my initial entry like that.  If you have a better solution to my initial problem - changing the primary mail of a skype account created throuth either a microsoft account or a facebook account, Please write a sticky to explain how to do it, and please inform skype support that Yes it can be done, and this is the way it is done. So far my "lucky shot" seems to be the only way to do it.     

    Hi!I ran into the same problem as a lot of other people seem to have done. I am changing ISP and because of that I have to change my mail address from my 10 year old [e-mail removed for privacy and security] to something else, this time I choose to use an outlook.com address in the hope that I will be able to keep that a bit longer. last week I realized that my skype account had my old expiring address as the primary mail, and that the primary mail was the only mail that skype will use for communication with me - I already had 2 other mail addresses in my skype profile (outlook.com and gmail). The skype account was created last summer using my microsoft account, and the microsoft account is the only means I have for accessing the skype account. So I logged on and opended the profile page, went on to edit the info and marked my outlook mail as the primary, clicked save and got the password question. I entered the password I use for logging on (ie the microsoft account password), but was told that the password was wrong. I tried everything and some more things, I spent 40-50 minutes on a text chat with skype support, only to be told that it can't be done and that the skype account was hard tied to the mail address I had used when creating the account, which I found very strange as I had used my microsoft account. yes, when I created the skype account, the only mail I had connected to the microsoft account was my "[e-mail removed for privacy and security]" mail, but I have since then, without any problems, been able to create an outlook.com address, and have that added, added a gmail account, set the outlook.com as the primary for the microsoft account and remove the "[e-mail removed for privacy and security]" address from the microsoft account. no problem.The problem is actually worse as the mail account will be free for use after april 1, which means that a person claiming that mail address will risk getting extremely confusing mails regarding a skype account they don't have, they will have difficulties creating a skype account of their own, AND they can take over my skype account (as they are the owners of the mail address) and I won't be able to stop them. How is that for security  Fortunately I spent 2 more hours and stumbled on the solution  This is where a normal scam artist would ask you to click on a link to a web apge that would releive you of all your money, but I won't do that. so, what is going on when you want to change the primary email, why isn't your password accepted??? It turns out that when you create a skype account using your microsoft account (and I guess  your facebook account), skype will actually create a "proper" skype user account as well, but they hide it from you, and you won't get a password set for it. It is the password for this "hidden" account you have to enter when you want to change the primary password It turns out that I was also unable to connect my facebook account to my skype account for the very same reason, but here it was more obvious, as I had to enter my skype username and passwor when connecting the accounts, and the microsoft account wasn't accepted there . so what do you need to do? well - those of you who have a smart tv (or some other device) that can't log on to skype using a microsoft account, have already done the work (provided you use that tv/device with skype) you log on to skype and open the account settings page, on the line below "microsoft account   [email protected]  unlink           change microsoft password" you'll see a line saying "TV or Device" or something similar (I have no idea what the english text is) here you have a link you can click on where you will be prompted to enter the password for your "live:username" account. once you have  done that you get instructions saying that for smart TVs etc, you enter "live:username" as the skye user and the newly created password as your password.The good news is that you now have 1) the identity of your skype user ("live:" and your name where the user name is the combined string "live:username" which in my case was "live:myname"); and 2) a password that is valid for your skype account. what I did next was open up the profile page, edit the profile, mark the outlook.com mail address asthe primary, click save and when prompted for the password, I entered the password I set in the previous step, and that's it, I now had a new primary mail (I got the confirmation mai sent to the new mail address right after I updated the info in skype). I also successfully removed my soon defunct mail address from the mail address list in my skype account, and I then connected my facebook account to my skype account (using live:myname ase the username and my shiny new password). So at the moment I have three different methods available to me when logging in to skype:- my microsoft account- my skype user (live:myname)- my facebook account.the ONLY thing to be aware of is that the name of the microsoft account, as presented on the account settings page in skype, still is my old [e-mail removed for privacy and security] mail address NOTE that this is a presentation issue only, someone thought that it was a good idea to save the original name of the microsoft account in the skype database and use that for presentation. It is NOT used when logging on, when you log on it will use the UID of you rmicrosoft account. if it disturbs you, you can always disconnect you rmicrosoft account from your skype account and reconnect it, and you should see the current mail address associated with the microsoft account. (this is safe to do because you have at least one other method to log on ) I hope that skype will amend their FAQ with this info. I did enter into a second chat with skype support, explaining what I díd to resolve the problem they failed to solve. so there it at least 2 people at skype support who know how to resolve the problem. -cheers,Anders 

  • How to change the database in a business area

    Hello All,
    I am trying to figure out a way to change the database that a business area connects to. When I created the business area I selected to look at tables from the default database. Now I need to change that setting to connect to a different database. The tables are exactly the same on both databases. I just need to change the database that the business area looks at.
    Is there a simple way of accomplishing this? I want to avoid having to recreate the business area.
    Thank you very much in advanced for your help with this matter.
    Del Benavides.

    Hi,
    Select all your folders in Disco Administrator,ALT+ENTER to go to properties, then change the database from the default database to the remote database.
    Hope that helps,
    Rod West

  • So you want to change your primary mail but can't ...

    Hi!
    I ran into the same problem as a lot of other people seem to have done.
    I am changing ISP and because of that I have to change my mail address from my 10 year old [e-mail removed for privacy and security] to something else, this time I choose to use an outlook.com address in the hope that I will be able to keep that a bit longer.
    last week I realized that my skype account had my old expiring address as the primary mail, and that the primary mail was the only mail that skype will use for communication with me - I already had 2 other mail addresses in my skype profile (outlook.com and gmail). The skype account was created last summer using my microsoft account, and the microsoft account is the only means I have for accessing the skype account. So I logged on and opended the profile page, went on to edit the info and marked my outlook mail as the primary, clicked save and got the password question. I entered the password I use for logging on (ie the microsoft account password), but was told that the password was wrong. I tried everything and some more things, I spent 40-50 minutes on a text chat with skype support, only to be told that it can't be done and that the skype account was hard tied to the mail address I had used when creating the account, which I found very strange as I had used my microsoft account. yes, when I created the skype account, the only mail I had connected to the microsoft account was my "[e-mail removed for privacy and security]" mail, but I have since then, without any problems, been able to create an outlook.com address, and have that added, added a gmail account, set the outlook.com as the primary for the microsoft account and remove the "[e-mail removed for privacy and security]" address from the microsoft account. no problem.
    The problem is actually worse as the mail account will be free for use after april 1, which means that a person claiming that mail address will risk getting extremely confusing mails regarding a skype account they don't have, they will have difficulties creating a skype account of their own, AND they can take over my skype account (as they are the owners of the mail address) and I won't be able to stop them.
    How is that for security
    Fortunately I spent 2 more hours and stumbled on the solution
    This is where a normal scam artist would ask you to click on a link to a web apge that would releive you of all your money, but I won't do that.
    so, what is going on when you want to change the primary email, why isn't your password accepted???
    It turns out that when you create a skype account using your microsoft account (and I guess  your facebook account), skype will actually create a "proper" skype user account as well, but they hide it from you, and you won't get a password set for it. It is the password for this "hidden" account you have to enter when you want to change the primary password It turns out that I was also unable to connect my facebook account to my skype account for the very same reason, but here it was more obvious, as I had to enter my skype username and passwor when connecting the accounts, and the microsoft account wasn't accepted there .
    so what do you need to do? well - those of you who have a smart tv (or some other device) that can't log on to skype using a microsoft account, have already done the work (provided you use that tv/device with skype)
    you log on to skype and open the account settings page, on the line below "microsoft account   [email protected]  unlink           change microsoft password" you'll see a line saying "TV or Device" or something similar (I have no idea what the english text is) here you have a link you can click on where you will be prompted to enter the password for your "live:username" account. once you have  done that you get instructions saying that for smart TVs etc, you enter "live:username" as the skye user and the newly created password as your password.
    The good news is that you now have 1) the identity of your skype user ("live:" and your name where the user name is the combined string "live:username" which in my case was "live:myname"); and 2) a password that is valid for your skype account.
    what I did next was open up the profile page, edit the profile, mark the outlook.com mail address asthe primary, click save and when prompted for the password, I entered the password I set in the previous step, and that's it, I now had a new primary mail (I got the confirmation mai sent to the new mail address right after I updated the info in skype). I also successfully removed my soon defunct mail address from the mail address list in my skype account, and I then connected my facebook account to my skype account (using live:myname ase the username and my shiny new password).
    So at the moment I have three different methods available to me when logging in to skype:
    - my microsoft account
    - my skype user (live:myname)
    - my facebook account.
    the ONLY thing to be aware of is that the name of the microsoft account, as presented on the account settings page in skype, still is my old [e-mail removed for privacy and security] mail address NOTE that this is a presentation issue only, someone thought that it was a good idea to save the original name of the microsoft account in the skype database and use that for presentation. It is NOT used when logging on, when you log on it will use the UID of you rmicrosoft account. if it disturbs you, you can always disconnect you rmicrosoft account from your skype account and reconnect it, and you should see the current mail address associated with the microsoft account. (this is safe to do because you have at least one other method to log on )
    I hope that skype will amend their FAQ with this info. I did enter into a second chat with skype support, explaining what I díd to resolve the problem they failed to solve. so there it at least 2 people at skype support who know how to resolve the problem.
    -cheers,
    Anders

    Claudius,
    either you didn't read my post, or you jumped to conclusions.
    I had a skype account that was created using a microsoft account (NOT THE ACCOUNT I AM USING NOW). PURE MICROSOFT ACCOUNT NO OTHER ACCOUNT LINKING.
    I had to change the primary mail of that account.
    I was told "no can do" by skype support.
    I found that if I went to account settings and clicked on the link on the line below the one that said "MICROSOFT etc" (labeled something along the lines of "TV or Device") I got the opportunity to set the password of the "live:username" account (WHICH YOU COINCIDENTALLY HAVE TO DO IF YOU WANT TO USE SMART TVs ETC).
    Once that was done, I COULD SUCCESSFULLY DO WHAT SKYPE SUPPORT SAID WAS IMPOSSIBLE- I could change the primary mail address.
    once that was done, and NOT BEFORE, I linked the account to a facebook account as well, just to be sure I have more than one way to access the skype account.
    What caused you to get the impression that I was writing something else?
    furthermore this sentence - "The solution you described in your initial message isn't actually once since all the time you were operating on different account that weren't actually linked" does not make sense, I think you mis-edited it.
    and I need to point out that you are incorrect. I WAS NOT OPERATING ON DIFFERENT ACCOUNTS I WAS OPERATING ON ONE SKYPE ACCOUNT, THAT WAS CREATED USING A MICROSOFT ACCOUNT just like you say you recommend. I still don't know how you can misread my initial entry like that.
    If you have a better solution to my initial problem - changing the primary mail of a skype account created throuth either a microsoft account or a facebook account, Please write a sticky to explain how to do it, and please inform skype support that Yes it can be done, and this is the way it is done. So far my "lucky shot" seems to be the only way to do it.

Maybe you are looking for

  • Does any one know what is wrong with my iphone 4 camera not working?

    when I use my Iphone and want to take a picture I cant because often times my camera on the back doent work and when it does I cant get the selfie camera to work at all. I like using my camera on my phone I am an avid camera user because I am a part

  • Pdf printing problem Mac OSX Snow Leopard Canon MP620 Pixma printer

    After upgrading Adobe Reader version 9.3 to version 10 I cannot print pdf documents using Canon MP620 Pixma printer. Mac OSX Snow Leopard operating system. All other prining works OK. Never had problem before Error message "pstopdffilter/ pstocupsras

  • Third Partyu tool to Solution Manger

    Hi, Has any one worked on migrating the service desk functionality from third party tool to SAP SOlman. here basically how to handle the exporting the historical data of third party tool to Solution mager..? Please advise if anyworked on this area..?

  • Pressing escape button twice clearing the form

    Hello, I am using Jdeveloper 11.1.1.6 and noticed below issue only with IE browser - Developed a .jsff page fragment, created a taskflow and dragged taskflow onto the .jspx - Launched the form , and entered some attributes, by pressing twice 'Escape'

  • Problem animating 3D position change in Photoshop Extended CS6

    I am trying to animate  a simple 3D position change in Photoshop Extended CS6 (OS 10.7.4) Here's what I do: 1. I move my object to its starting position. 2. I move the Current Time Indicator ("playhead")  to the time I want the position change to sta