How do i optimize the code

Here is the code for indexing.
i want to optimize the code.
please give me some suggestions.
thank you
mitesh...
package search_engine;
import java.util.*;
import java.io.*;
import java.sql.*;
import java.awt.*;
import javax.swing.*;
public class Indexer implements Runnable
public static boolean stopFlag=true;
String dirName="c:/search/repository";
File file=new File(dirName);
String fList[]=file.list();
FileReader indCountRead;
StreamTokenizer countTok;
public void run()
               int fileNum;
               try{
FileReader indCountRead=new FileReader("c:/search/resources/indexcount.txt");
StreamTokenizer countTok=new StreamTokenizer(indCountRead);
countTok.resetSyntax();
                         countTok.wordChars(33,65535);
                         countTok.whitespaceChars(0,' ');
                         countTok.eolIsSignificant(false);
countTok.nextToken();
fileNum=Integer.parseInt(countTok.sval);
indCountRead.close();
                    while(stopFlag && fileNum <= fList.length)
     String s="c:/search/repository/doc"+fileNum+".txt";
     FileReader fr;
                    StreamTokenizer tok;
                    Table tab;
                    try
                              fr=new FileReader(s);
                              tok=new StreamTokenizer(fr);
                              tok.resetSyntax();
                              tok.wordChars(33,65535);
                              tok.whitespaceChars(0,' ');
                              tok.eolIsSignificant(false);
          //FrameMain.indFrame.jTextFieldFile.setText("File:"+s);
                         tab=new Table();
                              tok.nextToken();
     String s1=tok.sval;
                              while(tok.nextToken()!=tok.TT_EOF)
                                   //FrameMain.indFrame.jTextFieldToken.setText("Token:"+tok.toString());
     if(tab.avoidToken(tok.sval)==false)
                                   if(tab.matchedRecord(tok.sval,s1)==false)
                                        tab.insertRecord(tok.sval,s1);
                                   else tab.updateRecord(tok.sval,s1);
                         }//while end
}//end of try
catch(IOException e)
//System.out.println("File Error1"+e.getMessage());
//FrameMain.indFrame.jTextFieldFile.setText("ERROR:"+e.getMessage());
                              fileNum++;
               }//end outer while     
//IndexerFrame.jTextFieldFile.setText("");
//FrameMain.indFrame.jTextFieldToken.setText("");
//FrameMain.indFrame.jButtonStop.setEnabled(false);
//FrameMain.indFrame.jButtonRun.setEnabled(false);
//FrameMain.indFrame.jLabelWarning.setText("");
                         FileWriter indCountWrite=new FileWriter("c:/search/resources/indexcount.txt",false);
                         Integer count=new Integer(fileNum);
                         indCountWrite.write(count.toString(),0,count.toString().length());
                         indCountWrite.close();     
if (fileNum>fList.length)
//IndexerFrame.jLabelPop.setText("ALL FILES INDEXED !! ");
stopFlag=true;
               }//end of outer try
