ONS defaults text and database files

Hi,
im trying to understand the difference between the ONS 15454 defaults which can be loaded and saved as a text file (Node > Provisioning > Defaults), versus the database backup and restore option (Node > Maintenance > Database), which can also be used to restore the defaults via the defaults.db that comes with the ONS 15454 CD.
Are both required txt and db file required to restore defaults ?
Do they contain the same info ?
thanks
Mark

Hi,
1. Default DB on the CD is to restore back to factory settings. As if you just received the Chassis from Cisco.
2. Database backup is your current Node information data backup. This will restore your provisioning(circuits) and Node information back to the node. This can also be used to get a new chassis to be identical to another chassis.
regards
Moses

Similar Messages

  • How to edit default text in fla file

    I'm using an open-source Flash mp3 player. In comes in two swf versions. One plays a list of songs and displays the album cover(s). The other version just plays one song. The problem is that the single-song version loads some default text that I want to change (I was able to do this in the other version via the external playlist file). I'm a Flash newbie, and when I open the fla file the player's author provides, I can't find where this default text is located. (The playlist version works fine; its default text relates to what the user will get when they click on the file titles.) Links:
    Playlist version that works OK - http://www.keithpurtell.com/kthings/fripp.htm
    Single song version with wrong default text - http://www.keithpurtell.com/kthings/bjcole.htm

    SOLUTION:
    For the benefit of anyone else using the XSPF mp3 player, here is how to change default text. The XSPF player file is deployed to your server with your target mp3 files, whatever playlists you have created, and a file ending with the .as extension. The .as file contains the default text and can be changed with a good (free) text editor like NotePad++.

  • Load the External text and css file for more frames

    hello..
           I created one Movie file. In that I load the External text and css file in first frame and display the first variable value in one text box.
    And then in 2nd frame I use another one text field and display the 2nd variable value like that I want to load the more variable in more textboxes with different frames.
         I loaded  for first variable value in first frame. But I don't know how to do next frames like that..
         Help me...

    You need to load them in the frames they are in.  You can store the loaded data in variables in frame 1, but you will need to extend that layer so that whatever is stored is avaliable in other frames.  The code to load the data into the other textfields can then be done in the frames where it is needed.
    There are other options, such as not using other frames for content or having all of them in frame 1 and making them invisible until you get to the other frames where they get turned visible.

  • SQL and database file

    Hello.(sorry for my english)
    I have a legacy system , ported to opencobol that uses Berkeley DB. I can successfully open the database files using java both in windows and linux. However i want to create a web front end for the application.
    Data is stored using strange cobol structures (most numbers are stored as text or 4 bits per digit) and other fancy stuff.. so custom parsers should be written. (dont rember BDB classes name for that)
    I have been reading the documentation of Berkeley DB 12 hours totaly today but couldnt find answers to some questions...
    Is it possible to attach the database to dbsql.exe (sqlite) server ?? I tried to do "attach "..pathtofile" as NULL ,but i get multiple databases specified and not supported and other stupid messages....
    I think that what i tried propably doesnt make sense as collumns arent specified and nothing is in order this thing to work ..It is a simple Key value database.
    So i am a little stucked here.
    The only solution i can think is to synchronize with a relational Database. But i dont have triggers or nothing that helps....
    Note that i want one way synchronization. The "other way" will have very limited tasks.
    It seems to me that checking every x minutes if something changed using a cursor is a demanding task. So i am wondering.. Is there a way to track changes???
    Thank you :)
    Edited by: 843912 on 12 Μαρ 2011 7:13 μμ

    Hello,
    I am not sure I completely understand your question. If you are asking about importing
    and exporting data from a Berkeley DB database into an Oracle DB Table in Berkeley DB
    releases prior to 5.*, then this can be done with the Oracle OCI interface. If I am
    misunderstanding the question, please let me know.
    Thanks,
    Sandra

  • Flash and database files

    Solaris 8 10/02
    Archive a netra 20 running Solaris 8 10/02 - The archive create work great. However,
    when I tried to install it on another system (boot - install tape) with the same hardware configuration. The sparse Sysbase database files are expanded and no longer file on the partition that was created.
    Any ideas?
    thanks

    Thanks again Barney...
    I make a new version of this app every 3 months and I have just created one this week (after updates) and it works fine once burnt onto a CD.
    This is what makes me think that the OS is now looking at the older .dat files differently after the updates. Could it be a security issue that they may have been trying to resolve??
    It is also PC compatible and all the old CD-ROMs still work fine on PC's.
    Thanks again for your help.

  • I am trying to make a Birthday card for my sons 2nd birthday, and It keeps saying both about the "default text" and now that it wont fit on the paper. but everything seems fine....HELP???

    please help!

    Are you using iPhoto '11 on a Mac?
    Try to print your Card (using the main menu bar "File > Print" or save the printed version to pdf.
    Then you can check, which text still is default. The default text will be missing from your print - see for example the screenshot below. Also you can check the measurements on your printed copy. In the print menu you can use the arrow buttons to step through the pages of your card.
    Regards
    Léonie

  • Undoing Open Office being the default program for text and other files

    After problems with Power Point crashing down, I downloaded Open Office to save some files on my mac. thanks to Open Office I managed to save the content, but now Open Office seems to become default program to open word, ppt etc. files on my mac. How can I undo this?

    Change it from the Open With section of a document's Get Info window, and then use the Change All function.
    (57910)

  • AppleScript: Change an order of texts and HTML file in the body of Mail

    I would like to know how to insert a HTML file below the Signature in the body of Email.
    This is my code,,,,
    set the clipboard to (read (choose file) as «class RTF »)
    set theBody to "Hello"
    tell application "Mail"
    activate
      set theMessage to make new outgoing message with properties {content:theBody, visible:true, subject:"mysubject"}
    end tell
    tell application "System Events"
      tell process "Mail"
      set focused of UI element 1 of scroll area 1 of window 1 to true
      keystroke "v" using command down
      end tell
    end tell
    What I would like to do is an order of body going like
    From the top:
    Body
    Signature
    HTML rtf file
    Please teach me how to do!
    Cheers,

    Hi,
    murrayshimada wrote:
    Wondering how about inserting a HTML between body and signature? If you have a free time, please give me a tip again. Anyway, thank you for your help. Cheers,
    You can set the order like this:
    set the clipboard to (read (choose file) as «class RTF »)
    set theBody to "Hello" & return & return -- need two return character to paste the clipboard after the body
    tell application "Mail"
        activate
        set theMessage to make new outgoing message with properties {content:theBody, visible:true, subject:"mysubject"}
        my pasteToEnd()
        delay 0.6 -- need a delay to not remove the pasted text.
        set message signature of theMessage to signature 1 -- this put the signature after the text
    end tell
    on pasteToEnd()
        tell application "System Events"
            tell process "Mail"
                set focused of UI element 1 of scroll area 1 of window 1 to true
                key code 125 using command down -- (arrow down + command down) to set the insertion point to the end of text 
                keystroke "v" using command down
            end tell
        end tell
    end pasteToEnd
    Here's another example, the order =  the HTML, the body and the signature:
    set the clipboard to (read (choose file) as «class RTF »)
    set theBody to "Hello"
    tell application "Mail"
        activate
        set theMessage to make new outgoing message with properties {content:"theBody", visible:true, subject:"mysubject"}
        my pasteAtBeginning() -- at beginning
        delay 0.6 -- need a delay to not remove the pasted text.
        set message signature of theMessage to signature 1 -- this put the signature after the text
    end tell
    on pasteAtBeginning()
        tell application "System Events"
            tell process "Mail"
                set focused of UI element 1 of scroll area 1 of window 1 to true -- this set the insertion point at beginning
                keystroke "v" using command down
                keystroke return & return -- to put a blank line between the RTF and the body
            end tell
        end tell
    end pasteAtBeginning

  • Changes to text and swatch file

    After creating a text frame for a photo caption I copied and pasted to the text frame from the caption used in the photo's file name rather than type it directly in the text frame.  The result that was added to the text frame was blurred letters that seem to have a shadow to them rather than the crisp black letters.  My symbols in the Swatch file seem to have changed and I can't seem to get them to back to normal.  Previously I had 3 symbols--a frame, paper and letters.  Now I have only paper and letters.  Any suggestions on how I fix this?  I am using InDesign CS4

    To add to my previous message. If you really want to get fancy, create your own messages file. You can reference that message file by specifing it in any custom code. For instance, I created one that is used for custom navigation. Instead of hard coding the name and description of the custom navigation, I created an xml file that contained the values. Using plumtrees own Resource manager, you can read from any xml file as long as it is formatted correctly.
    Here is a code snippet
    publicclassNavTypeBankersBankMain : INavTypes
    publicint_ui_nav_id = 202;
    publicconstString PORTALCOMMONMSGS = "ptmsgs_bankersbankbrowsingmsgs";
    publicNavTypeBankersBankMain() : base()
    #regionINavTypes Members
    ///<summary>
    ///Get the ID of the current navigation.
    ///</summary>
    ///<returns>ID of navigation</returns>
    publicintGetID()
    return_ui_nav_id;
    ///<summary>
    ///Gets the name of the navigation scheme to be displayed in the subportal list of navigation.
    ///</summary>
    ///<param name="_strLangID">Language to be applied.</param>
    ///<returns>The name of the navigation.</returns>
    publicstringGetName(string_strLangID)
    IApplication application = ApplicationManager.GetInstance().GetApplication(AppConstants.MAIN_APPLICATION_NAME.ToString());
    XPResourceManager rm = (XPResourceManager) application.GetCachingManager().GetEntry("ResourceManager");
    returnrm.GetString(0, PORTALCOMMONMSGS, _strLangID);
    The bold text is what is used for the custom messages. The only problem is keeping up with where custom strings are used.
    HTH too,
    Mike Bruce [email protected]

  • Reading pdf, text and docx file

    Dear sir
    i have different files (pdf, txt and docx)in a directory. I want to read them all and search in them for specific contents. Please is there any API exists with documentation to read pdf files and suggest me some procedure of doing it.
    Thanks.

    Muhammad Umer wrote:
    Dear sir
    i have different files (pdf, txt and docx)in a directory. I want to read them all and search in them for specific contents. Please is there any API exists with documentation to read pdf files and suggest me some procedure of doing it.
    Thanks.For reading the text content from PDF files I have had moderate success with the PDFBox library. docx is an XML format, so you can use a SAX parser to read those. Search for "java docx" using Google to get some hints. There is also the Apache POI project, but the Word support in that API is sketchy at best; the project page openly admits that it is not actively developed.

  • Default text editor for files with no extension

    If I double-click on a file with a name like README, the Finder opens the file with TextEdit.app. I can easily change which editor is used if the file had an extension (e.g. if it was called README.txt or README.html), but without an extension, OS X had no way to set a preferred editor. If I open this from the terminal I can set the EDITOR environment variable, or use open -a appName, but my question is about the Finder. Thanks!

    extremely annoying. when i first switched to OS X, i had to rewite a hundred or so perl scripts for my servers... because any text file or data file or whatever, that didn't have an extension after it, would no longer open in BBEdit, like it always did in 9.2
    3 years later i'm still occasionally getting that annoying 'doh, what do i open this with' message. macs are getting dumber all the time.
    i guess apple thinks windows got it right associating the extension with the app.
    and half my 'change alls' don't stick either.

  • Save dialog box for text and pdf files

    Hi,
    I am using CRM UI framework for developing my components.
    Currently i have a hyperlink for a file. On click of the hyperlink i want the Save dialog box to appear with SAVE/OPEN/CANCEL options. For Word/Excel/PPT files, dialog box appears. However for txt/PDF files, dialog box does not appear.
    URL looks like the following:
    http://uxcia0g.wdf.sap.corp:50026/sap/bc/contentserver/000?get&pVersion=0045&contRep=RPS_DB_02&docId=80215A5C348E1DEE8A9EC8FFDED05E54&compId=chk.pdf&content_disposition=attachment.
    Could you please help me to resolve this issue?
    Regards,
    Vinay

    First of all, you need an app on the iPad that can read those files that you want to transfer. Adobe Reader and iBooks are two free apps that will read PDF files. Adobe Reader is much more robust than iBooks as it offers so many more features like renaming files, creating folders, annotating, highlights, etc.
    Download Adobe Reader in the App Store. Then read this about file sharing with iTunes.
    iOS: About File Sharing - Support - Apple
    There are other ways to get files to the iPad, like email, DropBox and some other apps that let you mount your iPad like a flash drive.
    This should be helpful as well.
    iTunes 11 for Mac: Set up syncing for iPod, iPhone, or iPad

  • AS: Setting the " Create Links when placing text and spreadsheet files"preference

    You need the "link text files when importing" property of text preferences<br />-- you can address the app or a document.<br /><br />-- <br />Shane Stanley <[email protected]><br />AppleScript Pro Florida, April 2009 <a href=http://scriptingmatters.com/aspro>

    Thanks very much. Works great. It's so easy when you know!!

  • How to Read the "text file and csv file" through powershell Scripts

    Hi All
    i need to add a multiple users in a particular Group through powershell Script how to read the text and CSV files in powershell
    am completly new to Powershell scripts any one pls respond ASAP.with step by step process pls
    Regards:
    Rajeshreddy.k

    Hi Rajeshreddy.k,
    To add multiple users to one group, I wouldn't use a .csv file since the only value you need from a list is the users to be added.
    To start create a list of users that should be added to the group, import this list in a variable called $users, the group distinguishedName in a variable called $Group and simply call the ActiveDirectory cmdlet Add-GroupMember.
    $Users = Get-Content -Path 'C:\ListOfUsernames.txt'
    $Group = 'CN=MyGroup,OU=MyOrg,DC=domain,DC=lcl'
    Add-ADGroupMember -Identity $Group -Members $Users

  • Problem while loading texts and authorization objects file in RAR

    Hi all,
           i am getting internet explorer error while loading the texts and authorization objects text files in RAR .actually we uploaded rule file before this,does this step causes any error ?if so how to resolve this error.do i need to remove all rules/risks and then load text and authorization files? is there any shortcut to renove all risks generated in one shot? please reply me soon to resolve this.
    Thanks,
    Joseph.

    Hi Joseph,
    Please make sure to convert both the files in UTF-8 encoding format and then try to upload the files again. This should resolve the issue and if not then please paste the logs here.
    Regards
    Harleen

Maybe you are looking for

  • Problem with generating xml and nested cursor (ora-600)

    I have a problem with generating xml (with dbms_xmlquery or xmlgen) and nested cursors. When I execute the following command, I get a ORA-600 error: select dbms_xmlquery.getxml('select mst_id , mst_source , cursor(select per.* , cursor(select ftm_fdf

  • Firefox 3.6.7 crashes continously and sends error report to mozilla

    I am wrinting this from IE8 as its the only broswer that works for me, FF 3.6.7 opens for 30 seconds and closes say " Well this is embarassing firefox has closed" well damn right it is.. FF just keeps onpening and crashing and opening and crashing. t

  • How to call a BPS Web Interface with predefined selections

    Hi, I have read and try to implement the "How to... call a BPS Web Interface with predefined selections" but it is not working. I have one Web Interface called ZXXXXX, then I created one BSP and copied the ABAP code into the Layout screen. I checked

  • Interactive PDF with .swf issues

    Hi, Currently I am a graduating Senior in college and am trying to put together a PDF Portfolio for a few events and job applications. I had created a full page animation within InDesign CS5, and exported to a .swf. When I place the .swf into the doc

  • DeSerializaton problem

    Hi all I am new to jave programming and facing a problem with deserialization. I have written 3 objects to a file using object output stream. When i am reading them, i can read the first one. But how do i move to next objects. How do we loop over the