ISE 1.4 database record comments

For legal purposes, we need to keep the comments database records 3 years at least.
The ISE allow an interview to remove between 1 and 365 days, or never to delete records.
Is there a way to export the data to a different database?

Best regards

Marcelo Castro

Not in the GUI, short manually export to CSV all accounts by the Developer Portal, but you will not get the passwords with that, and it is not easily automated.

Another way this could be done, using the REST API of the RHS for guests, which allows you to generate scripts for the export of all guest accounts and passwords if necessary.

http://www.Cisco.com/c/en/us/TD/docs/security/ISE/2-0/api_ref_guide/API _...

Tags: Cisco Security

Similar Questions

  • Content overview before committing to a database record

    I have a need to give the possibility to preview the content before it is committed to a database record, but I'm not sure how to proceed.

    -Does anyone here know how I could go about this? If so, could you please say?

    Thank you very much.

    Post you comments to the database. The table would have a Boolean column that indicates if the content was visible, initially set to false. Once reviewed, the admin would define indicator true, or delete the line.

  • Can I change the MySQL database records?

    Hello

    As the title says, can I change the MySQL database records from the database window or can I only browse the structure?

    Thanks for your time, Steve

    No, you will need to use a front-end such as PHPMyAdmin, MS Access, tool or any tool SQL front end.

  • Clearing deleted database records

    Greetings. 8 gb Fuze has been great, but annoying problem:

    If I delete a record via windows, while the "rocket" is connected to my PC of votes, deleted records still appear on the menus of the rocket. The only way to remove the entries for the deleted files is "manually delete record" on the "rocket" for each file. This is the normal behavior? It would be nice if the "rocket" acknowledged that the files have been deleted and automatically deleted these entries in the list when it is disconnected from the pc.

    Larson wrote:

    Greetings. 8 gb Fuze has been great, but annoying problem:

    If I delete a record via windows, while the "rocket" is connected to my PC of votes, deleted records still appear on the menus of the rocket. The only way to remove the entries for the deleted files is "manually delete record" on the "rocket" for each file. This is the normal behavior? It would be nice if the "rocket" acknowledged that the files have been deleted and automatically deleted these entries in the list when it is disconnected from the pc.

    It should do during initialization "Refreshing Your Media" at startup and after non-colmatage of the computer. You may need to remove when you're connected in MTP mode (I don't trust Auto-defaut). I don't know if you want to change file names to something other than the stamp of date/time by default that the MTP mode is required otherwise the new names of files will not be saved.

    Alternatively, you can delete the file "mtable.sys" in the root directory of the "rocket" (in MSC mode only) when you are connected to your computer. It is the file of database and if deleted, it will completely re - build a new during the update, instead of simply updated the exsiting data.

  • ISE PUA personalized for wireless comments

    Hi all

    I am trying to Setup wireless using Cisco ISE for the first time invited.  Under Configurations multi-portail, I was hoping to change the DefaultGuestPortal profile so that I could change the wording of the Blurb of Cisco's AUP.  Can someone point me in the direction where I can do this?  The only solution I see is to create a new portal from scratch.

    See you soon

    Brian

    Hi Brian,.

    If you only wan't to change the AUP, there is no need to create custom portals, the text on the page of the aup, don't figure withen the language model you use, if you navigate to the Administration/Web portal management/settings and look under patterns Portal/language of the comments, you should find one called "set up acceptable use policy" and all other customizable text in the portal of comments.

  • Form does not display the 'new' SQL database records

    I have a PDF form that retrieves data from a SQL Server.  The fields of
    the PDF are filled from the database after you have selected a specific
    record in a menu drop down and clicking a button called 'bridge '.
    The problem is that the drop-down list does not display new records that
    have been recently added to the database.  I have to open the form
    in the designer, and then save it, (* note - I change anything at this point.)
    Then, when the form is opened upward in Adobe drop-down list show all
    the documents, including the new ones.  I even put a manual on refresh
    form to try to solve the computer problem has not helped. Seriously left speechless.

    Any help is greatly appreciated.


    Here is my code for the menu drop down.

    ++++++++++++++++++++++++++++

    topmostSubform.Page1.JobSelect::initialize - (JavaScript, client)
    var sDataConnectionName = "BBCC" example - var sDataConnectionName
    = 'Test ';
    var sColHiddenValue = "ContractAdmin_Key"; example - var
    sColHiddenValue = "Dept_ID";
    var sColDisplayText = "JobDescription". example - var
    sColDisplayText = "Dept_ID".

    Search for sourceSet node that match the name of DataConnection
    var nIndex = 0;
    While (xfa.sourceSet.nodes.item (nIndex) .name! = sDataConnectionName)
    {
    nIndex ++;

    }

    oDB var = xfa.sourceSet.nodes.item (nIndex);
    oDB.open ();
    oDB.first ();

    Search with the command 'class name' node
    var nDBIndex = 0;
    While (oDB.nodes.item (nDBIndex) .className! = 'command')
    {
    nDBIndex ++;

    }

    Save the original settings before you assign it, BOF and EOF to stay
    var sBOFBackup =
    oDB.nodes.item (nDBIndex).query.recordSet.getAttribute ("bofAction");
    var sEOFBackup =
    oDB.nodes.item (nDBIndex).query.recordSet.getAttribute ("eofAction");

    oDB.nodes.item (nDBIndex).query.recordSet.setAttribute ("stayBOF",
    "bofAction");
    oDB.nodes.item (nDBIndex).query.recordSet.setAttribute ("stayEOF",
    "eofAction");

    Clear list
    this.clearItems ();

    Find the record with the corresponding data connection name
    nIndex = 0;
    While (xfa.record.nodes.item (nIndex) .name! = sDataConnectionName)
    {
    nIndex ++;

    }

    var oRecord = xfa.record.nodes.item (nIndex);

    Find the value
    var oValueNode = null;
    var oTextNode = null;
    for (var nColIndex = 0; nColIndex < oRecord.nodes.length; nColIndex ++)
    {If (oRecord.nodes.item (nColIndex) .name is sColHiddenValue)
    {oValueNode = oRecord.nodes.item (nColIndex) ;} on the other
    If (oRecord.nodes.item (nColIndex) .name == sColDisplayText) {oTextNode
    = oRecord.nodes.item (nColIndex); } }

    While (!) ODB. IsEOF())
    {
    this.addItem (oTextNode.value, oValueNode.value);
    oDB.next ();

    }

    Restore the original settings
    oDB.nodes.item (nDBIndex).query.recordSet.setAttribute (sBOFBackup,
    "bofAction");
    oDB.nodes.item (nDBIndex).query.recordSet.setAttribute (sEOFBackup,
    "eofAction");

    Close connection
    oDB.close ();

    ++++++++++++++++++++++

    Here is the code for the button refresh

    +++++++++++++++++++++

    topmostSubform.Page1.Button27::click - (JavaScript, client)
    sourceSet.BBCC.requery ();

    +++++++++++++++++++++

    The other thing that could happen is a problem of refreshment in the DropDownList control. Try to add the command xfa.layout.relayout () after the database connection has been closed.

    Paul

  • Help! PROBLEM UPDATING DATABASE RECORDS

    Hi all

    Thanks for looking at my post.

    I have a form that interacts with a SQL database.

    The process begins by a member of the team partially filling out the form and submit it.

    xfa.sourceSet.DataConnection.addnew (); on the form-function initiaise

    then

    xfa.sourceSet.DataConnection.update (); on the submit button.

    This process works very well.

    The next member of the team then gets the information entering the requirement into two text boxes.

    var nIndex = 0;

    While (xfa.sourceSet.nodes.item (nIndex) .name! = "DataConnection")

    {

    nIndex ++;

    }

    oDB = xfa.sourceSet.nodes.item (nIndex) .racing var (1);

    oDB.nodes.item (1).query.setAttribute ("text", "commandType");

    oDB.nodes.item (1).query.select.nodes.item (0) .value = "select * from repairform where (A4 = ') ' + TextField11.rawValue + '") & (A5 = ') "" + TextField12.rawValue + "") "."

    oDB.open ();

    oDB.close ();

    Then fill the form with the file for the search term, including partially filled previous team member information.

    The user, then the rest of the form and the suibmits poplulates

    xfa.sourceSet.DataConnection.update ();

    Where is fall down...

    On the final conclusion the shape seems to update the first record in the database, not the one that appears.

    I'm relatively new to this, so it might make me something stupid.

    Help, please.

    You shodul be able to use myScriptObject.oDB.update (). It might be time to take a look at the form... can ghoulish you send it to me [email protected]?

    Paul

  • Automatically update a field "updated by" when changes are made to a database record.

    Basically, I am building a database using mySQL and PHP application. I come from a design background, rather than parts of a techie, so I'm much more comfortable using the DW and phpMyAdmin, but even less with any code.

    We want to have a field ' last updated by "which is automatically filled in with the one who created or last edited record.

    What is the best way to achieve this?

    I watched some mySQL stuff, but all looks a bit over my head to be honest. Have a users table in phpMyAdmin - not a single one in the database, but under privileges - so where is 'root', more another couple, I added.

    In the web directory, I have just a connection file standard that looks like:

    <? PHP
    # FileName = "Connection_php_mysql.htm"
    # Type = 'MYSQL '.
    # HTTP = 'true '.
    $hostname_connDevelopments = "localhost";
    $database_connDevelopments = 'evolution '.
    $username_connDevelopments = 'root ';
    $password_connDevelopments = "password";
    $connDevelopments = mysql_pconnect ($hostname_connDevelopments, $username_connDevelopments, $password_connDevelopments) or trigger_error (mysql_error (), E_USER_ERROR);
    ? >

    But how to get people to connect to the database?

    If not, can I just use DW journal (that is to say, connect you to specific pages?, rather than users to connect to the database using database privileges)

    And there is a hidden field in my insert and update pages set to the current user, and this value can be inserted into the table?

    Any help or pointers thereby greatly appreciated.

    See you soon.

    Oh.

    Had paused, looked at her again and of course the hidden field should have been:

  • ISE 1.1.1 Iphones comments CWA connection dropouts

    Hi all

    I deployed access as guest wireless using the CWA. It's a simple configuration so I did no maintenance or customer provisioning enabled on the deployment. In short my question directly relates to Iphones (I have not yet been tested with other mobile devices). Basically a laptop connects, gets redirected, authenticates successfully and ultimately can browse internet and network resources.

    With an Iphone I connect, redirected, authenticate successfully, accept the AUP and finally get a page that says I'm connected and should return my original URL. At this point, I try to open safari by going to the main GUI of IPhone, Wireless drops and falls safari at 3G connectivity. I then go back to wireless connections and click the SSID that immediately reconnects and allows access based on the connection of the moose.

    If anyone has experienced this problem and if so what is it apply? Y at - it a setting or the command miss me on the system or is this yet another case of device BYOD was a pain in the back with ISE?

    Have you tested this on iOS6? It has a feature that will let down wireless and go to 3G if you are unable to reach the www.apple.com/library/test/success.html, I think it is called auto-join or something? also recently this page done down at apple, and caused a few problems for Iphone/Ipad users, maybe that is what have seen you.

  • How can I record comments?

    I use save or save as, but does not work. The rescue window is empty or carrying, of that, I can't do the saving of comments.

    Hi marion50491534,

    Please uncheck "Show the online storage when you save files" under "Edit > preferences > General '"

    Then, check again and I would like to know how it goes.

    Kind regards

    Ana Maria

  • Image from a URL database record

    Hello

    I'm building a name of product, price, link, picture the usual online catalogue, etc.

    the link of the product and the image are on another server that url are datatbade cells

    no problem with the link of product using < td > < p > < a href = "<?" PHP echo $row_Recordset1 ["productUrl"];? ">" target = "_new" > click for more < /a > < /p > < table >

    But I have a problem with the image have tried

    < td > < img src = "< a href =" <? PHP echo $row_Recordset1 ["imageUrl"];? > ' > < table >.

    <? PHP echo $row_Recordset1 ['description'];? > < table >

    but simply an area of placeholder even when image is uploaded to the server and preview in browser

    all the details are

    < table border = "1" >

    < b >

    name < td > < table >

    productUrl < td > < table >

    imageUrl < td > < table >

    Description < td > < table >

    < /tr >

    <? PHP {? >}

    < b >

    < td > <? PHP echo $row_Recordset1 ['name'];? > < table >

    < td > < p > < a href = "<?" PHP echo $row_Recordset1 ["productUrl"];? ">" target = "_new" > click for more < /a > < /p > < table >

    < td > < img src = "< a href =" <? PHP echo $row_Recordset1 ["imageUrl"];? > ' > < table >.

    <? PHP echo $row_Recordset1 ['description'];? > < table >

    < /tr >

    <? PHP} while ($row_Recordset1 = mysql_fetch_assoc ($Recordset1));? >

    < /table >

    Thank you

    You have a href in your image src... I have never seen that before, so I don't know if it's the correct syntax.

    Change:

    " >

    TO:

    and if you want the image to be clickable:

  • How to display database records in the text element

    Hello friends,
    I use forms6i...
    I called "username" in the layout of text editor. I created this point in the text of the data block Wizard... I put the number of items displayed = 3 in this wizard...
    In the 'user name' property palette I have following changes
    Number of displayed items = 3;

    When I click on the button named "list_user" must watch all the user names in the text element...
    My shutter button pressed when code is:


    declare
    cursor c1 is
    Select Logid log1 where logout_date is null;
    Start
    Open c1;
    Fetch c1 into: name of user;
    end;

    But my problem is when I run the user a single form displayed in the text element... The text elements two remaining are have no data...

    The result of the cursor query is:



    SQL > ed
    A written file afiedt.buf

    1 Select logid log1 where logout_date is null
    SQL > /.

    LOGID
    --------------------
    104
    105
    106


    Please help me

    Published by: Bauer on February 23, 2011 01:45

    1.
    There is no loop in your code, so it stops after the first extraction.

    2.
    with each loop you overwrite the same text field. Add CREATE_RECORD:

    DECLARE
        CURSOR c1 IS
            SELECT logid
            FROM   log1
            WHERE  logout_date IS NULL;
    BEGIN
        OPEN c1;
        LOOP
            IF :username IS NOT NULL THEN
               CREATE_RECORD;
            END IF;
           FETCH c1
           INTO  :username;
           EXIT WHEN c1%NOTFOUND;
        END LOOP;
    END;
    
  • When-validate-record trigger only if a database item no is changed

    Hello
    I'm looking for a code in the trigger once - vaidate - record in the BLOCK level.
    The trigger should fire only if a value of item checkbox is checked (value ='Y) for the current record (that is to say, if already existing other records have a checked value (='Y), it is not serious and the trigger should not fire)
    Please help me to achieve this goal:
    The code I tried once - vaidate - Trigger, who does not work as I want to:
    DECLARE 
    X NUMBER;
    BEGIN
    if
      nvl ( :DEFLOC.to_be_defaulted, 'N' ) = 'Y' and :DEFLOC.COMMENTS is NULL
      and :SYSTEM.RECORD_STATUS ='CHANGED'
          then
        set_alert_property(
             'err_alert',
             alert_message_text,
             'You must enter a comment when defaulting localities.');
              x := show_alert('err_alert');
              RAISE FORM_TRIGGER_FAILURE;
              end if;
    END;
    The code above does not fire...
    If I remove the part,
    and: SYSTEM. RECORD_STATUS = 'CHANGE '.
    This event fires for "all"(pas seulement les enregistrements modifiés actuellement) files where nvl (: DEFLOC.to_be_defaulted, ' don't) = 'Y' and: DEFLOC.COMMENTS is NULL ".
    Help, please!
    Note: DEFLOC.to_be_defaulted is an element of database : DEFLOC.COMMENTS is a part of database

    Hi blue,

    There is another way,
    In the trigger when-box-changed.
    If: your_chk_box = 'Y' then
    set_Record_property (: changed_Status, system.cursor_Record, 'your_blk', status);
    on the other
    set_Record_property (: system.cursor_Record, 'your_blk', status, Query_Status);
    end if;

    Then, it is easy for you to discover the records modified using get_Record_property ((: system.cursor_Record, 'your_blk', status))

    Hey, I would like to ask you a Question, is that the check_box point is part of database?
    If so,.
    It's easier... the crazy code will work for this

    if   nvl ( :DEFLOC.to_be_defaulted, 'N' ) = 'Y' and :DEFLOC.COMMENTS is NULL
      and nvl(get_item_property('DEFLOC.to_be_defaulted',database_value),'N') = 'N'      then
                      set_alert_property(
             'err_alert',
             alert_message_text,
             'You must enter a comment when defaulting localities.');
              x := show_alert('err_alert');
              RAISE FORM_TRIGGER_FAILURE;
              end if;
    

    in the opposite case
    If you are creating this temp. point, it should be in the same block as item no db.
    I will explain this... You set the State of the checkbox to_be_defaulted some requested folder of Y based on certain conditions, right?
    In any case those files are not editable. Now your condition is to find the boxes newly registered.
    In the post request or where you set to_be_defaulted as ' Y, by default, the new element with the value, while in him when validate trigger, you
    know which folder must attack, it's records nvl (a new item, 'n') = ' n and to_be_defaulted = 'Y '...

    Concerning
    Dora...

  • 2012 TS SP1: STEP_Result recording always fail in a database MySQL (standard schema)

    Hi all

    I use TS 2012 SP1 to perform very simple sequences (some sequence calls in the same file and a few simple tests without adapters) with the sequential model (see attachments). Each time database record step fails with the error-2147352567 on instruction STEP_RESULT.

    This means that I can not connect my my MySQL 5.2 database stage results (UUT_RESULT seems to be saved...).

    My configuration is:

    • Win 7 32 bit
    • 2012 TS SP1
    • 5.2 MySQL + ODBC connectors

    The database was built using MySQL Workbench using the sql file in the components folder of TS.

    Under TS, the scheme used is a simple duplication of the MySQL Insert Diagram delivered with TS. (see attachments).

    No idea what's going on? No work around?

    Fixed a problem!

    I've updated the MySQL ODBC version 5.2.5 (instead of 5.2.4) driver and the problem disappeared!

    Thanks for the help.

  • How to manage database triggers

    Greetings,

    I have an application on JDeveloper 11.1.2.4.0. At some point the user add new customer and its been stored in the database.

    Because the application can be used in more than 1 shop, I created a 2nd data base, only for the uses of biography and history,

    So, it can be seen by all the shops. What I did may, if there is a new record is inserted in the table of biography of the application, I also have a trigger

    When the row is inserted, I also insert the new line in my database 2. In the two databases, there is a primary key to avoid a copy of the id

    I was hoping instead of manipulate records duplicated the trigger, it will manage the database (if duplicate records exist, just do not save at all),

    but my problem now is, his jet me an appropriate exception

    ORA-00001: unique constraint (PERSONAL_RECORD. BIOGR_PK) violated ORA-06512: at «ELAB.» SAVE_BIOGR', line 11 ORA-04088: error during execution of trigger ' ELAB. SAVE_BIOGR' ORA-06512: at line 1

    AND it does not record the biogr on the 1st database either. I don't understand what the trigger has to do with the first database from its insertion after rank method, and not before.

    It should insert the record into the database, and then fire the trigger, throw an exception and do not save the record in 2nd database. But instead of recording its been recorded anywhere...

    The case is: user fields some text boxes to a new customer, I check if the id already exists in database 2 and I notify the user that this account already exists in

    personal database record (2nd database, 1 common database for all stores), and I ask the user if he or she wants to synchronize or use the current fields. If sync, I'll take the case

    the 2nd base and insert them into the 1. Otherwise, I insert in the 1st database, and that's where the trigger should handle the exception of the duplicate line, not my request.

    Is there a way that I can temporarily disable my adf application database trigger or I can handle the exception, BUT the record be save on the 1st database? because if the sound exception was

    lifted, the new records his party.

    Thanks in advance for any help.

    True, since I can't manage the release procedure, I add an exception inside. So he will do something when the exception occurs, BUT it will save the customer

    in the 1st database. Here is my code to trigger:

    create or replace TRIGGER SAVE_BIOGR

    AFTER INSERTION

    ABOUT ELAB. BIOGR

    FOR EACH LINE

    DECLARE

    v_username varchar2 (10);

    BEGIN

    SELECT user INTO v_username

    DOUBLE;

    INSERT INTO PERSONAL_RECORD. BIOGR

    (ID,

    NAME,

    SNAME,

    USER NAME)

    VALUES

    (: NEW.ID_PATIENTS,)

    : NEW.NAME,.

    : NEW. SNAME,

    v_username);

    EXCEPTION

    WHEN DUP_VAL_ON_INDEX THEN

    UPDATE PERSONAL_RECORD. BIOGR SET ERROR = "ALREADY EXISTS."

    END;

    I add the update on the exception because it is empty or with comment in the article SO it gave me an error I do not know why. So I just

    provide a procedure of dump was updated.

Maybe you are looking for