How can I display historical data after moving a PLC to another port?

I have a system that has Modbus type devices on serial ports. Each device has a number of values logged (perpetually) to Citadel. Over the years the number of devices has grown and I'd like to move some of the load to other com ports. In fact I'll probably use an OPC server. What I really need is an elegant method and/or sequence to implement the changes. In particular I'm concerned about hypertrends that need to show both the before and after traces. The traces will be the same physical points, but the names will change with the new paths.
How do others handle this?
Thanks,
Bob Lockert

Upon reflection, I see the first part of your comment to be valid. I chose tag names that indicated port and RTU addresses. Thus Mod6_35.4xxx was device 35 on com port 6. I can in fact move some of those devices to another port by simply changing the configuration of the devices to be moved. I just can't revise the tags to show the new port and address numbers.
However, I do want to run through an OPC Server so the tag name won't and/or can't follow. They'll be different device types. I have considered changing the hypertrends to display an expression which is the sum of two separately logged items.
ie Temperature = OldLoggedTemp + NewLoggedTemp
Comments???
Bob

Similar Messages

  • How can I display the data in table in separate column?

    I have a vi reading data one by one in the same column.
    How can I display the data with separate column?
    like this:
    data 1 | read | read
    data 2 | read | read
    data 3 | read | read
    (would you mind if I will ask for an example
    because it is much easier for me to work
    with an example)
    THANK YOU.

    If you're reading your data in as a 1D array, this is as simple as using the Reshape Array to make a 2D array. I've attached an example in LabVIEW 6.1 format. The example rearranges a single column of data fill several columns horizontally, but you can easily modify this code to fill the columns downward instead.
    Attachments:
    Data_Column_Example.vi ‏18 KB

  • How can i change the data from one Time Capsule to another?

    How can i change the data from one Time Capsule to another?

    Do you mean copy it?  If so, see #18 in Time Machine - Frequently Asked Questions  You'll need section 2 there.
    If you mean something else, please clarify.

  • How can i display database data in my jsp page?

    actually i m doing a small appliaction of quiz test.
    where i m keeping my question and answers in the database.
    now i want to pull questions from the database and display in the jsp or html page.for each question i m having 4 options 4 them.
    like this user has to answer the question and display the resuklt in the end.
    so how can i do this?
    can i get any example or source code for this from any sites?

    I never tried this... but doesn't the normal html <applet> tag work?

  • How can i show a Data that receiving from PLC, showing it by Round leds?

    I need to show Data from a PLC, which consists in 4 Bytes of information. This information is according to 0 and 1 combination and i wold like to show by Round Leds.
    I`m using the VISA Read palette, and need to read the Data out from "read buffer" ootput for after showing it with Roun Leds (32 led).
    How can i show the string from this "read buffer"?
    I have used "String to Byte array" but i cann`t show the Byte (0,1) and otherwise the Round Leds
    What command I need to put for converting this kind of "array"?
    Thank a lot for your help!
    I`ll show you my program.

    Hi maurovera,
    I think you just want to convert a 4 byte string to boolean arrays like shown in the attachment...
    Btw. you don't need to show an U8 array in an EXT indicator - kind of overkill (and bad programming style too...)
    Message Edited by GerdW on 07-04-2009 10:52 AM
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome
    Attachments:
    string2bool.vi ‏21 KB

  • How can I transfer game data from one apple device to another?

    I have looked at multiple answers to try to find what I am looking for but I can't fine anything that can help me. I have a 4th gen iPod and I recently got an IPad Mini. I have already set up my iPad and have lots of games on it. Is there any way I can transfer my game data onto my iPad without going through iCloud?

    Click here and use the instructions to do it through iTunes.
    (108836)

  • How can I display the date on a jsp page??

    Is there anyway to display the current date when someone views a jsp page??? Can I get it from the server or something like that?
    Thx
    Rich

    is there any type of formatting that goes witth
    that.....Most definitely -- check out the java.text.DateFormat object and its cohort java.text.SimpleDateFormat.
    For example, if you wanted to display the current date in MM/DD/YYYY format, you could do the following:
    <%-- This could go somewhere near the top of the JSP %>
    <%
    SimpleDateFormat f = new SimpleDateFormat("MM/dd/yyy");
    %>
    <% And later on, you could have... %>
    <%= f.format(new Date()); %>Note that I've omitted the proper <%import%> directives.
    -Navin

  • How can I display the date a word document was last modified on my web page?

    I have lists of links to word documents on my web pages. I
    want to be able to show the date the word document was last
    modified next to each link. My pages are straight html.
    Thanks.

    >but I would have to go to each individual file (I have
    hundreds) and put this code on each link.
    No, you can use the FileSystemObject to get a list of the
    files in the directory. See if you can adapt this for your site:
    <link href="/CSS/dirlist.css" rel="stylesheet"
    type="text/css">
    <%
    Function FormatSize(SizeInBytes)
    if SizeInBytes > 1024^2 then
    FormatSize = formatnumber(SizeInBytes / 1024^2,2) & "
    MB"
    elseif SizeInBytes > 1024 then
    FormatSize = formatnumber(SizeInBytes / 1024,2) & " KB"
    else
    FormatSize = SizeInBytes & " Bytes"
    end if
    end function
    %>
    <%
    dim parts
    dim part
    dim BrowseLine
    dim RelLink
    dim i
    url = Request.ServerVariables("URL")
    Parts = split(URL,"/")
    for part = 1 to ubound(Parts)-1
    ' calc link
    RelLink = ""
    for i = 1 to ubound(Parts) - part - 1
    RelLink = RelLink & "..\"
    next
    If trim(BrowseLine) <> "" then
    BrowseLine = BrowseLine & "/"
    end if
    BrowseLine = BrowseLine & "<A href=" & RelLink
    & ">" & parts(part) & "</A>"
    next
    ' add "back" link
    BrowseLine = Browseline & "  " &
    "<A href='javascript:history.back();'><img
    src='/images/return.gif' border=0></A>"
    Response.Write "<P class = 'NavTop'>" & BrowseLine
    & "</P>"
    Dim fso
    set fso = server.CreateObject("Scripting.fileSystemObject")
    dim fldr
    dim fle
    %>
    <a href="../index.asp"><img
    src="../images/leftbanner.jpg" width="343" height="70"
    border="0"></a>
    <link href="/CSS/dirlist.css" rel="stylesheet"
    type="text/css">
    </p>
    <p></p>
    <table width="85%" border="0" cellspacing="0"
    cellpadding="0">
    <tr>
    <th width="63%"><div
    align="left">   Document
    Name</div></th>
    <th width="14%">Size</th>
    <th width="23%"><div
    align="left">  Date</div></th>
    </tr>
    <%
    ' display folders
    for each fldr in
    fso.GetFolder(server.MapPath(".")).SubFolders
    %>
    <tr>
    <td class="FileName"> <a href='<%=
    fldr.Name %>'><img src="/images/folder.gif" border=0>
    <%= fldr.Name %></a></td>
    <td class="FileSize">  <%=
    FormatSize(fldr.Size) %></td>
    <td class="FileDate"><div
    align="left">  <%=
    FormatDateTime(fldr.DateLastModified,2)
    %></div></td>
    </tr>
    <%
    next
    %>
    <%
    ' display files
    for each fle in fso.GetFolder(server.MapPath(".")).Files
    dim ext
    ext = fso.GetExtensionName(fle.path)
    if (ext <> "asp") and (ext <> "scc") then
    %>
    <tr>
    <td class="FileName"> <a href='<%=
    escape(fle.Name) %>'><img src="/images/file.gif"
    width="14" height="16" border=0>
    <%= fle.Name %></a></td>
    <td class="FileSize">  <%=
    FormatSize(fle.Size) %></td>
    <td class="FileDate"><div
    align="left">  <%=
    FormatDateTime(fle.DateLastModified,2) %></div></td>
    </tr>
    <%
    end if
    next
    Set fso = Nothing
    Set fle = Nothing
    Set fldr = Nothing
    %>
    </table>
    <p><a href="/index.asp">Return to Home
    Page</a></p>

  • Can i delete iphoto data after moving to aperture?

    I am trying to clean up my hard drive and I'm wondering if I can delete the following information now that I have moved to Aperture:
    1. images in the "Pictures" folder which are there for some reason I don't understand
    2. "IPhoto Library Recovered Photos" folder
    3, "IPhoto Library Recovered Photos_2" folder
    4. "iPhoto Slideshows" folder
    5. "Rebuilt Library" file which shows as being a " iPhoto Library" Kind of file.
    Collectively these seem to take up 50 GB of data and I am trying to get clear of my nasty and brutish port to mac from a PC environment (not pretty and not easy).
    TIA

    Hi Terence.
    Thank you!
    Can I please ask you what I should look at on 5? It sounds like there is a a question as to whether my "port" from iPhoto to Aperture dragged the images out of the iPhoto database and into the Aperture database?
    Is there a way to check on this?
    Thanks.

  • How can I display the date and time from the playhead info as a subtitle ?

    Is there any way it is possible to display the video capture data and time during playback. I have seen some discussion on creating subtitles to do this, it would be nice if one could simply add a Title template with display fields for playhead information so that it automatically gets created during rendering.
    In case you are wondering why on earth anyone would want this, I would like to use this for display on multisport racing videos.
    Thanks

    There is a Date/Time title in the titles browser, does just what it says...

  • How can I display results data including history

    Hello.
    I am writing a report in Oracle Reports Builder to produce a student's statement of results and have two parameters for course instance and academic year.
    If user enters course instance and academic year the report has to display all results of students where academic year is less than or equal to the academic year
    entered, for the course instance entered as well as the other course instances a student took before that.
    The report should show all results for the previous years and the different course instances within the same course for every student who is enroled on the course instance entered up to the academic year entered.
    E.g. if student did c-inst1 in 2009, c-inst2 in 2010, c-inst3 in 2011, if user enters 2011 for parameter academic year and c-inst3 as course instance, the report should display all the results of students starting from 2011 going back to 2009 for all the three course instances c-inst1, c-inst2 and c-inst3.
    My question is: What conditions should I put in my report in order to be able to show the required results? Please assist. Thanks.

    u mean this?
    Ian F
    Since LabVIEW 5.1... 7.1.1... 2009, 2010
    依恩与LabVIEW
    LVVILIB.blogspot.com
    Attachments:
    bit_hex_display.vi ‏13 KB

  • Numbers '09: How can I display selected data from one cell in another cell?

    Hello.
    I have a Numbers document that contains a table that looks a little like this:
    Amount;Code
    Amount
    Code
    10;12B
    12;8A
    14;16E
    16;3C
    18;5A
    I'd like to have Numbers 09 automatically separate the "Amount;Code" data in the coloumns to the right.
    Do you know the right function and/or equation to make this happen? Any help would be greatfully appreciated.
    Cameron168

    Formula for Amount:
    =LEFT(A2,FIND(";",A2,1)-1)
    Formula for Code
    =RIGHT(A2,LEN(A2)-FIND(";",A2,1))
    I just modified the equation for separting first and last names from:
    http://www.bluemoosetech.com/microsoft-excel-functions.php?jid=32
    You will have to put in your correct cell names
    Tested it and it works!
    Have fun!

  • How can I autoindexi​ng data from vi that read the serial port (CODE)

    Hello. I´m working in a proyect in the company, the proyect consist in read two incremental encoders for the inspection of automotors supension. I have a Digital Read Out System that read the 2 linear encoders, the DRO it has a serial RS-232 interface, i can read the data from the DRO to my computer, but now, I want to storage the information in Arrays (for autoindexing) for then make a graphic, If you want check the program, and if you tell me information, or a example code  thanks for yor help.
    P.D. Only if the data is diferent is sotraged. (I have LabVIEW 5.1.1)
    Atn. Ing. Jorge Cardozo. San Luis Rassini Corporation. Piedras Negras Coahuila Mexico.
    Thank you for your help.
    Attachments:
    KA-COUNTER (Comparacion).vi ‏77 KB

    hi there
    to collect scalar data in an array you can use a so called "Shift register". To display the history of scalar data you can use a Waveform Chart (not a "Graph", a "Chart"). See attachments. because i can't save the vi as 5.1 i appended some screenshots of the front panel and the block diagramm.
    Best regards
    chris
    CL(A)Dly bending G-Force with LabVIEW
    famous last words: "oh my god, it is full of stars!"
    Attachments:
    KA_Counter_BD.JPG ‏122 KB
    KA_Counter_FP.JPG ‏86 KB

  • How can I switch a data plan from one line to another?

    I have 5 lines on my account in a Nationwide Family Plan. I have a question about these two lines:
    A: Smartphone, 2GB Data
    B: Smartphone, 4GB Data Promo
    Line A has been using about 3GB every month due to no wifi access, while Line B uses less than 1.5 GB a month as they work from home.
    I can't see upping Line A's data as the next available tier is the 5GB for $50/month, and there is literally no way I would ever consider a Share Everything plan, they are just too expensive for my needs (i have unlimited on my line and use 5-9GB a month)
    Is there any way I can swap the data between the two phone numbers? Or just switch the phone numbers between the two phones? I can always swap the SIM's myself (they are 4G devices).
    Thank you for any input you may have!

    Your suggestion is to trade phone numbers. For example your example is Mom has XXX-555-1111 and Dad has XXX-555-2222. They would have change to Mom with the 2222 number and Dad with the 1111 number. All their contacts would have to call a new number to get that person.
    For the OP to keep the numbers associated with the original person (Mom-1111 & Dad-2222) it isn't possible to switch phone numbers associated with a specific line's contract and features.

  • How can I restore the data on my NOKIA 6131 phone ...

    something went wrong with my cell phone. when i checked, everyone told me that i will need to add new software, but all the data will be lost. how can i restore these data after updating the software on my cell.
    thxxxx

    you can use Nokia Pc suite to backup data prior to firmware update. once you update you can restore your backup file using the same software.
    newest version is available through here
    http://europe.nokia.com/A41157164
    Fear not those who argue but those who dodge

Maybe you are looking for