Determine the Sources of data used by Applications

We are still currently using MX6.1. Our team of Oracle is upgrading to a large amount of databases (at the beginning of DEV, then QA, then Prod) which connect our various applications see I'm pulling my hair out I am trying to figure out/map which applications use a particular data source. I know that when I go into a sandbox given via the web administration I see sources of data that an application is allowed to use. It would be terribly helpful if I could just go in the variety, defined data sources and see what sandbox (es) currently allow connectivity and would thus know which applications would be affected. Someone can shed some light on my dismal existence? Thanks in advance.

Your method is easy.

All the your DSN are saved in the file "cfroot\lib\neo-datasource.xml". You can open with an XML editor and view the settings.

Tags: ColdFusion

Similar Questions

  • The source of data Oracle (ColdFusion application)

    I inherited a ColdFusion 10 app including the rear end of Oracle 11 g.  Recently, I started to receive java.sql.SQLSyntaxErrorException: [Macromedia] [Oracle JDBC Driver] [Oracle] ORA-00942: table or view does not exist error message when you try to access the application on my Test Server.  Since this is a request from the Government, I don't have a direct access to the CF Admin or the database.  The gov ' t SysAdmin has verified that the CF Admin connection is valid and connected.  The ADMINISTRATOR has verified the data source exists and the database is running.  Completely confused as to what is happening.   I posted on the Adobe ColdFusion support forum and they suggested that I post here to get the eyes of the database on the issue.   The thread is here: https://forums.adobe.com/message/6854985#6854985

    Thank you in advance.

    Always check and recheck the code before you say it's OK Thanx BKBK to find additional space in the data source.  I don't think that's the problem with the Test, but will check again.  Thank you.

  • Business Catalyst - dynamic dropdown of source of data used in page EDITING webapp?

    I can create a dynamic drop-down list < option > when I want to CREATE webapp page element.

    How to create a < option > dynamic drop-down list for a webapp CHANGE item?

    -who shows me the value of the field if it already exists...

    HERE IS THE GENERATED POINT BC

    < label for = "CAT_Custom_21" > NomModele < / label >

    < select name = "CAT_Custom_21" id = "CAT_Custom_21" class = "cat_dropdown" >

    "< option value =" ">--please select--< / option >".

    < option value = "10478478" > Allegro < / option >

    < option value = "10478466" > Aurora < / option >

    < option value = "10478490" > Beaknik < / option >

    < option value = "10478506" > Bosa Nova < / option >

    < option value = "12304768" > Boss Cruiser < / option >

    etc...

    HERA IS THE WORKAROUND MODULE RELEASE > > BUT it does not show the correct value in the edit page, so I have re - select he or she will enter an incorrect value

    < label for = "CAT_Custom_21" > NomModele < / label >

    < select name = "CAT_Custom_21" id = "CAT_Custom_21" class = "cat_dropdown" >

    {% If CAT_Custom_21 <>"" %}

    {module_webapps, 31182, a template="/tpl/option.tpl",,,true,500,,1}

    {% endif %}

    < / select >

    and in the option.tpl file...

    < option value = "{tag_itemid}" > {tag_name_nolink} < / option >


    How can I either...

    To get the value of CAT_Custom_21 to show 'first' in the option - as we list the API to get the value. ?  If Yes, then what?

    B get the menu drop down have the correct value (if it is already running)... is there something that I am missing?

    It seems that it would be something that is obvious and doable... as anyone who wishes to make a webapp that change information would need it to be DYNAMIC.

    If not, go and manually change the html list whenever there is an update of info are ridiculous.

    If I'm missing the thing most obvious, please let me know.

    I'm pretty new to this and I've learned a boatload, but I usually find myself missing the smallest and simplest answers.

    Thanks for your help!

    Dean

    OH, BTW. I try this using liquid. but I imagine that the same problem exists. Because is made to the 'list' up 'after' the html element is displayed...

    unless liquid actually get produced first? is this the case?

    Even if this is not the case, is it possible to create the complete list of options in a field to retain wholesale and THEN have to create the whole form field in a liquid?

    This seems a lot more work than necessary... anyway. Thanks again.

    THANKS TO

    Boyd Hall

    who did this answered in another post for me... What is the best way to get a drop-down list in a web form application that can only contain items sent from a specific domain user?



    I meet here in case other people to search answer.


    creation of the FIRST option and the field selected.

    picking out the value of the source of data by using this code.


    Thank you Philippe.

    as I thought. It was something easy, and I just missed him...

    tag_datasource_id

    Is a useful super tag

  • What is the source of data 9.3.1? Is OLEDB supports ODBC

    Please someone make me know
    What is the source of data hyperion 9.3.1
    and is OLE DB takes ODBC support
    In hyperion 11 the data source is through ODBC.



    Thank you

    Hello

    The data source in 9.3 / 11 is stored in the tables of planning system database
    In 9.3 it is implemented through the configuration utility, in 11 it's done directly through planning web.

    The data source may contain connection details standards of planning and essbase application.
    The data source connects to the repository planning through JDBC and essbase using a JAVA API.

    Ok?

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • my iPhone 6s has problems with the GPS when I use some applications, it does not work well and give especially the bad road. Can someone help me?

    my iPhone 6s has problems with the GPS when I use some applications, it does not work well and give especially the bad road. Can someone help me?

    My iphone 6 has started having the same problem. Its literally the GPS. Saying that it does not find me at all. Ive seen say location for more than an hour in the suburbs of chicago. It started to happen to me after I downloaded the latest update for the iphone. I hope they react and let you know what is happening because I'm dying to know as well.

  • determine the type of data

    Hi all

    I've got procedure of inserting data in table1 value1 column.
    My need is to determine the type of data entered by the user.
    If the data type is not number user should error.
    How can I make it?

    The easier and more reliable way would be to declare the formal parameter as a number, such as:

    SQL> create procedure p (p_num in number) as
      2  begin
      3     null;
      4  end;
      5  /
    
    Procedure created.
    
    SQL> exec p('a');
    BEGIN p('a'); END;
    
    *
    ERROR at line 1:
    ORA-06502: PL/SQL: numeric or value error: character to number conversion error
    ORA-06512: at line 1
    

    If you cannot do this, or want to be more "user friendly", so the only alternative is to test and trigger an error like:

    SQL> create procedure p (p_str in varchar2) is
      2     l_num number;
      3  begin
      4     l_num := to_number(p_str);
      5  exception
      6     when value_error then
      7        raise_application_error(-20001, 'I know I said it was a string, but I really want a number');
      8  end;
      9  /
    
    Procedure created.
    
    SQL> exec p('a');
    BEGIN p('a'); END;
    *
    ERROR at line 1:
    ORA-20001: I know I said it was a string, but I really want a number
    ORA-06512: at "OPS$ORACLE.P", line 7
    ORA-06512: at line 1
    

    John

  • What is the source of data 11.1.2?

    Hello

    What is the source of data 11.1.2? without the help of ODBC drivers how to connect to the back-end database. I need the flow for that.


    Thank you
    PC

    Hello

    I answered a similar question here > what is the data source 9.3.1? Is OLEDB supports ODBC
    If you didn't even answer or bother to mark it.

    Data source connections are driven by JDBC to communicate with the repository database and a JAVA API to communicate with essbase.

    Ok?

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • How to change the source of data in application with the deployment plan

    Hello

    JDev Version: 12.1.3

    I can't change the source data with the deployment plan bc4j.

    Any example on this requirement?

    Thank you

    Anil

    Well, if you take a look at:

    http://Biemond.blogspot.com/2009/04/using-WebLogic-deployment-plan-to.html

    (one of the links in the link you get), you will see Edvin Biemond answwer:

    "you must change the configuration of module of the Application so that it uses a data source. and in the deployment of applications disable deployment of jdbc connection.

    Now you is enough to make the good source of data on each wls and deploy ears. »

    The simplest (and probably the best) way is, as I told you, and you are also mentioned: open up JDeveloper and change declaratively and re-download the ears

  • How to read the Serial Arduino data using labview VISA?

    Hi =). Im a beginner work reading data series from an arduino but im facing... Lets do it step by step

    I built a voltage divider circuit which gives from output
    from 0 to 5V. The output of this circuit is sent to a 0 analog input pin
    of a Committee of Arduino Duemilanove.

    (1) Firstly, I connected the cable to connect to my laptop USB the Arduino.

    (2) I went to start-> control
    Control Panel-> system-> hardware-> Device Manager. Check the Ports (COM
    & LPT). In my laptop I can see USB Serial Port (COM4). Now I know only in
    LabVIEW that I must read the data series COM 4.

    (3) to the side of the arduino, here's the code to read changes in voltage
    entered to analog pin 0. The last line of 'delay' determines the sampling
    Rate of how we want to taste the output of the voltage divider:

    int potPin = 0;    Select the input pin for the output of the voltage divider
    int val = 0;       variable to store the value from the probe

    void setup()
    {
    Serial.begin(9600) (9600);    Opens the serial port, establishes the rate of 9600 bps data
    }

    void loop() {}
    Val = analogRead (potPin); read the value of the voltage divider
    Serial.println (Val);
    Delay (10);
    }

    I slightly modified the basis series reading writing VI... I have
    attached the block schema used with comments. Basically, I tried to read
    data series, divide by 1023 and multiply by 5 to graphic voltage
    variations of the voltage divider circuit.  But Im not getting
    the correct voltage output values. The value of the tension just keeps go
    0 and coming again, as shown in the photo.

    Could you guys please guide me on what went wrong?

    Thank you!

    -you read the data, even if there is no data on the port. If 0 bytes are read => «»

    -in the case of false, you resources VISA wired for the output of channel tunnel?

    -There is no close VISA at the end of the VI resources

    -you're not a loop this VI reading bytes

    I added an addaption of your VI that you should give a try maybe

  • Script or command to determine the ESX installation date

    Hello

    I was responsible for getting the date of installation of each ESX host in my infrastructure. Y at - it a script or the cmdlet that is used to determine this information. I have looked around, but discovered nothing. Any help is greatly appreciated.

    G

    As I know there is no property that gives you the installdate.

    There are alternatives, but all do not give a solution that will always return the correct date.

    I prefer to look for the oldest statistical data for the host

    -This requires that statistical data are retained indefinitely

    -If the host has not added to the vCenter immediately after installation, the returned date might be off significantly.

    -due to a bug in the cmdlet Get-Stat, I use the QueryPerf method instead of the cmdlet Get-Stat

    $esx = Get-VMHost MyEsx $perfMgr = Get-View (Get-View ServiceInstance).content.perfManager
    $spec = New-Object VMware.Vim.PerfQuerySpec $spec.StartTime = (Get-Date).AddYears(-2)
    $spec.Entity = $esx.ExtensionData.MoRef
    $metric = New-Object VMware.Vim.PerfMetricId $metric.counterId = 2 $metric.instance = "" $spec.MetricId += $metric $stats = $perfMgr.QueryPerf($spec)
    
    Write-Host $stats[0].SampleInfo[0].Timestamp
    

    The script assumes that it must be less than 2 years since the host was installed, but you can easily change that by changing the setting to the AddYears method.

  • Problem with negative filters of refinement and the source of data on the OID 2.3

    Hello

    I have a problem using the filters of negative refinement on a data source with Information discovered 2.3

    Here is the configuration of data source

    {
    "baseFunctions":]
    {
    "attributeKey": "COMPANY"
    "attributeValue": "PROMO."
    'class': 'com.endeca.portal.data.functions.NegativeRefinementFilter '.
    },
    {
    'class': 'com.endeca.portal.data.functions.RecordFilter ',.
    'recordFilter': 'OR (OID_RECORD_TYPE:RES, OID_RECORD_TYPE:DEF).
    }
    ],
    "datastoreName": "datastorename",
    'name': 'ABC ',.
    "port": "7770."
    "Server": "XYZ".
    }

    When I reached a dashboard page where all the portlets using this data source, the record filter is applied as expected. However, for negative refinement filter, so that it appears in the portlet of the breadcrumb, it has no effect on the data set. Guided navigation always displays the value as a dimension as possible and I can see in my table of results as the data was not deleted by the negative refinement filter. I tried to restart Tomcat, without effect.
    If I go to the guided navigation and define negatively this value on the dimension of the COMPANY, the data gets filtered and I get 2 negative improvements will appear in the navigation bar to the same value (!)

    Is there something escapes me to configure negative refining filter?

    Thank you

    Your configuration is correct.

    I see two possible problems, but we are really just shooting in the dark:

    (1) "rogue whitespace.
    -If your value is not actually "PROMO" "PROMO", then your filter would not exclude anything. This would also explain why you might then add a negative refinement for the "real value". To validate this, use a browser with some debugging functions (i.e., Chrome), have your applied by default negative refinement and then "apply manually" in Studio.

    And then open the browser debug mode (chrome, right click on the value you just added and click 'Inspect element'). If all goes well, the HTML code will show a little differently, and you can see the white space in the manually added refinement.

    (2) it would happen to be a managed attribute? I think that the managed attribute values can have display names and real names and real name should be used for filtering purposes. I doubt that's the problem, but it's the only other thing I could think of...

    Kind regards

    Patrick Rafferty
    Branchbird

  • Problem with comma in the source of data merge document

    I use InDesign CS6 on a Mac in the Mavericks.

    I created a data source document in Word, saved as a .txt file.  It is a unique field which is the titles of documents. One of the documents has two commas in the title. When I do the merging of data, this page displays only the part of the title until the first comma, and then the merger's going to the next page.

    InDesign aid supposed to include the punctuated title between quotation marks. I tried enclosing the entire title in quotes, and I tried enclosing just commas in quotes. I used quotes and quotes. The result is always the same, the title merges up to the first comma and then going to the next page.

    Usually, Google is my friend, but I could not find all the answers either.  What I am doing wrong?

    When you perform a data merge, it uses a character as the delimiter between fields. The default value is a comma. If you have just a single column of data, with no field to separate, then you can check the Options to Import Show key when selecting your data source and set the delimiter to be something thing-anything! -other than a comma. This will force InDesign to ignore commas in your data.

  • connect to the source of data in OWB

    Hello
    I don't want to connect to a database as a source of data in OWB 11g,
    I use a user name and password to connect to the DB, the user has no objects but I can see other patterns and their objects via tools like developer sql with this user.
    How to connect to a specific schema in my DB, and import the data source with this user/pass via OWB?

    concerning
    Judite

    Hi judite

    The definition of location in OWB has a user name and password that is used for authentication and a schema that is used to reference objects of. You can use X as the user authentication schema and the schema Y for the reference schema, then objects of there will be imported.

    See you soon
    David

  • How to access the remote database by using express application server

    I wan to access the database in one of my servers of laboratory since my laptop remotely. I could easily connect to the server when I use the LAN by simply giving the ip address. But it does not work when remote. I installed PuTTy to connect to the server (that I have), but now I want to access the specific request of this database in the lab server. Is it possible to do?

    Any help would be appreciated.

    Thank you

    Hi 3030553,

    3030553 wrote:

    Please change your login username of "3030553" to something meaningful. Reference: Video tutorial how to change username available

    I wan to access the database in one of my servers of laboratory since my laptop remotely. I could easily connect to the server when I use the LAN by simply giving the ip address. But it does not work when remote. I installed PuTTy to connect to the server (that I have), but now I want to access the specific request of this database in the lab server. Is it possible to do?

    Your laptop must be in the lab server LAN network to access, or else you should have the VPN connection to the LAN in which the lab server exists.

    Also to access objects of database in your schema to Application Express workspace, you can use the workshop of SQL as mentioned by Tommy or you can use Oracle SQL Developer, since you have the credentials for the schema to connect to and related IE required database server information full domain name / ip address of the server port on which the listener database service is running, database SID/database service name listening.

    Kind regards

    Kiran

  • HELP required on forming the matrix of data using PL/SQL

    Hi all

    I'm new on this thread and need your help in this regard.

    I have a requirement for the construction of a matrix of 5000 X 5000 using PL/SQL. My original data tables have 5000 lines each and I need to make a correlation analysis using these data and need to store in a physical table, and not in memory. This feat feasible the simple use of PL/SQL? I understand that Oracle DB has a limit of 1000 columns (but not sure) and so I would like to know if there is a workaround for this kind of scenario. If not, what are the other alternative methods to achieve this feat? Do I need to use any 3rd party tools to do this? A quick response from experts is highly appreciated.

    Thanking you in advance all the gurus.

    Rgds

    SAI

    1006089 wrote:

    I have a requirement for the construction of a matrix of 5000 X 5000 using PL/SQL.

    Possible. But this will require a large part of the memory. As PL/SQL is a language server side, this means the server's memory. That means server potential resource problems.

    And that the server environment is a multiprocessu multi-user environment, it also means potentially several copies of this code of matrix running multiple processes, each putting a request very heavy on the resources of the server. Is no longer a matter of potential server resources, but a guarantee... (exactly the same problem if you use app server architecture and Java or .net)

    You have to ask what is the cracking of data, server-side language? The answer is SQL. No PL/SQL. SQL runs rings around PL/SQL, Java, C/C++ and other languages when it comes to complex, fast and scalable, processing of large volumes of data.

    So you ask yourself why use PL/SQL? With his expensive server memory footprint? SQL and not SQL tables that are designed to deal with massive data effectively and efficiently?

Maybe you are looking for

  • MacBook battery exploded and now does not run with charger

    Recently, I replaced the battery in my MBP and it worked fine for a few weeks then one day, I woke to find the swollen battery and the bulge of the keyboard. I removed the battery and the thought that I would use just the charger as I had done in the

  • my Skype is not working properly :(

    Since yesterday, my Skype stop works well, ive summer use it for years and it's the first time in this case, the problem is that when I go online that Skype is slow, I try to click on one of my contacts and it takes forever to open it, then when I'm

  • Satellite died while the BIOS update

    Has been downloaded new update of the BIOS and portable powered down in the middle and when I reboot I have nothing on the screen and the computer seems to do nothing. What can I do to recover my software or reset?

  • The registration of the guarantee rejects my serial number (Toshiba Satellite U405)

    When I try to record a regular warranty, the website says that my series mobile num is not valid... I tried more than 10 times but nothing. I have Toshiba Satellite U405-S2856. No idea why this is happening and how can I register for the "do anything

  • I don't get any sound when watching a DVD.

    Its good with everything except during playback of a DVD, only get the image. original title: no sound