Regular expression checker

hi,
i am new to regular expression. i would like to know if there is a tool to check regular expressions? the tool should based on the entered regular expression display the result.
thanks

import java.util.regex.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class JavaRegxTest extends JFrame implements ActionListener{
  JTextField regxInput, textInput;
  JButton doMatchButton, resetButton, exitButton;
  JTextArea resultsArea;
  public JavaRegxTest(){
    super("JavaRegxTest");
    setDefaultCloseOperation(EXIT_ON_CLOSE);
    Container cp = getContentPane();
    cp.setLayout(new GridLayout(2, 1));
    JPanel upPanel = new JPanel(new GridLayout(5, 1));
    upPanel.add(new JLabel("regular expression:   "));
    upPanel.add(regxInput = new JTextField(50));
    upPanel.add(new JLabel("sample text:          "));
    upPanel.add(textInput = new JTextField(50));
    JPanel buttonPanel = new JPanel(new GridLayout(1, 3));
    buttonPanel.add(resetButton = new JButton("RESET"));
    buttonPanel.add(doMatchButton = new JButton("MATCH"));
    buttonPanel.add(exitButton = new JButton("EXIT"));
    upPanel.add(buttonPanel);
    resetButton.addActionListener(this);
    doMatchButton.addActionListener(this);
    exitButton.addActionListener(this);
    resultsArea = new JTextArea(20, 60);
    resultsArea.setEditable(false);
    JScrollPane jsp = new JScrollPane(resultsArea);
    cp.add(upPanel);
    cp.add(jsp);
    setSize(550, 700);
    setVisible(true);
  public void actionPerformed(ActionEvent e){
    JButton btn = (JButton)(e.getSource());
    if (btn == exitButton){
      System.exit(0);
    else if (btn == resetButton){
      reset();
    else if (btn == doMatchButton){
      doMatch();
  /* clear text */
  void reset(){
    regxInput.setText("");
    textInput.setText("");
    resultsArea.setText("");
  /* display match results */
  void doMatch(){
    resultsArea.setText(resultsArea.getText() + "REGX=" + regxInput.getText()
     + "\n" + "TEXT=" + textInput.getText() + "\n");
    try{
      Pattern pat = Pattern.compile(regxInput.getText());
      String sampleText = textInput.getText();
      Matcher mat = pat.matcher(sampleText);
      int gc = mat.groupCount();
      for (int i = 0; i <= gc; ++i){ //for each capture group
        resultsArea.setText(resultsArea.getText()
         + "GROUP" + i + " : \n"); //GROUP0 == whole match
        while (mat.find()){ //display every matched parts
          resultsArea.setText(resultsArea.getText()
           + " " + mat.group(i) + "\n");
        mat.reset(sampleText); //go to next group
    catch(Exception e){
      resultsArea.setText(e.toString());
  public static void main(String[] args){
    JavaRegxTest jrt = new JavaRegxTest();
}

Similar Messages

  • Regular expression check in form

    Hi All,
    I am trying to plugin Regular expression check on the user form, for different fields. Can I do it in a java file and call this java class file in the validation part? if yes how can i do it if no what are the other alternatives?
    Thanks in advance

    I did the following using Xpress and a regular expression "if (/\D/.test(Val))" in JavaScript to check for non-numeric characters in a field.
              <Field name=':variables.approvalSAPID'>
                <Display class='Text'>
                  <Property name='title' value='SAP ID of Approving Manager'/>
                  <Property name='required'>
                    <Boolean>true</Boolean>
                  </Property>
                  <Property name='maxLength' value='8'/>
                  <Property name='size' value='8'/>
                  <Property name='help' value='SAP ID of the person who is being asked to approve request'/>
                </Display>
                <Validation>
                  <cond>
                    <and>
                      <eq>
                        <length>
                          <ref>:variables.approvalSAPID</ref>
                        </length>
                        <i>8</i>
                      </eq>
                      <script>
                          var Val = env.get(':variables.approvalSAPID');
                          testMe(Val);
                          function testMe (Val) {
                                                 if (/\D/.test(Val))
                                                    return (false);
                                                 else
                                                    return (true);
                        </script>
                    </and>
                    <null/>
                    <s>! The SAP ID of the Approving Manager must be an 8 digit number !</s>
                  </cond>
                </Validation>
              </Field>
    Larry L. Viars
    Sr. Systems Programmer
    Enterprise Systems Management
    CenterPoint Energy LLC.

  • Regular expression: check for the presence of special characters.

    I have the following requirement:
    I need to check for the presence of the following characters in a keyword: @, #, > if any of these characters are present, then they need to be stripped off, before going further. Please let me know the regular expression to check for these characters.

    I am trying to extend the same logic for the following characters:
    .,‘“?!@#%^&*()-~<>[]{}\+=`©® . here is the code fragment:
    Pattern kValidator = Pattern.compile("[\\.,\\‘\\“?!@#%^&*()-~<>[]{}\\+=\\`©®]");
    Matcher kMatcher = kValidator.matcher(keyWord);
    if (kMatcher.find(0)) {
    keyWord = keyWord.replaceAll("[.,\\‘\\“?!@#%^&*()-~<>[]{}\\+=\\`©®]", " ");
    }I get the following error. This error is from the weblogic command window. I dont understand these special characters.
    Error:
    28 Oct 2008 12:27:48 | INFO  | SearchController   | Exception while fetching search results in controller:Unclosed character class near index
    39
    [\.,\&#915;Çÿ\&#915;Ç£?!@#%^&*()-~<>[]{}\+=\`&#9516;&#8976;&#9516;«]
                                           ^
    java.util.regex.PatternSyntaxException: Unclosed character class near index 39
    [\.,\&#915;Çÿ\&#915;Ç£?!@#%^&*()-~<>[]{}\+=\`&#9516;&#8976;&#9516;«]
                                           ^
            at java.util.regex.Pattern.error(Pattern.java:1650)
            at java.util.regex.Pattern.clazz(Pattern.java:2199)
            at java.util.regex.Pattern.sequence(Pattern.java:1727)
            at java.util.regex.Pattern.expr(Pattern.java:1687)
            at java.util.regex.Pattern.compile(Pattern.java:1397)
            at java.util.regex.Pattern.<init>(Pattern.java:1124)
            at java.util.regex.Pattern.compile(Pattern.java:817)

  • Regular expression check

    Hi,
    I want to check if a certain VARCHAR2 field contains a string that conforms to a certain regular expression: "[a-zA-Z0-9_\-]+" (in other words the string may only contain the characters a-z case insensitive and/or numbers 0-9 and/or an underscore and/or a dash. Is this possible with an Oracle 9i database and/or can this be done without using regular expressions?
    Regards,
    Peter

    Have a look at the TRANSLATE function
    Example;
    select 'TRUE' from DUAL
    where'a-zA-Z0-9_\-'  =
                          TRANSLATE('a-zA-Z0-9_\-',
                                                  '01234567890_-abcdefghijklmnopqrstuvwxyzABCDFEGHIJKLMNOPQRSTUVWXYZ',
                                                  '01234567890_-abcdefghijklmnopqrstuvwxyzABCDFEGHIJKLMNOPQRSTUVWXYZ') ;
    'TRU
    TRUE
    Here I add an  *
    select 'TRUE' from dual
    where 'a-*zA-Z0-9_\-*' =
                        TRANSLATE('a-zA-Z0-9_\-',
                                                 '01234567890_-abcdefghijklmnopqrstuvwxyzABCDFEGHIJKLMNOPQRSTUVWXYZ',
                                                 '01234567890_-abcdefghijklmnopqrstuvwxyzABCDFEGHIJKLMNOPQRSTUVWXYZ');
    no rows selected
    Hi,
    I want to check if a certain VARCHAR2 field contains a string that conforms to a certain regular expression:"[a-zA-Z0-9_\-]+" (in other words the string may only contain the characters a-z case insensitive
    and/or numbers 0-9 and/or an underscore and/or a dash.
    Is this possible with an Oracle 9i database and/or can this be done without using regular expressions?
    Regards,
    Peter

  • How to set keepalive check for regular expression

    Hi
    We are using css110501 CSS.
    Right now the keepalives on services are set using hash values.
    But i want to change this keepalives to implement keepalives with regular expression checking.
    Any Ideas?

    The CSS supports it's own native scripting language that can be used to write keepalives among other things.
    Here is an example of a script that I wrote to check a page for some specific text:
    ! Filename: ap-kal-statpage
    ! Parameters: None - must be coded in script
    ! Description:
    ! This script will attempt to connect to a host and
    ! "GET" an html page. The script checks the contents
    ! of the page for a particular string. If the string
    ! is found, the script passes.
    ! Failure Upon:
    ! 1. The correct arguments are not supplied.
    ! 2. The CSS is unable to connect to the host.
    ! 3. The string is not found in the page.
    no echo
    if ${ARGS}[#] "LT" "4"
    echo "Usage: ap-kal-portlist \'Hostname Port Page String ...\'"
    exit script 1
    endbranch
    set host "${ARGS}[1]"
    set port "${ARGS}[2]"
    set page "${ARGS}[3]"
    set string "${ARGS}[4]"
    set EXIT_MSG "Host ${host} not responding on TCP port ${port}."
    socket connect host ${host} port ${port} tcp
    socket send ${SOCKET} "GET ${page} HTTP/1.0\n\n"
    set EXIT_MSG "String was not found."
    socket waitfor ${SOCKET} "${string}" 200
    socket disconnect ${SOCKET}
    echo "String ${string} was found."
    no set EXIT_MSG
    exit script 0

  • Regular Expressions - Problem

    Hi @ all,
    I need a complicate regular expression, I don´t know.
    I have a big folder with many .htm pages (800-1000) and I have to do the following:
    http://www.domain.de/ab%32-xyz?myshop=123
    I have to delete the "ab%32-xyz", the problem is, that in this are, there could be every symbol, letter or number.
    So the area between "http://www.domain.de/" and "?myshop=123" (these 2 areas are everytime identical in all documents) shoud be deleted.
    Could everyone say me, how to do this with regular expressions in dreamweaver?
    Thanks,
    Felix
    P.S.: Sorry, my Engish is not so good, I´m from Germany

    Do you want to replace the random text with anything?
    If not, this is how you do it in DW:
    Make a backup of the folder you want to edit, just in case anything goes wrong
    Edit > Find and Replace
    In the Find and Replace dialog box, select Folder from the "Find in" drop-down menu, and select the folder you want to work with.
    Select Source Code from the Search drop-down menu.
    Put the following code in the Find text area:
    (http://www\.domain\.de/)[^?]+(\?myshop=123)
    Put the following code in the Replace text area:
    $1$2
    In Options, select the "Use regular expression" check box.
    Click Replace All. Dreamweaver will warn you that the operation cannot be undone in pages that aren't currently open. As long as you have made a backup, click OK to perform the operation.

  • Uri regular expression matching

    Hi, for some reason I cannot get a uri to match the following regular expression check.
    <If $uri !~ '^/dir/\?somename=(.*)'>
    NameTrans fn="restart" uri="/shownomatch?uriwas=$uri"
    </If>
    <Else>
    NameTrans fn="restart" uri="/showamatch?value=$1"
    </Else>I can see in the page that is restarted to that it should match by printing out the uriwas parameter.
    An example uri that should match but doesn't is /dir/?somename=5f801297-a8f6-42a4-933d-660f2120cd0d
    Any thoughts? I've tried a few different valid regular expressions, but cannot get a match.

    Thank you all for the help.
    My main goal was to provide verification that a user has logged in and has the proper authority to access a directory/resource. What I believe I now have is a check to verify that the user has a required cookie and that the value in the cookie matches the parameter in $query.
    Below is what I now have in the server's obj.conf file. Let me know if you think there is something that I am missing.
    <If $uri =~ '^/ValidationApp/*'>
      <Client security="false">
        NameTrans fn="redirect" url-prefix="https://server.domain.edu"
      </Client>
    </If>
    <If $uri !~ '^/ValidationApp/*'>
      <Client security="true">
        NameTrans fn="redirect" url-prefix="http://server.domain.edu"
      </Client>
    </If>
    <If $uri =~ "/SomeDir/*">
      <If not defined $query or not defined $cookie{"$(lookup('cookiemap.conf','/SomeDir'))"} or $query !~ 'uuid=(.*)' or $& ^ $cookie{"$(lookup('cookiemap.conf','/SomeDir'))"}>
        NameTrans fn="restart" uri="/ValidationApp/CookieCheckServlet?loc=$uri&uid=$(uuid())&ReqInfo=$(lookup('cookiemap.conf','/SomeDir'))"
      </If>
    </If>
    <If $uri =~ "/AnotherDir/*">
      <If not defined $query or not defined $cookie{"$(lookup('cookiemap.conf','/AnotherDir'))"} or $query !~ 'uuid=(.*)' or $& ^ $cookie{"$(lookup('cookiemap.conf','/AnotherDir'))"}>
        NameTrans fn="restart" uri="/ValidationApp/CookieCheckServlet?loc=$uri&uid=$(uuid())&ReqInfo=$(lookup('cookiemap.conf','/AnotherDir'))"
      </If>
    </If>The servlet used in the restart checks to see if the required cookie exists (ReqInfo) and if the uuid value (uid) is set in the session. If so it forwards to the uri (loc). If not it forwards to a login form the checks the user ID/password. It adds the uid to the session, creates the cookie, and forwards back to the requested uri.
    The Client security checks are down to make sure the user uses HTTPS when entering their user ID/Password.

  • Regular Expressions for textfield syntax checking while typing?

    Hi all,
    my application has a textfield for entering customer numbers. The customer numbers have a certain syntax which I want to have checked while the user types.
    According to our company's style guide, the textfield's background color has to be
    - RED in case of an error,
    - WHITE in case of correct input,
    - YELLOW when the input is incomplete but the beginning is correct.
    To check the syntax with Regular Expressions is easy for the WHITE and RED cases. But I'm struggling with the YELLOW case.
    public static boolean checkTest(String s) {
         String regExp = "(\\d{6,8},\\d{1,3},\\d{1,3},\\d{1,2})";
         return Pattern.matches(regExp, s);
    }The above method returns true for the following examples:
    "12345678,1,2,3"
    "123456,11,22,33"
    "1234567,123,123,12"
    I now need another method which returns true if the user entered a valid beginning, for example:
    "123"
    "1234567,"
    "123456,123,1"
    Any ideas? I would be glad to get this done...

    @notivago
    In the meantime I also came up with a pattern to
    check the YELLOW case:
    String partly =
    "\\d{0,8},?|\\d{6,8},\\d{0,3},?|\\d{6,8},\\d{1,3},\\d{
    0,3},?|\\d{6,8},\\d{1,3},\\d{1,3},\\d{0,2}";Sounds good to me.
    It seems to work. But my actual goal is to do such
    color-coded syntax checking for other number types
    (other patterns) as well. And it should be easy to
    add or change number types.I cant figure how to do that for now.
    So it would be nice to have a generic way to generate
    the YELLOW-pattern from the other one. Is it
    possible? Probably, but I cannot come up with any idea now.
    Is there a better solution than my one
    ("String partly" above)? Something I can just append
    to the original pattern for example?There are others, but it is hard to say what would be better or worse.

  • Checking a number sequence with regular expressions

    Hello,
    Suppose I have a text in the pattern:
    A1=ha,A2=bla,A3=cha,...
    I don't know how many sections of "A#=$" (# denotes number, $ denotes text) will be in the text, but I want to verify that the numbers of the A's form the natural ascending number sequence (i.e 1,2,3,...). I prefer to use regular expressions to do this, but if there's another way, I will be glad to hear it too.
    Therefore my question is: How can I use regular expressions to check for a sequence of numbers? I know I can search for groups I've caught previously in the expression, but how can I compute the next number in the sequence from the group and search for the result?
    Thank you very much!

    What I'd do--and I'm not saying this is optimal, just what pops immediately to mind--is have a regex that matches "A(\\d+)=" (assuming the ha, bla, cha can never be "A1" etc.--if they can, you can still do it, but it's more complicated), then you iterate with the Matcher, and each time, you get the Integer.valueOf what you matched. You keep track of the last value, and compare the current to the last. If current is < last (or <= last, depending on your requirements), fail.
    Something like this. I don't recall Matcher's methods off the top of my head, so you'll have to fix the details.
    Matcher m = Pattern.matcher("A(\\d+)=");
    int maxSoFar = Integer.MIN_VALUE;
    while (m.matches(input)) {
        int current = Integer.parseInt(m.getMatchedField("$1"));
        if (current <= maxSoFar) {
            // fail
        else {
            maxSoFar = current;
    } maxSoFar =

  • Checking valid e-mail's using Regular expressions

    Hey buddies ,
    I desperately need some help here. I need to develop a generic method that wiull use regular expressions and patterns to validate an e-mail.
    Does anyonw have any idea on how to do this. And if possible please share some code with me.
    Thanks a lot

    You can do regular expresions in java using java.util.regex.*:
    import java.util.regex.*;
       Pattern p = Pattern.compile("\\S++\\s++");
       Matcher m = p.matcher(sInputLine);
       if(m.find()){
          sUser = m.group().trim();
       }For more info on regular expressions in java, check out the javadocs:
    http://java.sun.com/j2se/1.4.2/docs/api/java/util/regex/Pattern.html

  • Regular expression to check a value if it contains a specific word.

    Hi All,
    How can i check if a certain word exists in a value in regular expression ?
    I have an attribute called Race. Race can contain the following:
    White, Non-Hispanic
    Black, Non-Hispanic
    White, Non Hispanic
    Black, Non Hispanic
    White, NonHispanic
    Non-Hispanic, white
    Non Hispanic - black
    What i want is to check if my value contains the word "NON" (NON can be at the beginning, middle or end), if it does, parse it and return it.
    This is what I have, however I want to make sure it covers all cases and not missing anything else
    select REGEXP_SUBSTR(UPPER(trim('Black, Non-Hispanic')), '[NON]+') from dual;Thanks in advance.

    Rooney wrote:
    Could you please explain what are the 2 ones's for ?The two 1 are not really needed for this. It is just taht the syntax requires those parameters when I add the fifth parameter.
    http://docs.oracle.com/cd/E14072_01/server.112/e10592/functions148.htm
    First 1 is where the search starts (same as in substr('Abc',1))
    Second 1 is the number of occurences. Here meaning return the first occurence that was found. Replace it with 2 in my next example to see a (very slight) difference.
    Also 'NON' alone will not cover all cases ?But you don't have non alone. You have regexp with non + upper. The 'i' replaces the upper. Also the output is slightly different. the 'i' version will return the same capitalization as it was found in the original. It depends a little what you want to achieve. And of cause INSTR will give the same info as your version. if the result is > 0 it means NON was found.
    with testdata as (select 'White,Non-Hispanic' str from dual union all
                      select 'Non-White,nOn-Hispanic' str from dual union all
                      select 'White,Hispanic' str from dual
    /* end of test data creation */
    select str,
          REGEXP_SUBSTR(UPPER(TRIM(str)), 'NON') regexp1,
          REGEXP_SUBSTR(str, 'NON',1,1,'i') regexp2,
          instr(upper(str),'NON') instr
    from testdata;
    STR                    REGEXP1                REGEXP2                INSTR
    White,Non-Hispanic     NON                    Non                        7
    Non-White,Non-Hispanic NON                    Non                        1
    White,Hispanic                                                           0

  • Regular expression for domain check

    Hi! I�m trying to check whether a String actually contains a domain using the following regular expression:
    ([0-9a-zA-Z������-]{1,10}[.]){1,6}[0-9a-zA-Z]{1,5}$
    I�m testing two String[] with domains. One of them is filled with domains that should be ok, the other is filled with illegal domain names.
    String[] shouldbetrue = {"yahoo.co.uk", "b�cker.b�rsen.se", "begagnadeb�cker.se", "subdomain.subdomain.subdomain.domain.com"};
    String[] shouldbefalse = {"yahoo.co_uk", "mj�lk.b�rsense", "begagnadeb�cker@se", "subdomain.subdomain\\subdomain.domain.com"};
    Performing the test with JUnit I get the following output:
    junit.framework.AssertionFailedError: return value for subdomain.subdomain\subdomain.domain.com expected:<false> but was:<true>, but I can�t understand why backslash is accepted. I�m rather new to regular expressions so I might miss something obvious, that�s why I�m asking :).
    Thanks in advance,
    Alex

    Sorry, steve, but in a character class, the dot just
    matches a dot. It won't hurt to add the backslash,
    but it isn't necessary.So it won't Learn something about regexes everytime I look at them.
    >
    Alex, are you using matches() or find() in this test?
    If you're using find(), that would explain it, since
    e the part that follows the backslash does
    match your regex. If you use matches() or add a '^'
    to the beginning of the regex (or both), it should
    work right.

  • Regular Expression to Check number with at least one decimal point

    Hi,
    I would like to use the REGEX_LIKE to check a number with up to two digits and at least one decimal point:
    Ex.
    10.1
    1.1
    1
    12
    This is what I have so far. Any help would be appreciated. Thanks.
    if regexp_like(v_expr, '^(\d{0,2})+(\.[0-9]{1})?$') t

    Hi,
    Whenever you have a question, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all the tables involved, and the results you want from that data.
    Explain, using specific examples, how you get those results from that data.
    Always say what version of Oracle you're using (e.g. 11.2.0.2.0).
    See the forum FAQ: https://forums.oracle.com/message/9362002
    SammyStyles wrote:
    Hi,
    I would like to use the REGEX_LIKE to check a number with up to two digits and at least one decimal point:
    Ex.
    10.1
    1.1
    1
    12
    This is what I have so far. Any help would be appreciated. Thanks.
    if regexp_like(v_expr, '^(\d{0,2})+(\.[0-9]{1})?$') t
    Do you really mean "up to two digits", that is, 3 or more digits is unacceptable?  What if there are 0 digits?  (0 is less than 2.)
    Do you really mean "at least one decimal point", that is, 2, 3, 4 or more decimal points are okay?  Include some examples when you post the sample data and results.
    It might be more efficient without regular expressions.  For example
    WHERE   TRANSLATE ( str              -- nothing except digits and dots
                      , 'A.0123456789'
                      , 'A'
                      )   IS NULL
    AND     str           LIKE '%.%'     -- at least 1 dot
    AND     LENGTH ( REPLACE ( str       -- up to 2 digits
                    )     <= 2

  • Regular expression to check the sequence of strings

    HI,
    I am validating an EDI document like as follows
    ISA*XX*XXXXXXXXXXXXXXX*XX*XXXXXXXXXXXXXXX*030130*0912*~IEA*1*000005900~
    I need to create a regular expression which checks ISA should always occur before IEA.
    Please help me if you have any hints.
    Thanks.

    Thanks.I had taken that into consideration.
    But using regular expression I could say
    ISA* only once
    IEA* only once
    And
    ISA before IEA
    Any hints how to specify "before"/sequence using Regular expression ?
    I agree sometime using basic String operation we can do this.

  • Unique regular expression to check if a string contains letters and numbers

    Hi all,
    How can I verify if a string contains numbers AND letters using a regular expression only?
    I can do that with using 3 different expressions ([0-9],[a-z],[A-Z]) but is there a unique regular expression to do that?
    Thanks all

    Darin.K wrote:
    Missed the requirements:
    single regex:
    ^([[:alpha:]]+[[:digit:]]+|[[:digit:]]+[[:alpha:]])[[:alnum:]]*$
    You either have 1 or more digits followed by 1 or more letters or 1 or more letters followed by 1 or more digits. Once that is out of the way, the rest of the string must be all alphanumerics.  The ^ and $ make sure the whole string is included in the match.
    (I have not tested this at all, just typed it up hopefully I got all the brackets in the right place).
    I think you just made my point.  TWICE.  While the lex class would be much more readable as a ring.... I know all my brackets are in the correct places and don't need to hope.
    Jeff

Maybe you are looking for

  • How to find out version of Jakarta-ORO in Weblogic.jar

    Our environment is Weblogic 6.1 SP3 on Win2k professional with JDK 1.3.1_03 (build 1.3.1_03-b03). We use Protomatter Syslog in our application and it uses Jakarta ORO classes for regexp parsing. Since Weblogic jar already has the classes we do not ha

  • Problems with players

    Hi! I've a player and I want to grab a frame from it when I pause it, the problem is that i added a controllerListener to the player and when I try to use: FrameGrabbingControl fgc = (FrameGrabbingControl)player.getControl("javax.media.control.FrameG

  • Efficiency of inner join

    Hi, i have a  select query which implements 5 inner joins . how can it be optimised for efficiency ? is there any alternative to avoid joins  to improve the efficiency  ? regards, manoj

  • How to tune waits as per given statspaack output here

    Hi Following is the out put of statspack. can anywone help to resolve this Top 5 Timed Events ~~~~~~~~~~~~~~~~~~ % Total Event Waits Time (s) Ela Time CPU time 3,131 95.03 log file sync 18,477 55 1.67 log file parallel write 18,981 49 1.50 db file pa

  • Re install Windows

    I reinstalled Windows and now iTunes says I have 3 authorized PC's?! what da **** is that? How I can take that one extra PC of, as I would understand it could go by IP or whatever, but now all time I will put fresh OS on my PC I will loose another au