Limit List From Sequence File

In my sequence file I have approximately  2500 lines.  I have over 100 limits scattered about the sequence file.  Is there a script that can assemble and list the limits in an organized format available?  I am using TestStand 3.0. 
Tony

HI,
You could use the Import/Export Tool to output the limits to a file.
Not sure if with TS3.0 whether there is a <All Sequences> option, if not you will have to select each Sequence and perform the export of the limits and append the result to the file.
Hope this helps
Ray Farmer
Regards
Ray Farmer

Similar Messages

  • On-demand scanning for only new files or scan a list from a file

    I run a free to use file hosting service and with it are the risks of abuse for malware. In the past I've used ClamAV with a bash script to search for any files that are as old or newer than X minutes, usually about 5 minutes and put the found files listed line by line in a file and ClamAV will scan those files only. Put on a Cron for every 5 minutes to run. ClamAV's detection is pathetic though and has not caught most of the stuff it has needed to find. So switching over to Sophos Linux, it has done a great job already detecting multiple files of the uploaded files folder that ClamAV had already missed in the past. It takes just 3 1/2 minutes for it to scan through 3500+ files and archives totaling 17 gigs. I have it set to scan the whole directory every 5 minutes. This takes a while, even if it is under 3 1/2 mins. Ideally I want Sophos to only scan new files so it can be set to run every minute, or every 5 minutes, whether that be from it's command line or via it reading a file list. This way newly uploaded malware is taken care of as fast as possible for the security of the end users.  Here is the script file I use for Sophos already: #! /bin/bash
    PATH=/home/user:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
    if [[ $UID -ne 0 ]]; then sudo "$0"; exit 0; fi
    # Directories to scan
    scan_dir="/home/user/directory/files/"
    # Virus relocation folder
    virus_vault="/home/user/directory/viruses/files/"
    # Create new log folder if it doesn't exist
    mkdir -p /home/user/directory/viruses/logs/$(date +%Y-%m)
    # Location of log file
    tmp_log_file="/home/user/directory/viruses/logs/$(date +%Y-%m)/sophos-scan-$(date +%Y-%m-%d)-tmp.log"
    log_file="/home/user/directory/viruses/logs/$(date +%Y-%m)/sophos-scan-$(date +%Y-%m-%d).log"
    # Scan files and remove (--remove) infected
    savscan $scan_dir -nc -ss -archive -all -suspicious -pua --quarantine -move=$virus_vault -p=$tmp_log_file
    # Format log
    echo " " >> "$log_file"
    echo " " >> "$log_file"
    echo "-----------------" >> "$log_file"
    echo " " >> "$log_file"
    date >> "$log_file"
    echo " " >> "$log_file"
    echo "-----------------" >> "$log_file"
    echo " " >> "$log_file"
    # move consolidate log to daily file
    cat $tmp_log_file >> $log_file
    # remove temporary file
    rm -f $tmp_log_file
    # make sure virus files are right owners
    chown -R user:user $virus_vault Here is what it's based off, what I did for ClamAV to find new files and scan those only. #! /bin/bash
    if [[ $UID -ne 0 ]]; then sudo "$0"; exit 0; fi
    # Directories to scan
    scan_dir="/home/user/example.com/files"
    # Virus relocation folder
    virus_vault="/home/user/example.com/viruses/files"
    # Temporary file
    list_file=$(mktemp -t clamscan.XXXXXX) || exit 1
    # Create new log folder if it doesn't exist
    mkdir -p /home/user/example.com/viruses/logs/$(date +%Y-%m)
    # Location of log file
    log_file="/home/user/example.com/viruses/logs/$(date +%Y-%m)/clamscan-$(date +%Y-%m-%d).log"
    # Make list of new files
    if [ -f "$log_file" ]
    then
    # use newer files then logfile
    find "$scan_dir" -type f -cnewer "$log_file" -fprint "$list_file"
    else
    # scan last 5 minutes
    find "$scan_dir" -type f -cmin -5 -fprint "$list_file"
    fi
    if [ -s "$list_file" ]
    then
    # Scan files and remove (--remove) infected
    clamscan -f "$list_file" --move=/"$virus_vault" >> "$log_file"
    rm -f "$list_file"
    else
    # remove the empty file, contains no info
    rm -f "$list_file"
    fi
    exit 

    Quick comment...
    Sophos has 'decision caching' to speed up files that haven't changed since the last scan, while also allowing files to be re-checked against the latest threat definitions.

  • On-demand scanning for only news files or scan a list from a file

    I run a free to use file hosting service and with it are the risks of abuse for malware. In the past I've used ClamAV with a bash script to search for any files that are as old or newer than X minutes, usually about 5 minutes and put the found files listed line by line in a file and ClamAV will scan those files only. Put on a Cron for every 5 minutes to run. ClamAV's detection is pathetic though and has not caught most of the stuff it has needed to find. So switching over to Sophos Linux, it has done a great job already detecting multiple files of the uploaded files folder that ClamAV had already missed in the past. It takes just 3 1/2 minutes for it to scan through 3500+ files and archives totaling 17 gigs. I have it set to scan the whole directory every 5 minutes. This takes a while, even if it is under 3 1/2 mins. Ideally I want Sophos to only scan new files so it can be set to run every minute, or every 5 minutes, whether that be from it's command line or via it reading a file list. This way newly uploaded malware is taken care of as fast as possible for the security of the end users.  Here is the script file I use for Sophos already: #! /bin/bash
    PATH=/home/user:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
    if [[ $UID -ne 0 ]]; then sudo "$0"; exit 0; fi
    # Directories to scan
    scan_dir="/home/user/directory/files/"
    # Virus relocation folder
    virus_vault="/home/user/directory/viruses/files/"
    # Create new log folder if it doesn't exist
    mkdir -p /home/user/directory/viruses/logs/$(date +%Y-%m)
    # Location of log file
    tmp_log_file="/home/user/directory/viruses/logs/$(date +%Y-%m)/sophos-scan-$(date +%Y-%m-%d)-tmp.log"
    log_file="/home/user/directory/viruses/logs/$(date +%Y-%m)/sophos-scan-$(date +%Y-%m-%d).log"
    # Scan files and remove (--remove) infected
    savscan $scan_dir -nc -ss -archive -all -suspicious -pua --quarantine -move=$virus_vault -p=$tmp_log_file
    # Format log
    echo " " >> "$log_file"
    echo " " >> "$log_file"
    echo "-----------------" >> "$log_file"
    echo " " >> "$log_file"
    date >> "$log_file"
    echo " " >> "$log_file"
    echo "-----------------" >> "$log_file"
    echo " " >> "$log_file"
    # move consolidate log to daily file
    cat $tmp_log_file >> $log_file
    # remove temporary file
    rm -f $tmp_log_file
    # make sure virus files are right owners
    chown -R user:user $virus_vault Here is what it's based off, what I did for ClamAV to find new files and scan those only. #! /bin/bash
    if [[ $UID -ne 0 ]]; then sudo "$0"; exit 0; fi
    # Directories to scan
    scan_dir="/home/user/example.com/files"
    # Virus relocation folder
    virus_vault="/home/user/example.com/viruses/files"
    # Temporary file
    list_file=$(mktemp -t clamscan.XXXXXX) || exit 1
    # Create new log folder if it doesn't exist
    mkdir -p /home/user/example.com/viruses/logs/$(date +%Y-%m)
    # Location of log file
    log_file="/home/user/example.com/viruses/logs/$(date +%Y-%m)/clamscan-$(date +%Y-%m-%d).log"
    # Make list of new files
    if [ -f "$log_file" ]
    then
    # use newer files then logfile
    find "$scan_dir" -type f -cnewer "$log_file" -fprint "$list_file"
    else
    # scan last 5 minutes
    find "$scan_dir" -type f -cmin -5 -fprint "$list_file"
    fi
    if [ -s "$list_file" ]
    then
    # Scan files and remove (--remove) infected
    clamscan -f "$list_file" --move=/"$virus_vault" >> "$log_file"
    rm -f "$list_file"
    else
    # remove the empty file, contains no info
    rm -f "$list_file"
    fi
    exit 

    Quick comment...
    Sophos has 'decision caching' to speed up files that haven't changed since the last scan, while also allowing files to be re-checked against the latest threat definitions.

  • How to jump from sequence file to another in runtime

    Hello,
    I have a report_xls.seq which generates the report in Excel compliant format. If something abnormal happens, the execution halts and all the measured data will disappear. In case of error I would like to put the measured data instead to ascii report using the report_txt.seq file.   
    The "TestReport callback" sequence call step is in a SequentialModel.seq file. That sequence calls sequences in respective report format files, like report_txt.seq and in my case report_xls.seq. What is the simplest way to return to TestReport callback in SequentialFile.seq, change the report format and put the data to that report format according to report format sequence file ?
    Regards,
    Petri

    Could you include both sequences in your TestReport Callback and control which sequence is executed using PreConditions.  A possible check for your PreCondition might be RunState.SequenceError.Occurred.
    Regards
    Steve
    There are 10 types of people in the world that understand binary, those that do and those that don't.

  • Add member in Distribution List from Sql file or Sql Server

    Hi 
    I want to add member in Distribution List in MS Exchange 2010 using MS Sql Database file
    How to create connectivity between MS SQL file and MS Exchange 2010 ?
    and manage DL also add and remove member from DL?

    The answer to your question depends on the version of SQL Server and Exchange you are running.  If you have Exchange 2007 or higher, and if you have SQL Server 2010 or higher, you can load support for both in a PowerShell session.  Otherwise, you
    will need to write an application to join the two.  It may be simplest to schedule a flat-file dump from your SQL Server database, and use that to pull DL membership into Exchange - I know several third party corporations that have done this for their
    Exchange 2003 (and earlier) management add-ons.
    And before you ask, it would take too much time for me to explain how you would need to connect to and interact with the SQL Server database using PowerShell (or how to dump a flat-file from it, for that matter) for me to do it here.  I suggest you
    search the web for SQL Server PowerShell or SQL Server export
    for that information.
    Once you have the information from SQL Server, it's a simple task to run Add-DistributionGroupMember to add members and Remove-DistributionGroupMember for DL membership management.  I'll caution you, though - if you are going to do massive updates to
    a large distribution group, it would probably be faster to use DL management in AD.  The reason for this is that you can add or remove several group members at once using the AD toolset, but you can only work with individual members with the above Exchange
    commands.  And working with individual members means enumerating the entire group membership for each update - and with large groups, this takes a lot of time.

  • How can I extract all URL's into a list from 'mm_report' file?

    I've Googled this with no luck; I have a 'mm_report' in xml format. It contains a lot of text that also includes approx 800 URL links I need to extract these URLs into a separate list. I've tried using a regular expression: href=\"([^\"]+)  in 'Find and Replace' which successfully highlights the links but now need to know how to reverse this process so it deletes [strips] all surrounding text & only leaves me with a list of all URL's in this file.
    Any advise, much appreciated.

    Hi Hans,
    here's an edited version to show just 3 links:
    <?xml version="1.0" standalone="yes" ?>
    <mm_report>
              <mm_reportname>          ResultsReport.xml</mm_reportname>
              <mm_reportdate>12/08/11 21:29:33</mm_reportdate>
              <mm_reportlocation>E:\\bond\</mm_reportlocation>
              <mm_reportitem>
                        <mm_file>www.mywebsite.com\1.html</mm_file>
                        <mm_displaystr><![CDATA[ <A HREF="javascript:openWindow('http://www.mywebsite.com/1.jpg',630,630)"><IMG...]]></mm_displaystr>
                        <mm_data mm_rangemin="23240" mm_rangemax="23342" mm_filename="E:\mywebsite.html" mm_replaced="false" mm_matchedtextdirty="false" />
              </mm_reportitem>
              <mm_reportitem>
                        <mm_file>www.mywebsite.com\2.html</mm_file>
                        <mm_displaystr><![CDATA[ <A HREF="javascript:openWindow('http://www.mywebsite.com/2.jpg',630,630)"><IMG...]]></mm_displaystr>
                        <mm_data mm_rangemin="23240" mm_rangemax="23342" mm_filename="E:\mywebsite.html" mm_replaced="false" mm_matchedtextdirty="false" />
              </mm_reportitem>
              <mm_reportitem>
                        <mm_file>www.mywebsite.com\3.html</mm_file>
                        <mm_displaystr><![CDATA[ <A HREF="javascript:openWindow('http://www.mywebsite.com/3.jpg',630,630)"><IMG...]]></mm_displaystr>
                        <mm_data mm_rangemin="23240" mm_rangemax="23342" mm_filename="E:\mywebsite.html" mm_replaced="false" mm_matchedtextdirty="false" />
              </mm_reportitem>
              <mm_reportitem>
                        <mm_file>www.mywebsite.com\4.html</mm_file>
                        <mm_displaystr><![CDATA[ <A HREF="javascript:openWindow('http://www.mywebsite.com/4.jpg',630,630)"><IMG...]]></mm_displaystr>
                        <mm_data mm_rangemin="23240" mm_rangemax="23342" mm_filename="E:\mywebsite.html" mm_replaced="false" mm_matchedtextdirty="false" />
              </mm_reportitem>
    </mm_report>
    I would like this to return just:
    http://www.mywebsite.com/1.jpg
    http://www.mywebsite.com/2.jpg
    http://www.mywebsite.com/3.jpg
    Thanks.

  • Applescript set selection to list from txt file

    For an AppleScript I am writing, I need to have the program select certain song names in iTunes. Basically, I have a txt file with the song names and I want the AppleScript to select exactly those names. For instance, the txt file looks like
    Track1
    Track2
    Track3
    Track4
    Track5
    with the track names replaced with the actual song names. Every track in seperated by one return, although I can reformat the file to add more returns if necessary. I would like to write something like:
    tell application "iTunes"
         set sel to --every track in the txt file--
         ---rest of my code---
    end tell
    I hope this was clear. Any ideas? Thanks!

    Thanks again DFGray for the comments. 
    After the correlations to find the peak positions, i just take the max value.  And you are right the accuracy is limited by the number of  samples per cycle.  Perhaps it would be clearer if you see the code.
    1) Basically I get a signal on the up and downslope of the sine wave.  On the down slope however the signal is negative, i.e. its is flipped.  So before I shift and average...I 'cut' the waveform into 4 (when cycles per buffer = 2, then I get 4 signals, 2 on the up slope and 2 on down slope) bits.  Counting from one, I flip the even number, cut it, and but an array of waveforms which is then sent to be convolved and shifted.
    2) Array of waveforms are stored to be phased shifted (Convolve and shift vi) and averaged (entire averaging vi which uses the convolve and shift vi as a sub vi). 
    * Phase shifting doesn't work when I cut and put it together (So something is wrong in cut waveform vi) 
    * Also if it isn't too time consuming could you give me an example of interpolating and shifting thing.
    * Also if you have any comments regarding the following VIs please let me know.  
    Thanks 
    Attached is:
    1) Cut waveform vi
    2) Convolve and shift
    3) Entire averaging 
    Attachments:
    SubVICutWaveforms.vi ‏37 KB
    SubVIConvolveShift.vi ‏30 KB
    SubVIEntireAveraging2.vi ‏43 KB

  • Changing Enable tracing station options from sequence file

    I can set the Property to enable/disable tracing using the Active X [Set property for TracingEnabled]
    Once this tracing is enabled is there a way to enable/disable the "Allow Tracing into Setup/Cleanup" option using Active X?
    Regards,
    Vidula

    Hi Vidula,
    You can get to the individual tracing options through a mask property called ExecutionMask. This is a property of Engine.StationOptions.
    StationOptions.ExecutionMask
    The Execution Mask constant you want to set is:
    ExecMask_TraceIntoSetupCleanup
    Hope this helps! 
    Jervin Justin
    NI TestStand Product Manager

  • Reading parameters lists from a text file

    Hi All,
    Using CR XI R2 with VB6  and external .rpt files - - - - -
    In a VB6 app I use VB to loop through my tables to create dynamic parameter lists (CR XI is limited to the number of parameters it can create from the table). This works well but each time the user refreshes the report the same code is run to re-create the parameter list which is redundant and slows down the report(s).
    Is it possible to manually create a series of text files - say each morning - and then read the parameter lists from the text file(s) at runtime instead of doing it on the fly each time?
    Thanks in advance!
    Peter Tyler
    Geneva - Switzerland

    I find this sentence confusing:
    Is it possible to manually create a series of text files - say each morning - and then read the parameter lists from the text file(s) at runtime instead of doing it on the fly each time?
    Typically, runtime means on the fly - I think...
    So, I'm not sure if you are trying to read a saved data report and filter that saved data so that you do not have to hit the database(?).
    Creating a text file is beyond the support of this forum, though that should be a trivial exercise. Reading a text file and passing the results to a parameter is the same thing you are doing already, so I'm not sure where the hang up would be here(?)
    Or - rather than creating a text file, why not create a temp table and query it as you do when you loop through the tables to create dynamic parameter lists(?).
    I'm pretty lost here...
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • Using SQL stored procedures How to get the list of .rar files from e:\Tempbackup directories from the different remote desktop windows server and delete the .rar files which contains the current month and date

    Concept:
    Every month i need to find the list of .rar files from the
    E:/TempBackup directory from the different environments (remote desktop servers) and i need to delete the current month
    .rar files alone from the respective (E:/TempBackup) directory. below is example files structure inside the
    E:/TempBackup.
    example:
    zDROP_2014_08_31_Backups.rar
    zDROP_2014_09_31_Backups.rar
    zDROP_2014_10_31_Backups.rar
    from the above list i need to delete the zDROP_2014_08_31_Backups.rar(current month) file alone and also logs should be capture for this deletion.
    key words for this are zDROP and Current month and date.
    i need a stored procedure for this concept. could you please help on this.

    Hello,
    You can schedule an operating system task (Control Panel -> Schedule task) to either call a batch file or a PowerShell script.
    Please read the following resources for examples:
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/61373719-fffb-4d94-bdbe-7d8ed8620b44/delete-filesfolders-on-remote-servers-using-powershell?forum=winserverpowershell
    http://www.networknet.nl/apps/wp/archives/943
    http://jeffwouters.nl/index.php/2011/10/powershell-script-to-delete-files-older-that-a-week/
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Is there a way to keep Deployment Utility from modifying sequence file paths?

    While the Deployment Utility appears to be a great tool, it does some things that I'd rather it didn't. One is that it modifies all paths in sequence that it is including from Absolute to Relative. While this is a nice feature for many reasons, it is a show-stopper for our uses. This is because as part of our distribution process, we also use a checksum routine to verify that the sequence files being run by the operators on the Test Stations we deploy to are running the correct (unmodified) version of the test software. By using Absolute paths, we can detect and prevent accidental editing/changing of the sequences or paths that we have deployed, but if we have to use relative paths that is something that we could work with also.
    So my questions are: 1. Can this path update 'feature' be disabled? and 2. If not, then will pre-setting all paths in a sequence cause the deployment utility to only copy the file and not update it (thus changing it's checksum)?
    I'm going to test the latter when I have time, and if there are any other suggestions that might be useful, I'm love to hear them.
    Thanks,
    -Jack 

    Rick,
    In my experimentation to see if using relative paths, I was able to prove that a sequence that uses them will not be updated - with one caveat; if the path that is referenced by the sequence is not itself in a sub-directory, i.e.; it's in a different branch of the relative directory structure with respect to the Target (such as the TestStand directory), then the sequence file is always updated and re-saved. An example is that we have a sequence in the Tools directory that calls a DLL in the FrontEnd directory of the Components\User path. This re-saving causes a checksum change and screws up our verification mechanism. 
    It is unfortunate that I cannot prevent the deployment utility from modifying sequence files - Since we control the entire Test environment, including the location that software gets installed to - Test Station custodians can't go installing the software in a different location, or worse, multiple locations, so we don't have the issue to worry about.
    Because of this 'better' method, we now have to re-evaluate how to control the installed version of the software, or use a different installer, such as CVI, which while it has been working for us, has it 's own issues that we're trying to get away from. I'm glad that I am finding out about this now before I've locked down the sequences so that I can probably move the features in the Tools to the Frontend Callback sequence. 
    It's almost always the case thought that one persons forced enhancement is another's 'feature' or worse 'bug'.
    Thanks for confirming the behavior on the Deployment utility for me.
    -Jack

  • Web Matrix FTP Remote Connection Error - "Connection Error - Failure to get file list from server. An entry with the same key already exists."

    Does anyone have experience with this issue when connecting to a Linux FTP Web Server running a FTP Site?
    "Connection Error - Failure to get file list from server. An entry with the same key already exists."
    I cannot access the root directory of the ftp file server using Web Matrix 3. The site is .php based, and
    is accessible when connecting with FileZilla or Remote Connecting via FTP with Visual Studio.
    All sites have been deleted from Web Matrix, the user Application Data has been cleared and Web Matrix has been reinstalled.
    Issue Persists....
    Thanks in advance,
    Justin

    Turns out that the program leaves metadata in your app data folder that is not removed upon uninstallation of the software.
    This is incorporated to communicate with a file that uploaded into the ftp directory when publishing pages.

  • Get file list of directory files from URL ?

    Hello,
    GIven a URL directory, I would like to get a list of all the files in that URL directory:
    url = new URL("http//www.example.com");
    c = url.getContent();
    // Suppose there is a file http://www.example.com/myfile.txt
    // How do I get a list from c?
    Essentially, I want something equivalent to the File "list" method
    file = new File("H:/tmp");
    list = file.list()
    Thanks in advanced.

    Crosspost: http://forum.java.sun.com/thread.jsp?thread=518669&forum=17&message=2475782

  • Get filename from list of measurement files

    Hi,
    I would like to have the user select from a list of measurement files and pass that name and path to the write to measurement file VI.
    Ideally, when the data is written to the measurement file the user could add comments.
    Any ideas?
    Thanks
    Joel

    Hi Joel,
    maybe your questions a too generic?
    To select from a list of files you use the FileDialog (either ExpressVI or plain function) and it will give you a (full) path to the selected file.
    To save "comments" with data you can use TDMS file functions which allow to set "properties" for channels of data.
    To get more help than that you should better describe your problems and it's always a good idea to attach a VI of your tries to solve them...
    Examples are found by the help menu in LabVIEW: simply start the example finder
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • Import sequence files from 29.976 to 23.976....HELP!

    Hi All,
    Can someone help me with this very annoying issue.
    I work with Nuke X, Assimilate Scratch and  Maya.  99% of the time I am transfering image sequence files from program to program.
    When I import a sequence file into premiere cs5 or even cs4, the sequence comes in with a DEFAULT FRAME RATE of 29.976.
    I work in 24 or 23.976 frame projects. I ALWAYS have to go Rick click/Modify/ interpret footage and change to 23.976.
    Is there a way to set up cs5 to assume 23.976  as a default frame rate for image sequences?
    Also, Part two question:
    I bought a video card that uses the MPE in cs5 and it works great. I could layer the heck out of the timelime.
    But Only if the footage is from RED, Canon, quicktime, mpeg, etc.. If I  import my image sequence files, I DO NOT get fluid playback.
    Does anyone out there get fluid playback from targas, DPX, Tiffs?
    Thanks,
    Lou

    Holy Crap ! You Did it!!!
    I have been changing that freakin thing from 29.976 to 23.976 , ten times a day, for 2 years.
    I can 't believe it has been sitting there all that time. Then again, I wrote on Creative cow forum a while back, and nobody knew how to fix that.
    So...... you D Man
    A bug in CS5?
    Yeah that figures,  Of course it would be a bug in importing  sequences. Just my luck.
    I bought the new Mocha 2.0 which now has NUKEX importing.....
    I spent 3 days trying to figure out why my timeline was off by 1 frame when importing....
    Found out "Its a Bug" and had to wait for 2.01
    My whole life is all about updates.

Maybe you are looking for

  • Iphoto won't install on snow leopard

    Have an iMac that was running Tiger that required a complete hard drive reformat. Upgraded to Snow Leopard and went to the App Store to purchase iLife (or iPhoto at the very least) and the minimum requirements are 10.7.4 ... I do not want to update p

  • Diffrent node keep diffrent data in a replicated configure

    hi I use a simple configuration as below and I contain 4 node in cluster.most time it is no problem. but some time one node contain 199 objects, one contain 200 objects, and one contain 201 objects. AND sometime when I restart one node, the node data

  • ApphangB1 Captivate 8 failed to start on Windows 8.1

    Hi, I am trying to start Captivate 8 on my Windows 8.1 Desktop. But there still comes an apphangB1 failor and I don't know why. It is the same problem with the Captivate 7 trial. Other Adobe software is running fine! Do anybody have the same failur?

  • Lots of error messages - networking issue?

    On one of our iMacs I'm getting an error when trying to logon to Workgroup Manager - an error of type- 14473 occurred, and then I can't log on. On the same machine I've got an error on my virtual machine (Windows 7) which I'm trying to install a prin

  • Change my sql query where-clause in an extended controller

    Hello, i am trying to change my sql query where-clause in an extended controller personAplListVO.setWhereClause(null); // first set to null personAplListVO.setWhereClauseParams(null); // first set to null personAplListVO.setWhereClause(personAplListV