catch(Exception e)
          //FrameMain.indFrame.jTextFieldFile.setText("ERROR:"+e.getMessage());
     }//end of run
}//end of indexer
          class Table
                    String connectionAddress=
                         "jdbc:odbc:mitesh";
                    Connection con;
                    Statement stmt;
                    ResultSet rs;
                    public boolean avoidToken(String token)
                    if(token.equalsIgnoreCase("is")||
                    token.equalsIgnoreCase("are")||
                    token.equalsIgnoreCase("am")||
                    token.equalsIgnoreCase("was")||
                    token.equalsIgnoreCase("were")||
                    token.equalsIgnoreCase("have")||
                    token.equalsIgnoreCase("has")||
                    token.equalsIgnoreCase("had")||
                    token.equalsIgnoreCase("may")||
                    token.equalsIgnoreCase("might")||
                    token.equalsIgnoreCase("must")||
                    token.equalsIgnoreCase("shall")||
                    token.equalsIgnoreCase("will")||
                    token.equalsIgnoreCase("would")||
                    token.equalsIgnoreCase("should")||
                    token.equalsIgnoreCase("can")||
                    token.equalsIgnoreCase("could")||
                    token.equalsIgnoreCase("ought")||
                    token.equalsIgnoreCase("to")||
                    token.equalsIgnoreCase("do")||
                    token.equalsIgnoreCase("did")||
                    token.equalsIgnoreCase("does")||
                    token.equalsIgnoreCase("a")||
                    token.equalsIgnoreCase("an")||
                    token.equalsIgnoreCase("the")||
                    token.equalsIgnoreCase("in")||
                    token.equalsIgnoreCase("of")||
                    token.equalsIgnoreCase("at")||
                    token.equalsIgnoreCase("as")||
                    token.equalsIgnoreCase("into")||
                    token.equalsIgnoreCase("for")||
                    token.equalsIgnoreCase("from")||
                    token.equalsIgnoreCase("while")||
                    token.equalsIgnoreCase("if")||
                    token.equalsIgnoreCase("then")||
                    token.equalsIgnoreCase("."))
                              return true;
                    else
                              return false;
          public void insertRecord(String key,String fileAddress)
                         String insertString;
                         insertString="insert into INDEXER"+
                         " values('"+key.toLowerCase()+"','"+fileAddress+"',1)";
          try
                    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");//myDriver.ClassName");
          catch(java.lang.ClassNotFoundException e)
                    System.err.print("ClassNotFoundException: ");
                    System.err.println(e.getMessage());
          try
                    con=DriverManager.getConnection(connectionAddress,"",
                    stmt=con.createStatement();
                    stmt.executeUpdate(insertString);
                    stmt.close();
                    con.close();
          catch(SQLException ex)
                    System.err.println("SQLException2: "+ex.getMessage());
          public boolean matchedRecord(String key,String fileAddress)
                    boolean flag=false;
                    String query;
                         query=" select KEYWORD,URLADDRESS from INDEXER "+
                         "where KEYWORD='"+key.toLowerCase()+"' and URLADDRESS='"+fileAddress+"'";
          try
                    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
          catch(java.lang.ClassNotFoundException e)
                    System.err.print("ClassNotFoundException: ");
                    System.err.println(e.getMessage());
          try
                    con=DriverManager.getConnection(connectionAddress,"",
                    stmt=con.createStatement();
rs=stmt.executeQuery(query);
                    if(rs.next()==true)
                         flag= true;
                         //System.out.println(flag);
                    else
                         flag= false;
                         //System.out.println(flag);
                    stmt.close();
                    con.close();
          catch(SQLException ex)
                    System.err.println( "SQLException3: "+ex.getMessage());
                    return flag;
          public void updateRecord(String key,String fileAddress)
                         String updateString;
                         updateString="update INDEXER"+
                         " set FREQUENCY=FREQUENCY+1" + " where KEYWORD='"+key.toLowerCase()+"' and URLADDRESS='"+fileAddress+"'";
          try
                    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
          catch(java.lang.ClassNotFoundException e)
                    System.err.print("ClassNotFoundException: ");
                    System.err.println(e.getMessage());
          try
                    con=DriverManager.getConnection(connectionAddress,"",
                    stmt=con.createStatement();
                    stmt.executeUpdate(updateString);
                    stmt.close();
                    con.close();
          catch(SQLException ex)
                    System.err.println("SQLException4: "+ex.getMessage());
          }

i even want to search for Html files.
for that i have written a code for it, and we all call it as crawler.
Please check out.
thank you
mitesh....
import java.text.*;
import java.awt.*;
import java.awt.event.*;
import java.sql.*;
import java.util.*;
import java.net.*;
import java.io.*;
import java.io.PrintWriter;
public class Crawler{
String ret;
public static final String DISALLOW = "Disallow:";
//public static final int SEARCH_LIMIT = 150;
public static int fileCounter=1;
CrawlTable tab;
     public Crawler() {
     tab=new CrawlTable();
     URLConnection.setDefaultAllowUserInteraction(false);
Properties props= new Properties(System.getProperties());
props.put("http.proxySet", "true");
props.put("http.proxyHost", "webcache-cup");
props.put("http.proxyPort", "8080");
Properties newprops = new Properties(props);
System.setProperties(newprops);
String avoidHTMLTag(String s){
StringBuffer sb=new StringBuffer();
sb.ensureCapacity((s.length())*2);
sb.append(s);
int start = 0;
int end = 0;
try{
                         while (((start = sb.indexOf("<",start)) != -1)|((end = sb.indexOf(">",start)) != -1))
                         {          try{
                                        if(end<start)
                                             continue;
               sb.replace(start,end+1," ");
               start--;
               end=start;
               catch( Exception ex)
               System.out.println("ERROR:HTML FORMAT");
                         String s1=new String (sb);
     return s1;
catch(Exception e)
ret="WRONG HTML FORMAT";
return "";
}//end of htmlavoid
public String start (String strURL)
     try
FileReader clCountRead=new FileReader("c:/search/resources/crawlcount.txt");
StreamTokenizer countTok=new StreamTokenizer(clCountRead);
countTok.resetSyntax();
     countTok.wordChars(33,65535);
     countTok.whitespaceChars(0,' ');
     countTok.eolIsSignificant(false);
countTok.nextToken();
Crawler.fileCounter=Integer.parseInt(countTok.sval);
     clCountRead.close();
     //String strURL= CrawlerFrame.jTextFieldUrlAddress.getText();
     //out.println("CRAWLER STARTING....");
     //CrawlerFrame.jListURL.removeAll();
     int counter=0;
     boolean condition;
     URL url;
try
          url = new URL(strURL);
          if (!tab.contains(strURL))
          // test to make sure it is robot-safe!
               //if (robotSafe(url))
          tab.insertRecord(strURL);
catch (MalformedURLException e)
          if(!strURL.equals("")){
ret="ERROR: invalid URL " + strURL;
          //CrawlerFrame.jTextFieldUrlAddress.setText("");
     while(((condition=tab.isRecordFalse())||strURL.length()!=0))
               if(condition)
                    strURL = tab.retrieveFirst();
                    //CrawlerFrame.jTextFieldUrlAddress.setText(strURL);
                    tab.updateRecord(strURL);
                    //setStatus("searching " + strURL);
               //CrawlerFrame.jListURL.add(strURL);
               else
                    strURL="";
               if (strURL.length() == 0)
//ret="Enter a starting URL then press RUN";
               break;
          try
               url = new URL(strURL);
          catch (MalformedURLException e)
ret="ERROR: invalid URL " + strURL;
               tab.delete(strURL);
               //CrawlerFrame.jTextFieldUrlAddress.setText("");
               strURL="";
               continue;
          //tab.updateRecord(strURL);
          // CrawlerFrame.jListURL.add(strURL);
          // can only search http: protocol URLs
          if (url.getProtocol().compareTo("http") != 0)
               break;
          // test to make sure it is before searching
          //if (!robotSafe(url))
               //break;
          try
               // try opening the URL
               URLConnection urlConnection = url.openConnection();
               urlConnection.setAllowUserInteraction(false);
               InputStream urlStream = url.openStream();
               String type
               = URLConnection.guessContentTypeFromName(url.getFile());
               if (type == null)
               break;
               if (type.compareTo("text/html") != 0)
               break;
               byte b[] = new byte[1000];
               int numRead = urlStream.read(b);
               String content = new String(b, 0, numRead);
               while (numRead != -1)
               //if (Thread.currentThread() != CrawlerFrame.clThread)
                    //break;
               numRead = urlStream.read(b);
               if (numRead != -1)
                    String newContent = new String(b, 0, numRead);
                    content += newContent;
String fileString=content;
fileString=fileString.replace('(',' ');
fileString=fileString.replace(')',' ');
fileString=fileString.replace(',',' ');
fileString=fileString.replace('.',' ');
fileString=fileString.replace(':',' ');
fileString=fileString.replace('?',' ');
fileString=fileString.replace('!',' ');
fileString=fileString.replace('@',' ');
fileString=fileString.replace('\'',' ');
fileString=fileString.replace('\"',' ');
fileString=strURL+" "+fileString;
//fileString.replace('',' ');
File htmlDoc=new File("c:/search/repository/doc"+fileCounter+".txt");
FileWriter fp=new FileWriter(htmlDoc);
fp.write(avoidHTMLTag(fileString));
//fp.write(fileString);
fp.close();
fileCounter++;
               urlStream.close();
               //if (Thread.currentThread() != CrawlerFrame.clThread)
               //break;
               String lowerCaseContent = content.toLowerCase();
               int index = 0;
               while ((index = lowerCaseContent.indexOf("<a", index)) != -1)
               if ((index = lowerCaseContent.indexOf("href", index)) == -1)
                    break;
               if ((index = lowerCaseContent.indexOf("=", index)) == -1)
                    break;
               //if (Thread.currentThread() !=CrawlerFrame.clThread)
                    //break;
               index++;
               String remaining = content.substring(index);
               StringTokenizer st
               = new StringTokenizer(remaining, "\t\n\r\">#");
               String strLink = st.nextToken();
               URL urlLink;
               try
                    urlLink = new URL(url, strLink);
                    strLink = urlLink.toString();
               catch (MalformedURLException e)
                    //setStatus("ERROR: bad URL " + strLink);
                    tab.delete(strLink);
                    //CrawlerFrame.jTextFieldUrlAddress.setText("");
                    strURL="";
                    continue;
                    if (urlLink.getProtocol().compareTo("http") != 0)
                         break;
                    //if (Thread.currentThread() != CrawlerFrame.clThread)
                         //break;
                    try
                         // try opening the URL
                         URLConnection urlLinkConnection
                         = urlLink.openConnection();
                         urlLinkConnection.setAllowUserInteraction(false);
                         InputStream linkStream = urlLink.openStream();
                         String strType
                         = urlLinkConnection.guessContentTypeFromName(urlLink.getFile());
                         linkStream.close();
                         // if another page, add to the end of search list
                         if (strType == null)
                         break;
                         if (strType.compareTo("text/html") == 0) {
                         // check to see if this URL has already been
                         // searched or is going to be searched
                         if (!tab.contains(strLink))
                              // test to make sure it is robot-safe!
                              //if (robotSafe(urlLink))
                              tab.insertRecord(strLink);
                    catch (IOException e)
                         ret="ERROR: couldn't open URL " + strLink;
                         continue;
                    if (strURL.length() == 0)
                    //ret="Enter a starting URL then press RUN";
                    /////return;
                    break;
                    }//end of try
               } catch (IOException e)
                    ret="ERROR1: couldn't open URL " + strURL;
          tab.delete(strURL);
          //CrawlerFrame.jTextFieldUrlAddress.setText("");
          strURL="";
          continue;
     }//end while
     //setStatus("done");
//CrawlerFrame.jButtonStop.setEnabled(false);
//CrawlerFrame.jButtonRun.setEnabled(true);
FileWriter clCountWrite=new FileWriter("c:/search/resources/crawlcount.txt",false);
          Integer count=new Integer(fileCounter);
          clCountWrite.write(count.toString(),0,count.toString().length());
          clCountWrite.close();
//CrawlerFrame.clThread = null;
     }//end of try
     catch(Exception e)
          ret="ERROR:"+e.getMessage();
return(ret);
//end of run
}//end of classCrawler
class CrawlTable
String connectionAddress="jdbc:odbc:mitesh";
     Connection con;
     Statement stmt;
     ResultSet rs;
     public void insertRecord(String urlAddress)
          String insertString;
          insertString="insert into CRAWLER (URLADDRESS,ISCRAWLED)"+
          " values('"+urlAddress+"',false)";
try
          Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
catch(java.lang.ClassNotFoundException e)
          System.err.print("ClassNotFoundException: ");
          System.err.println(e.getMessage());
try
con=DriverManager.getConnection(connectionAddress,"","");
          stmt=con.createStatement();
          stmt.executeUpdate(insertString);
          stmt.close();
          con.close();
catch(SQLException ex)
          System.err.println("SQLException2: "+ex.getMessage());
public void delete(String urlAddress)
          String deleteString;
          deleteString="delete from CRAWLER where URLADDRESS='"+urlAddress+"'";
try
          Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
catch(java.lang.ClassNotFoundException e)
          System.err.print("ClassNotFoundException: ");
          System.err.println(e.getMessage());
try
con=DriverManager.getConnection(connectionAddress,"","");
          stmt=con.createStatement();
          stmt.executeUpdate(deleteString);
          stmt.close();
          con.close();
catch(SQLException ex)
          System.err.println("SQLException2: "+ex.getMessage());
public boolean isRecordFalse()
     boolean flag=false;
     String query;
          query=" select URLADDRESS from CRAWLER "+
          "where ISCRAWLED=false";
try
          Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
catch(java.lang.ClassNotFoundException e)
          System.err.print("ClassNotFoundException: ");
          System.err.println(e.getMessage());
try
con=DriverManager.getConnection(connectionAddress,"","");
          stmt=con.createStatement();
rs=stmt.executeQuery(query);
          if(rs.next()==true)
               flag= true;
               //System.out.println(flag);
          else
               flag= false;
               //System.out.println(flag);
          stmt.close();
          con.close();
catch(SQLException ex)
          System.err.println( "SQLException3: "+ex.getMessage());
          return flag;
public String retrieveFirst()
     String query,s="";
          query=" select URLADDRESS from CRAWLER where "+
          "ISCRAWLED=false order by SERIAL";
try
          Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
catch(java.lang.ClassNotFoundException e)
          System.err.print("ClassNotFoundException: ");
          System.err.println(e.getMessage());
          return null;
try
con=DriverManager.getConnection(connectionAddress,"","");
          stmt=con.createStatement();
rs=stmt.executeQuery(query);
          if(rs.next()==true)
          s=rs.getString("URLADDRESS");
          stmt.close();
          con.close();
catch(SQLException ex)
          System.err.println( "SQLException3: "+ex.getMessage());
          return null;
          return s;
public boolean contains(String strURL)
     boolean flag=false;
     String query;
          query=" select URLADDRESS from CRAWLER "+
          "where URLADDRESS='"+strURL+"'";
try
          Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
catch(java.lang.ClassNotFoundException e)
          System.err.print("ClassNotFoundException: ");
          System.err.println(e.getMessage());
try
con=DriverManager.getConnection(connectionAddress,"","");
          stmt=con.createStatement();
rs=stmt.executeQuery(query);
          if(rs.next()==true)
               flag= true;
               //System.out.println(flag);
          else
               flag= false;
               //System.out.println(flag);
          stmt.close();
          con.close();
catch(SQLException ex)
          System.err.println( "SQLException3: "+ex.getMessage());
          return flag;
public void updateRecord(String urlAddress)
          String updateString;
          updateString="update CRAWLER"+
          " set ISCRAWLED=true" + " where URLADDRESS='"+urlAddress+"'";
try
          Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
catch(java.lang.ClassNotFoundException e)
          System.err.print("ClassNotFoundException: ");
          System.err.println(e.getMessage());
try
con=DriverManager.getConnection(connectionAddress,"","");
          stmt=con.createStatement();
          stmt.executeUpdate(updateString);
          stmt.close();
          con.close();
catch(SQLException ex)
          System.err.println("SQLException4: "+ex.getMessage());
}

Similar Messages

  • Just got an ipad air and while creating my apple ID with credit card, I got to itunes gift card/ itunes gift section and was asked to supply a CODE to proceed with the form but I don't have the code. please how how can i get the code?

    Just got an ipad air and why creating my apple ID with credit card, a CODE was requested in the itunes gift card/ itunes gift in order to preceed with the form but I don't have the code. Please how can I find the code so as to enable me complete the form successfully. Thanks alot

    The iTunes gift card field is optional, you don't have to fill it in - leave it blank if you don't have a gift card.
    iTunes gift cards are country-specific (they can only be used in their country of issue), and they are not available in all countries - so you might not be able to dill it anyway.

  • RE: Typekit...how do I move the code from an old account to my new account under the Creative Cloud?

    RE: Typekit...how do I move the code from an old account to my new account under the Creative Cloud? W/out (preferably) interuption to the website in question? Thanks!

    Hi Jesse,
    Please email us at [email protected] with:
    - your current Typekit account email address
    - the email address you use for Creative Cloud
    We will be able to help you make this change without disrupting your current font serving. 
    Thank you,
    -- liz

  • How can I view the code for a routine in an update rule

    on loading data for 0PLANT_ATTR, I am getting an error for No Local Currency found in Plant 1000 and SAles Org 6000. 
    in looking at the update rules for this, I see that there is a routine for the update of the local currency:
    Perform GET_LOCCURRCY_FOR_PLANT
    USING COMM_STRUCTURE-PLANT
    COMM_STRUCTURE-SALESORG
    CHANGING hlp_monitor
    RESULT
    hlp_subrc.
    How do I see the code behind this?  I want to make sure that I understand everything that needs to be populated in Master Data so that I can ask my functional consultant to update all the necessary fields.
    Thanks
    JP

    Hi Riccardo,
    When I double click on it, I get a message at the bottom that says program reindexed. 
    After looking again, I found that when I double clicked on the comm structure, then the routine, I was able to see it.
    Thanks
    JP

  • How can we write the code for opening the command prompt and closing the

    how can we write the code in java for opening the command prompt and closing the cmd prompt from eclipse (cmd prompt should close when click on the turminate button in eclipse)

    rakeshsikha wrote:
    how can we write the code for opening the command prompt and closing theBy typing in Eclipse (which you seemingly have)?

  • How can I get the code of a Custom Module?

    Hi guys.
    I'm in a new client, and they have a problem in one of their interfaces. The PI version is 7.1.
    The interface uses the Mail Adapter, and there is a Custom Module there. The company that did this module is no longer in this client, and they did´nt leave any document about this module.
    So, how can I find the code of this Module?
    Regards,
    Eric Freitas

    Hello,
    Check Vadim's reply
    Checking code in custom adapter module
    Thanks
    Amit Srivastava

  • How can i get the code html and css of my form please help me

    how can i get the code html and css of my form

    HI,
    If you like to embed the HTML form in your web page then you will need to obtain the form code from the Distribite/Embed tab. Additional information can be found here: http://forums.adobe.com/docs/DOC-1991
    You will not be able to access/modify the css code or the rest of the form html code.  If you like to view the source of of a HTML page, please use your browser 'view source code' functionality.
    I hope this answer your question,
    Thanks,
    Lucia

  • How do i redeem a 10.00 gift... when i click redeem i am prompted to download itunes... i already have itunes...how do i get the code... or get past the download

    omg how many times do i have to ask the question...., i am trying to redeem a gift of 10.00.. when i click on redeem it wants me to download itunes... i already have itunes.... how do i get the code.... when it gets this complicated to ask a question it doesnt seem worth it...wass up????

    Redeeming iTunes Gift Cards and content codes
    iTunes 11 for Mac- Redeem an iTunes allowance, gift certificate, or Gift Card
    iTunes 11 for Windows- Redeem an iTunes allowance, gift certificate, or Gift Card
    If you can't redeem your iTunes Gift Card or code

  • How do we change the code of incoming emails?

    Prior to downloading the latest version of Firefox, we were able to access the code-changing service via the orange button in the top left corner of the screen.
    The latest version has done away with that orange button and its associated drop-down menu, wherein we used to be able to change the transmission code of incoming emails to Unicode.
    How can we change the codes now?
    It is very disappointing that you make stupid changes without any notification.
    What was wrong with the old orange button, that it HAD to be changed?
    It appears that some ignorant newbie, who is unaware of what is really going on decides to make a name for himself, making cosmetic changes – simply for the sake of making changes!!!
    Whenever changes are made, they firstly should be absolutely necessary; and secondly your users should be notified of the implications of any changes.
    The current disregard of customers is just not good enough!!!
    Since the loss of the orange button, we have been forced to perform the tedious, time-consuming task of editing each email which is to be stored, removing all the ASCI-type codes from the text. Previously, Firefox altered the transmission code on request – MUCH simpler & MUCH quicker & MUCH more convenient!!!
    How are we supposed to get Firefox to do the change?? Pray tell.

    Hi, I am sorry that you do not like the changes in Firefox 29. I would be happy to help you with the problem that you have.
    Mozilla did not completely remove the menu function that you are talking about. If you look at the top left side of the browser you will see an icon with three horizontal lines. This has the same function as the Firefox button that you talked about. It is customizable and takes up less space when configured this way. That was the rational behind the change. From this point you click on options. After that it is all the same. I hope this helps. If you are really unhappy with the changes to Firefox 29 I wold recommend that you let Mozilla know. Everyone here is a volunteer that is passionate about helping users. Here is the link [https://input.mozilla.org/en-US/feedback Mozilla feedback]

  • I scratched the label off on a £25 gift card and it removed the code. How can I get the code for the card?

    I scratched the label off on a £25 gift card and it removed the code. How can I get the code for the card?

    Click here and request assistance. Gift cards are usually if not always final sale because it would be easy enough for someone dishonest to abuse returns or replacements of them.
    (58640)

  • HOW DO I GET THE CODE? (Upgrade från CS 5.5 to 6.0)

    I am trying to install Adobe CS 6 on my computer. The installation goes fine until I enter my serialnumber. Then I get the message "The serial number is valid, but could not find a qualifying product on this computer." When I search on the Adobe site I find information about a new installation process. It says that I no longer need a serialnumber but a code. The question is HOW DO I GET THE CODE?
    The only thing I got on my purchase is our 7 licenses (volume licenses) is 1 order number and 7 serial numbers.

    Adobe what CS6? We are an Audition U2U forum and can't answer any questions about installation issues at all. Adobe have a free assistance chatline available for this - you need to call that.

  • How can we optimize the LIKE '%...%' to make it work more efficiently

    how can we optimize the LIKE '%...%' to make it work more efficiently

    SQL> create table test as select * from V$SQL
    Table created.
    SQL> create index test_txt_idx on test(sql_fulltext) indextype is ctxsys.context
    Index created.
    SQL> select substr(sql_fulltext,1,30) sql_fulltext from test where contains(sql_fulltext, 'dataobj#') > 0
    SQL_FULLTEXT                                               
    select obj#, dataobj#, part#,                              
    select /*+ index_ss(obj$ i_obj                             
    select /*+ index_ss(obj$ i_obj                             
    select /*+ index_ss(obj$ i_obj                             
    select /*+ index_ss(obj$ i_obj                             
    select /*+ index_ss(obj$ i_obj                             
    delete from sys.cache_stats_1$                             
    select substr(sql_fulltext,1,3                             
    insert into wrh$_seg_stat   (s                             
    insert into obj$(owner#,name,n                             
    update /*+ index_ss(obj$ i_obj                             
    update /*+ index_ss(obj$ i_obj                             
    select i.obj#,i.ts#,i.file#,i.                             
    select i.obj#,i.ts#,i.file#,i.                             
    select i.obj#,i.ts#,i.file#,i.                             
    update wrh$_seg_stat_obj sso                               
    select obj#, dataobj#, part#,                              
    select obj#, dataobj#, part#,                              
    insert into tabpart$ (obj#, da                             
    update ind$ set ts#=:2,file#=:                             
    update ind$ set ts#=:2,file#=:                             
    insert into tab$(obj#,ts#,file                             
    select i.obj#,i.ts#,i.file#,i.                             
    select i.obj#,i.ts#,i.file#,i.                             
    select i.obj#,i.ts#,i.file#,i.                             
    select i.obj#,i.ts#,i.file#,i.                             
    select i.obj#,i.ts#,i.file#,i.                             
    select i.obj#,i.ts#,i.file#,i.                             
    select i.obj#,i.ts#,i.file#,i.                             
    update tabpart$ set dataobj# =                             
    insert into ind$(bo#,obj#,ts#,                             
    update tab$ set ts#=:2,file#=:                             
    update tab$ set ts#=:2,file#=:                             
    update /*+ index_ss(obj$ i_obj                             
    insert into indpart$ (obj#, da                             
    35 rows selected.
    SQL> drop table test
    Table dropped.What are you doing differently?

  • Redemption code help that you keep sending everyone to is NOT HELPING. It just tells you to put in the redemption code. IF I HAD THE CODE I WOULD HAVE PUT IT IN!! How do I find the code?

    Redemption code help that you keep sending everyone to is NOT HELPING. It just tells you to put in the redemption code. IF I HAD THE CODE I WOULD HAVE PUT IT IN!! How do I find the code?

    Version 5.5 was/is not part of the Cloud, so you could not have subscribed to that version
    You install version 5.5 on a 2nd computer exactly the same way you did the 1st time... put the disc in the drive and enter your serial number when asked
    Does your serial number show on your account page?
    https://www.adobe.com/account.html for serial numbers on your Adobe page... or
    Lost serial # http://helpx.adobe.com/x-productkb/global/find-serial-number.html

  • Dear Sirs , my I phone 4 is limited to some network so i wanna make my I phone free to all networkes all over , how can i get the code to unblock it

    Dear Sirs ,
    my I phone 4 is limited to some network so i wanna make my I phone free to all networkes all over , how can i get the code to unblock it

    There is no "code to unblock it". It can only be unlocked by the carrier it's locked to. Contact them and see if they offer that service and if you qualify.

  • V5 How can I get the code from an itunes gifcard that got scraped off

    How can I get the code from an itunes gifcard that got scraped off

    Try Here  >  http://support.apple.com/kb/TS1292
    If no joy...
    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

Maybe you are looking for