ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
tip   To Refer this Site to Your Friends   Click Here
Google
 
 Categories  >>  ERRORS       
 
  C C++ Errors (19)   DotNet Errors (7)   Database Errors (16392)   Scripts Errors (50)
 
Suggest New Category 
 


 

View Page with Answers
  Question  Asked @ Answers Views     select
 
ORA-23541: tables do not match tables used while defining the redefinition  1  126
ORA-23540: Redefinition not defined or initiated  1  171
ORA-23539: table "string"."string" currently being redefined  1  309
ORA-23538: cannot explicitly refresh a NEVER REFRESH materialized view ("string")  1  260
ORA-23537: function or procedure string is not allowed to be invoked from this site.  1  134
ORA-23536: the object "string"."string" is not cached at the middle tier as expected.  1  187
ORA-23535: instantiating templates from multiple back ends is not allowed.  1  140
ORA-23534: missing column in materialized view container table "string"."string"  1  129
ORA-23533: object "string"."string" can not be cached  1  117
ORA-23532: tables with different synchronization mechanisms are in the same group  1  274
ORA-23531: site owner already exists in the template.  1  124
ORA-23515: materialized views and/or their indices exist in the tablespace  1  626
ORA-23514: invalid or incorrect number of arguments  1  132
ORA-23505: Object "string"."string" is missing.  1  102
ORA-23504: columns added to table do not match list of columns to be added  1  151
E-Mail New Answers        Answer Selected Questions       
 
Prev    1   ... 75   ... 149   ... 223   ... 297   ... 371   ... 445   ... 519   ... 593   ... 667   ... 741    814   [815]    816  ... 889   ... 963   ... 1037    Next
 
 
 Software interview questions   Software Interview Questions  Sciences interview questions   Sciences Interview Questions  Engineering interview questions   Engineering Interview Questions
 Business Management interview questions   Business Management Interview Questions  Accounting interview questions   Accounting Interview Questions  Advertising Media interview questions   Advertising Media Interview Questions
 Architecture Design interview questions   Architecture Design Interview Questions  Call Centre interview questions   Call Centre Interview Questions  Fashion Modelling interview questions   Fashion Modelling Interview Questions
 Government interview questions   Government Interview Questions  Law interview questions   Law Interview Questions  Tourism Hotel interview questions   Tourism Hotel Interview Questions
 Everything Else interview questions   Everything Else Interview Questions  Aptitude Questions interview questions   Aptitude Questions Interview Questions  Placement Papers interview questions   Placement Papers Interview Questions
 Certifications interview questions   Certifications Interview Questions  Visa Interview Questions interview questions   Visa Interview Questions Interview Questions  Code Snippets interview questions   Code Snippets Interview Questions
 Entrance Exams interview questions   Entrance Exams Interview Questions  ERRORS interview questions   ERRORS Interview Questions
 
 
 
Un-Answered Questions
 
 Question Views Asked at   Select
 
java.sql.SQLException:Invalid state, the statement object is closed Hai all i got this error when i am multiple times referesh web page 389 HCL
I have got one job selection order from DECON ENGG(HRD), he told me to send 2000 rs of demand draff i have send the demand draff after some time a got a job selection order in banglore but he have written that u have to give 550 rs of Guidency fees in bangalore i dont understant what to do 213 ABC
how to run the application using winrunner for data driven test? 147  
hii..i am doin a project called Forecaster..wat it does is it asks user to enter a zip code..then it establishes urlconnection with a weather website n fetches data n data is converted into graphical representation..but it doesnt show any output..i am not able it figure out the reason..can u plzzzz help me out..i am givin u code import java.io.*; import java.awt.*; import java.net.*; import java.awt.image.*; import java.awt.event.*; public class Forecast extends Frame { OkCancelDialog textDialog; BufferedImage image = null; public static void main(String[] args) { new Forecast(); } public Forecast() { String zip =""; File zipFile = new File("zip.txt"); String hiTemperature[] = new String[4]; String loTemperature[] = new String[4]; try { if(zipFile.exists()){ FileReader filereader = new FileReader("zip.txt"); BufferedReader bufferedreader = new BufferedReader(filereader); zip = bufferedreader.readLine(); } else { textDialog = new OkCancelDialog(this, "Enter your five-digit zip code", true); textDialog.setVisible(true); zip = textDialog.data.trim(); FileOutputStream fileoutputstream = new FileOutputStream("zip.txt"); fileoutputstream.write(zip.getBytes()); } int character; URL url = new URL ("http://www.srh.noaa.gov/zipcity.php?inputstring=" + zip); URLConnection urlconnection = url.openConnection(); InputStream in = urlconnection.getInputStream(); String input = ""; String hiSearch; String loSearch; String inchar; char[] cc = new char[1]; while ((character = in.read()) != -1) { char z = (char)character; cc[0] = z; inchar = new String(cc); input += inchar; } in.close(); if(input.indexOf("Hi <font color=\"#FF0000\">") >= 0){ hiSearch = "Hi <font color=\"#FF0000\">"; } else{ hiSearch= "Hi: <span class=\"red\">"; } int currentPosition = 0; for(int loopIndex = 0; loopIndex < 4; loopIndex++){ int location = input.indexOf(hiSearch, currentPosition); int end = input.indexOf("&deg;", location); hiTemperature[loopIndex] = input.substring(location + hiSearch.length(), end); currentPosition = end + 1; } if(input.indexOf("Lo <font color=\"#0033CC\">") >= 0){ loSearch = "Lo <font color=\"#0033CC\">"; } else{ loSearch= "Lo: <span class=\"blue\">"; } currentPosition = 0; for(int loopIndex = 0; loopIndex < 4; loopIndex++){ int location = input.indexOf(loSearch, currentPosition); int end = input.indexOf("&deg;", location); loTemperature[loopIndex] = input.substring(location + loSearch.length(), end); currentPosition = end + 1; } boolean evening = false; if(input.indexOf(loSearch) < input.indexOf(hiSearch)){ evening = true; hiTemperature[3] = hiTemperature[2]; hiTemperature[2] = hiTemperature[1]; hiTemperature[1] = hiTemperature[0]; } image = new BufferedImage(225, 201, BufferedImage.TYPE_INT_RGB); Graphics2D g = image.createGraphics(); g.setColor(Color.white); g.fillRect(0, 0, 224, 201); g.setColor(Color.gray); for(int loopIndex = 0; loopIndex < 21; loopIndex++){ g.drawLine(25, loopIndex * 10, 224, loopIndex * 10); g.drawLine(loopIndex * 10 + 25, 0, loopIndex * 10 + 25, 199); } g.setColor(Color.blue); Font font = new Font("Courier", Font.PLAIN, 18); g.setFont(font); for(int loopIndex = 20; loopIndex < 200; loopIndex += 20){ g.drawString(String.valueOf(100 - loopIndex / 2), 0, loopIndex + 5); } g.setColor(Color.red); if(!evening){ g.drawOval(65 - 4, 200 - (Integer.parseInt( hiTemperature[0]) * 2) - 4, 8, 8); } g.drawOval(105 - 4, 200 - (Integer.parseInt( hiTemperature[1]) * 2) - 4, 8, 8); g.drawOval(145 - 4, 200 - (Integer.parseInt( hiTemperature[2]) * 2) - 4, 8, 8); g.drawOval(185 - 4, 200 - (Integer.parseInt( hiTemperature[3]) * 2) - 4, 8, 8); if(!evening){ g.drawLine(65, 200 - (Integer.parseInt( hiTemperature[0]) * 2), 105, 200 - (Integer.parseInt(hiTemperature[1]) * 2)); } g.drawLine(105, 200 - (Integer.parseInt(hiTemperature[1]) * 2), 145, 200 - (Integer.parseInt(hiTemperature[2]) * 2)); g.drawLine(145, 200 - (Integer.parseInt(hiTemperature[2]) * 2), 185, 200 - (Integer.parseInt(hiTemperature[3]) * 2)); g.setColor(Color.blue); g.drawOval(65 - 4, 200 - (Integer.parseInt( loTemperature[0]) * 2) - 4, 8, 8); g.drawOval(105 - 4, 200 - (Integer.parseInt( loTemperature[1]) * 2) - 4, 8, 8); g.drawOval(145 - 4, 200 - (Integer.parseInt( loTemperature[2]) * 2) - 4, 8, 8); g.drawOval(185 - 4, 200 - (Integer.parseInt( loTemperature[3]) * 2) - 4, 8, 8); g.drawLine(65, 200 - (Integer.parseInt(loTemperature[0]) * 2), 105, 200 - (Integer.parseInt(loTemperature[1]) * 2)); g.drawLine(105, 200 - (Integer.parseInt(loTemperature[1]) * 2), 145, 200 - (Integer.parseInt(loTemperature[2]) * 2)); g.drawLine(145, 200 - (Integer.parseInt(loTemperature[2]) * 2), 185, 200 - (Integer.parseInt(loTemperature[3]) * 2)); g.setColor(Color.white); g.fillRect(55, 160, 140, 30); g.setColor(Color.blue); g.drawRect(55, 160, 140, 30); font = new Font("Courier", Font.PLAIN, 12); g.setFont(font); g.drawString("Four-Day Forecast", 65, 172); font = new Font("Courier", Font.PLAIN, 9); g.setFont(font); g.drawString("Source: Nat. Weather Srvce.", 58, 185); setTitle("The Forecaster"); setResizable(false); setSize(250, 240); setVisible(true); this.addWindowListener(new WindowAdapter(){ public void windowClosing( WindowEvent e){ System.exit(0); } } ); } catch (Exception e) { System.out.println(e.getMessage()); } } public void paint(Graphics g) { if(image != null){ g.drawImage(image, 10, 30, this); } } } class OkCancelDialog extends Dialog implements ActionListener { Button ok, cancel; TextField text; public String data; OkCancelDialog(Frame hostFrame, String title, boolean dModal) { super(hostFrame, title, dModal); setSize(280, 100); setLayout(new FlowLayout()); text = new TextField(30); add(text); ok = new Button("OK"); add(ok); ok.addActionListener((ActionListener)this); cancel = new Button("Cancel"); add(cancel); cancel.addActionListener(this); data = new String(""); } public void actionPerformed(ActionEvent event) { if(event.getSource() == ok){ data = text.getText(); } else { data = ""; } setVisible(false); } } 134  
ORA-26032: index string.string loading aborted after string keys 115  
I-series. When I use: qtp DICTIONARY(PDMZZ) AUTO (*LIBL/MFR0120X)I get the error: *E* Can't open the file specified on the AUTO program parameter. File of different type already exists. When I use it auto without *libl ,qtp DICTIONARY(PDMZZ) AUTO (MFR0120X), it works fine 292  
Buenos dias queria hacer la consulta sobre un trigger... pasa que tengo un trigger que funciona correctamente... lo que ahora estoy haciendo es que parte de ese trigger lo estoy poniendo como funcion ya que luego lo voy a reutilizar para otros triggers.. Pero cuando ejecuto la funcion me sale un error que es este PLS-00049: bad bind variable'NEW.SCRIPT_VARCHAR1' LINE:7 COLUMN: 16 PLS-00049: bad bind variable'NEW.SCRIPT_VARCHAR1' LINE:8 COLUMN: 11 PLS-00049: bad bind variable'NEW.SCRIPT_VARCHAR1' LINE:9 COLUMN: 11 PLS-00049: bad bind variable'NEW.SCRIPT_VARCHAR1' LINE:10 COLUMN: 11 PLS-00049: bad bind variable'NEW.SCRIPT_VARCHAR1' LINE:11 COLUMN: 11 PLS-00049: bad bind variable'NEW.SCRIPT_VARCHAR1' LINE:12 COLUMN: 11 PLS-00049: bad bind variable'NEW.SCRIPT_VARCHAR1' LINE:15 COLUMN: 7 PLS-00049: bad bind variable'NEW.SCRIPT_VARCHAR2' LINE:18 COLUMN: 11 PLS-00049: bad bind variable'NEW.SCRIPT_VARCHAR2' LINE:19 COLUMN: 11 PLS-00049: bad bind variable'NEW.SCRIPT_VARCHAR2' LINE:20 COLUMN: 11 PLS-00049: bad bind variable'NEW.SCRIPT_VARCHAR2' LINE:21 COLUMN: 11 PLS-00049: bad bind variable'NEW.SCRIPT_VARCHAR2' LINE:22 COLUMN: 11 PLS-00049: bad bind variable'NEW.SCRIPT_VARCHAR2' LINE:23 COLUMN: 11 PLS-00049: bad bind variable'NEW.SCRIPT_VARCHAR2' LINE:26 COLUMN: 7 PLS-00049: bad bind variable'NEW.SCRIPT_VARCHAR3' LINE:29 COLUMN: 11 PLS-00049: bad bind variable'NEW.SCRIPT_VARCHAR3' LINE:30 COLUMN: 11 PLS-00049: bad bind variable'NEW.SCRIPT_VARCHAR3' LINE:31 COLUMN: 11 PLS-00049: bad bind variable'NEW.SCRIPT_VARCHAR3' LINE:32 COLUMN: 11 PLS-00049: bad bind variable'NEW.SCRIPT_VARCHAR3' LINE:33 COLUMN: 11 PLS-00049: bad bind variable'NEW.SCRIPT_VARCHAR3' LINE:34 COLUMN: 11 el trigger inicial es este: CREATE OR REPLACE TRIGGER GENESYS_OCS.t_updtable_a08 BEFORE UPDATE ON GENESYS_OCS.ATE_ROBO_POSTPAGO_PRECLISTA REFERENCING NEW AS NEW OLD AS OLD FOR EACH ROW DECLARE v_call_time ate_robo_postpago_preclista.call_time%TYPE; v_intento ate_robo_postpago_preclista.attempt% TYPE; v_agent_id ate_robo_postpago_preclista.agent_id% TYPE; v_outsourcer ate_robo_postpago_preclista.usr_proveed%TYPE; v_attempts ate_robo_postpago_preclista.attempt% TYPE; v_call_result ate_robo_postpago_preclista.call_result%TYPE; v_script_varchar1 ate_robo_postpago_preclista.script_varchar1%TYPE; v_venta NUMBER; --- 0 encuesta ; 1 venta BEGIN v_venta := 0; v_call_time := :NEW.call_time; v_script_varchar1 := :NEW.script_varchar1; v_intento := :NEW.attempt; v_call_result := :NEW.call_result; IF (v_intento IS NOT NULL AND v_call_result != 33) THEN :NEW.usr_intento := v_intento; END IF; v_agent_id := :NEW.agent_id; IF (v_agent_id IS NOT NULL) THEN :NEW.usr_login_agente := v_agent_id; END IF; v_outsourcer := :NEW.usr_proveed; IF (v_outsourcer IS NOT NULL) THEN :NEW.usr_outsourcer := v_outsourcer; END IF; IF ( :NEW.attempt = :OLD.attempt AND :NEW.call_result != :OLD.call_result AND :NEW.call_result != 28 ) THEN :NEW.attempt := :NEW.attempt + 1; END IF; :NEW.usr_intento := :NEW.attempt; IF ( :OLD.record_status = 3 AND (:OLD.usr_conversion = 'CE' OR :OLD.usr_conversion = 'CNE') ) THEN raise_application_error (-20999, 'Registro marcado como contacto'); END IF; -- llamada cortada IF (v_call_result = 33 AND :OLD.record_status != 3) THEN IF ( :NEW.attempt = :OLD.attempt AND :NEW.call_result != :OLD.call_result AND :NEW.call_result != 28 ) THEN :NEW.attempt := :NEW.attempt + 1; END IF; :NEW.usr_intento := :NEW.attempt; IF (v_agent_id IS NOT NULL) THEN :NEW.usr_login_agente := v_agent_id; END IF; :NEW.usr_conversion := 'CNE'; END IF; -- casilla de voz IF (v_call_result = 9 AND :OLD.record_status != 3) THEN IF ( :NEW.attempt = :OLD.attempt AND :NEW.call_result != :OLD.call_result AND :NEW.call_result != 28 ) THEN :NEW.attempt := :NEW.attempt + 1; END IF; :NEW.usr_intento := :NEW.attempt; IF (v_agent_id IS NOT NULL) THEN :NEW.usr_login_agente := v_agent_id; END IF; :NEW.usr_conversion := 'NC'; END IF; -- celular apagado IF (v_call_result = 7 AND :OLD.record_status != 3) THEN IF ( :NEW.attempt = :OLD.attempt AND :NEW.call_result != :OLD.call_result AND :NEW.call_result != 28 ) THEN :NEW.attempt := :NEW.attempt + 1; END IF; :NEW.usr_intento := :NEW.attempt; IF (v_agent_id IS NOT NULL) THEN :NEW.usr_login_agente := v_agent_id; END IF; :NEW.usr_conversion := 'NC'; END IF; -- contesto llamda IF (v_call_result = 33 AND :OLD.record_status != 3) THEN IF ( LOWER (:NEW.script_varchar1) = 'no acepta encuesta') THEN IF ( :NEW.attempt = :OLD.attempt AND :NEW.call_result != :OLD.call_result AND :NEW.call_result != 28 ) THEN :NEW.attempt := :NEW.attempt + 1; END IF; :NEW.usr_intento := :NEW.attempt; IF (v_agent_id IS NOT NULL) THEN :NEW.usr_login_agente := v_agent_id; END IF; :NEW.usr_conversion := 'CNE'; END IF; IF ( LOWER (:NEW.script_varchar1) = 'si acepta encuesta'and LOWER (:NEW.script_varchar38) = 'si acepto ofrecimiento') THEN IF ( :NEW.attempt = :OLD.attempt AND :NEW.call_result != :OLD.call_result AND :NEW.call_result != 28 ) THEN :NEW.attempt := :NEW.attempt + 1; END IF; :NEW.usr_intento := :NEW.attempt; IF (v_agent_id IS NOT NULL) THEN :NEW.usr_login_agente := v_agent_id; END IF; :NEW.usr_conversion := 'CE'; END IF; IF ( LOWER (:NEW.script_varchar1) = 'si acepta encuesta'and LOWER (:NEW.script_varchar38) != 'si acepto ofrecimiento') THEN IF ( :NEW.attempt = :OLD.attempt AND :NEW.call_result != :OLD.call_result AND :NEW.call_result != 28 ) THEN :NEW.attempt := :NEW.attempt + 1; END IF; :NEW.usr_intento := :NEW.attempt; IF (v_agent_id IS NOT NULL) THEN :NEW.usr_login_agente := v_agent_id; END IF; :NEW.usr_conversion := 'CNE'; END IF; END IF; IF ( LOWER (:NEW.script_varchar1) = 'no contesta' OR :NEW.script_varchar1 = 'Seleccione Alternativa' OR :NEW.script_varchar1 = 'Seleccionar Alternativa' OR :NEW.script_varchar1 = 'Seleccione Dia' OR :NEW.script_varchar1 = 'Seleccione Mes' OR :NEW.script_varchar1 = 'Seleccione Ao' ) THEN :NEW.script_varchar1 := ''; END IF; IF ( :NEW.script_varchar2 = 'No Contesta' OR :NEW.script_varchar2 = 'Seleccione Alternativa' OR :NEW.script_varchar2 = 'Seleccionar Alternativa' OR :NEW.script_varchar2 = 'Seleccione Dia' OR :NEW.script_varchar2 = 'Seleccione Mes' OR :NEW.script_varchar2 = 'Seleccione Ao' ) THEN :NEW.script_varchar2 := ''; END IF; IF ( :NEW.script_varchar3 = 'No Contesta' OR :NEW.script_varchar3 = 'Seleccione Alternativa' OR :NEW.script_varchar3 = 'Seleccionar Alternativa' OR :NEW.script_varchar3 = 'Seleccione Dia' OR :NEW.script_varchar3 = 'Seleccione Mes' OR :NEW.script_varchar3 = 'Seleccione Ao' ) THEN :NEW.script_varchar3 := ''; END IF; IF ( :NEW.script_varchar4 = 'No Contesta' OR :NEW.script_varchar4 = 'Seleccione Alternativa' OR :NEW.script_varchar4 = 'Seleccionar Alternativa' OR :NEW.script_varchar4 = 'Seleccione Dia' OR :NEW.script_varchar4 = 'Seleccione Mes' OR :NEW.script_varchar4 = 'Seleccione Ao' ) THEN :NEW.script_varchar4 := ''; END IF; IF ( :NEW.script_varchar5 = 'No Contesta' OR :NEW.script_varchar5 = 'Seleccione Alternativa' OR :NEW.script_varchar5 = 'Seleccionar Alternativa' OR :NEW.script_varchar5 = 'Seleccione Dia' OR :NEW.script_varchar5 = 'Seleccione Mes' OR :NEW.script_varchar5 = 'Seleccione Ao' ) THEN :NEW.script_varchar5 := ''; END IF; IF ( :NEW.script_varchar6 = 'No Contesta' OR :NEW.script_varchar6 = 'Seleccione Alternativa' OR :NEW.script_varchar6 = 'Seleccionar Alternativa' OR :NEW.script_varchar6 = 'Seleccione Dia' OR :NEW.script_varchar2 = 'Seleccione Mes' OR :NEW.script_varchar6 = 'Seleccione Ao' ) THEN :NEW.script_varchar6 := ''; END IF; IF ( :NEW.script_varchar7 = 'No Contesta' OR :NEW.script_varchar7 = 'Seleccione Alternativa' OR :NEW.script_varchar7 = 'Seleccionar Alternativa' OR :NEW.script_varchar7 = 'Seleccione Dia' OR :NEW.script_varchar7 = 'Seleccione Mes' OR :NEW.script_varchar7 = 'Seleccione Ao' ) THEN :NEW.script_varchar7 := ''; END IF; IF ( :NEW.script_varchar8 = 'No Contesta' OR :NEW.script_varchar8 = 'Seleccione Alternativa' OR :NEW.script_varchar8 = 'Seleccionar Alternativa' OR :NEW.script_varchar8 = 'Seleccione Dia' OR :NEW.script_varchar8 = 'Seleccione Mes' OR :NEW.script_varchar8 = 'Seleccione Ao' ) THEN :NEW.script_varchar8 := ''; END IF; IF ( :NEW.script_varchar9 = 'No Contesta' OR :NEW.script_varchar9 = 'Seleccione Alternativa' OR :NEW.script_varchar9 = 'Seleccionar Alternativa' OR :NEW.script_varchar9 = 'Seleccione Dia' OR :NEW.script_varchar9 = 'Seleccione Mes' OR :NEW.script_varchar9 = 'Seleccione Ao' ) THEN :NEW.script_varchar9 := ''; END IF; IF ( :NEW.script_varchar10 = 'No Contesta' OR :NEW.script_varchar10 = 'Seleccione Alternativa' OR :NEW.script_varchar10 = 'Seleccionar Alternativa' OR :NEW.script_varchar10 = 'Seleccione Dia' OR :NEW.script_varchar10 = 'Seleccione Mes' OR :NEW.script_varchar10 = 'Seleccione Ao' ) THEN :NEW.script_varchar10 := ''; END IF; IF ( :NEW.script_varchar11 = 'No Contesta' OR :NEW.script_varchar11 = 'Seleccione Alternativa' OR :NEW.script_varchar11 = 'Seleccionar Alternativa' OR :NEW.script_varchar11 = 'Seleccione Dia' OR :NEW.script_varchar11 = 'Seleccione Mes' OR :NEW.script_varchar11 = 'Seleccione Ao' ) THEN :NEW.script_varchar11 := ''; END IF; IF ( :NEW.script_varchar12 = 'No Contesta' OR :NEW.script_varchar12 = 'Seleccione Alternativa' OR :NEW.script_varchar12 = 'Seleccionar Alternativa' OR :NEW.script_varchar12 = 'Seleccione Dia' OR :NEW.script_varchar12 = 'Seleccione Mes' OR :NEW.script_varchar12 = 'Seleccione Ao' ) THEN :NEW.script_varchar12 := ''; END IF; IF ( :NEW.script_varchar13 = 'No Contesta' OR :NEW.script_varchar13 = 'Seleccione Alternativa' OR :NEW.script_varchar13 = 'Seleccionar Alternativa' OR :NEW.script_varchar13 = 'Seleccione Dia' OR :NEW.script_varchar13 = 'Seleccione Mes' OR :NEW.script_varchar13 = 'Seleccione Ao' ) THEN :NEW.script_varchar13 := ''; END IF; IF ( :NEW.script_varchar14 = 'No Contesta' OR :NEW.script_varchar14 = 'Seleccione Alternativa' OR :NEW.script_varchar14 = 'Seleccionar Alternativa' OR :NEW.script_varchar14 = 'Seleccione Dia' OR :NEW.script_varchar14 = 'Seleccione Mes' OR :NEW.script_varchar14 = 'Seleccione Ao' ) THEN :NEW.script_varchar14 := ''; END IF; IF ( :NEW.script_varchar15 = 'No Contesta' OR :NEW.script_varchar15 = 'Seleccione Alternativa' OR :NEW.script_varchar15 = 'Seleccionar Alternativa' OR :NEW.script_varchar15 = 'Seleccione Dia' OR :NEW.script_varchar15 = 'Seleccione Mes' OR :NEW.script_varchar15 = 'Seleccione Ao' ) THEN :NEW.script_varchar15 := ''; END IF; IF ( :NEW.script_varchar16 = 'No Contesta' OR :NEW.script_varchar16 = 'Seleccione Alternativa' OR :NEW.script_varchar16 = 'Seleccionar Alternativa' OR :NEW.script_varchar16 = 'Seleccione Dia' OR :NEW.script_varchar16 = 'Seleccione Mes' OR :NEW.script_varchar16 = 'Seleccione Ao' ) THEN :NEW.script_varchar16 := ''; END IF; IF ( :NEW.script_varchar17 = 'No Contesta' OR :NEW.script_varchar17 = 'Seleccione Alternativa' OR :NEW.script_varchar17 = 'Seleccionar Alternativa' OR :NEW.script_varchar17 = 'Seleccione Dia' OR :NEW.script_varchar17 = 'Seleccione Mes' OR :NEW.script_varchar17 = 'Seleccione Ao' ) THEN :NEW.script_varchar17 := ''; END IF; IF ( :NEW.script_varchar18 = 'No Contesta' OR :NEW.script_varchar18 = 'Seleccione Alternativa' OR :NEW.script_varchar18 = 'Seleccionar Alternativa' OR :NEW.script_varchar18 = 'Seleccione Dia' OR :NEW.script_varchar18 = 'Seleccione Mes' OR :NEW.script_varchar18 = 'Seleccione Ao' ) THEN :NEW.script_varchar18 := ''; END IF; IF ( :NEW.script_varchar19 = 'No Contesta' OR :NEW.script_varchar19 = 'Seleccione Alternativa' OR :NEW.script_varchar19 = 'Seleccionar Alternativa' OR :NEW.script_varchar19 = 'Seleccione Dia' OR :NEW.script_varchar19 = 'Seleccione Mes' OR :NEW.script_varchar19 = 'Seleccione Ao' ) THEN :NEW.script_varchar19 := ''; END IF; IF ( :NEW.script_varchar20 = 'No Contesta' OR :NEW.script_varchar20 = 'Seleccione Alternativa' OR :NEW.script_varchar20 = 'Seleccionar Alternativa' OR :NEW.script_varchar20 = 'Seleccione Dia' OR :NEW.script_varchar20 = 'Seleccione Mes' OR :NEW.script_varchar20 = 'Seleccione Ao' ) THEN :NEW.script_varchar20 := ''; END IF; IF ( :NEW.script_varchar21 = 'No Contesta' OR :NEW.script_varchar21 = 'Seleccione Alternativa' OR :NEW.script_varchar21 = 'Seleccionar Alternativa' OR :NEW.script_varchar21 = 'Seleccione Dia' OR :NEW.script_varchar21 = 'Seleccione Mes' OR :NEW.script_varchar21 = 'Seleccione Ao' ) THEN :NEW.script_varchar21 := ''; END IF; IF ( :NEW.script_varchar22 = 'No Contesta' OR :NEW.script_varchar22 = 'Seleccione Alternativa' OR :NEW.script_varchar22 = 'Seleccionar Alternativa' OR :NEW.script_varchar22 = 'Seleccione Dia' OR :NEW.script_varchar22 = 'Seleccione Mes' OR :NEW.script_varchar22 = 'Seleccione Ao' ) THEN :NEW.script_varchar22 := ''; END IF; IF ( :NEW.script_varchar23 = 'No Contesta' OR :NEW.script_varchar23 = 'Seleccione Alternativa' OR :NEW.script_varchar23 = 'Seleccionar Alternativa' OR :NEW.script_varchar23 = 'Seleccione Dia' OR :NEW.script_varchar23 = 'Seleccione Mes' OR :NEW.script_varchar23 = 'Seleccione Ao' ) THEN :NEW.script_varchar23 := ''; END IF; IF ( :NEW.script_varchar24 = 'No Contesta' OR :NEW.script_varchar24 = 'Seleccione Alternativa' OR :NEW.script_varchar24 = 'Seleccionar Alternativa' OR :NEW.script_varchar24 = 'Seleccione Dia' OR :NEW.script_varchar24 = 'Seleccione Mes' OR :NEW.script_varchar24 = 'Seleccione Ao' ) THEN :NEW.script_varchar24 := ''; END IF; IF ( :NEW.script_varchar25 = 'No Contesta' OR :NEW.script_varchar25 = 'Seleccione Alternativa' OR :NEW.script_varchar25 = 'Seleccionar Alternativa' OR :NEW.script_varchar25 = 'Seleccione Dia' OR :NEW.script_varchar25 = 'Seleccione Mes' OR :NEW.script_varchar25 = 'Seleccione Ao' ) THEN :NEW.script_varchar25 := ''; END IF; IF ( :NEW.script_varchar26 = 'No Contesta' OR :NEW.script_varchar26 = 'Seleccione Alternativa' OR :NEW.script_varchar26 = 'Seleccionar Alternativa' OR :NEW.script_varchar26 = 'Seleccione Dia' OR :NEW.script_varchar26 = 'Seleccione Mes' OR :NEW.script_varchar26 = 'Seleccione Ao' ) THEN :NEW.script_varchar26 := ''; END IF; IF ( :NEW.script_varchar27 = 'No Contesta' OR :NEW.script_varchar27 = 'Seleccione Alternativa' OR :NEW.script_varchar27 = 'Seleccionar Alternativa' OR :NEW.script_varchar27 = 'Seleccione Dia' OR :NEW.script_varchar27 = 'Seleccione Mes' OR :NEW.script_varchar27 = 'Seleccione Ao' ) THEN :NEW.script_varchar27 := ''; END IF; IF ( :NEW.script_varchar28 = 'No Contesta' OR :NEW.script_varchar28 = 'Seleccione Alternativa' OR :NEW.script_varchar28 = 'Seleccionar Alternativa' OR :NEW.script_varchar28 = 'Seleccione Dia' OR :NEW.script_varchar28 = 'Seleccione Mes' OR :NEW.script_varchar28 = 'Seleccione Ao' ) THEN :NEW.script_varchar28 := ''; END IF; IF ( :NEW.script_varchar29 = 'No Contesta' OR :NEW.script_varchar29 = 'Seleccione Alternativa' OR :NEW.script_varchar29 = 'Seleccionar Alternativa' OR :NEW.script_varchar29 = 'Seleccione Dia' OR :NEW.script_varchar29 = 'Seleccione Mes' OR :NEW.script_varchar29 = 'Seleccione Ao' ) THEN :NEW.script_varchar29 := ''; END IF; IF ( :NEW.script_varchar30 = 'No Contesta' OR :NEW.script_varchar30 = 'Seleccione Alternativa' OR :NEW.script_varchar30 = 'Seleccionar Alternativa' OR :NEW.script_varchar30 = 'Seleccione Dia' OR :NEW.script_varchar30 = 'Seleccione Mes' OR :NEW.script_varchar30 = 'Seleccione Ao' ) THEN :NEW.script_varchar30 := ''; END IF; IF ( :NEW.script_varchar31 = 'No Contesta' OR :NEW.script_varchar31 = 'Seleccione Alternativa' OR :NEW.script_varchar31 = 'Seleccionar Alternativa' OR :NEW.script_varchar31 = 'Seleccione Dia' OR :NEW.script_varchar31 = 'Seleccione Mes' OR :NEW.script_varchar31 = 'Seleccione Ao' ) THEN :NEW.script_varchar31 := ''; END IF; IF ( :NEW.script_varchar32 = 'No Contesta' OR :NEW.script_varchar32 = 'Seleccione Alternativa' OR :NEW.script_varchar32 = 'Seleccionar Alternativa' OR :NEW.script_varchar32 = 'Seleccione Dia' OR :NEW.script_varchar32 = 'Seleccione Mes' OR :NEW.script_varchar32 = 'Seleccione Ao' ) THEN :NEW.script_varchar32 := ''; END IF; IF ( :NEW.script_varchar33 = 'No Contesta' OR :NEW.script_varchar33 = 'Seleccione Alternativa' OR :NEW.script_varchar33 = 'Seleccionar Alternativa' OR :NEW.script_varchar33 = 'Seleccione Dia' OR :NEW.script_varchar33 = 'Seleccione Mes' OR :NEW.script_varchar33 = 'Seleccione Ao' ) THEN :NEW.script_varchar33 := ''; END IF; IF ( :NEW.script_varchar34 = 'No Contesta' OR :NEW.script_varchar34 = 'Seleccione Alternativa' OR :NEW.script_varchar34 = 'Seleccionar Alternativa' OR :NEW.script_varchar34 = 'Seleccione Dia' OR :NEW.script_varchar34 = 'Seleccione Mes' OR :NEW.script_varchar34 = 'Seleccione Ao' ) THEN :NEW.script_varchar34 := ''; END IF; IF ( :NEW.script_varchar35 = 'No Contesta' OR :NEW.script_varchar35 = 'Seleccione Alternativa' OR :NEW.script_varchar35 = 'Seleccionar Alternativa' OR :NEW.script_varchar35 = 'Seleccione Dia' OR :NEW.script_varchar35 = 'Seleccione Mes' OR :NEW.script_varchar35 = 'Seleccione Ao' ) THEN :NEW.script_varchar35 := ''; END IF; IF ( :NEW.script_varchar36 = 'No Contesta' OR :NEW.script_varchar36 = 'Seleccione Alternativa' OR :NEW.script_varchar36 = 'Seleccionar Alternativa' OR :NEW.script_varchar36 = 'Seleccione Dia' OR :NEW.script_varchar36 = 'Seleccione Mes' OR :NEW.script_varchar36 = 'Seleccione Ao' ) THEN :NEW.script_varchar36 := ''; END IF; IF ( :NEW.script_varchar37 = 'No Contesta' OR :NEW.script_varchar37 = 'Seleccione Alternativa' OR :NEW.script_varchar37 = 'Seleccionar Alternativa' OR :NEW.script_varchar37 = 'Seleccione Dia' OR :NEW.script_varchar37 = 'Seleccione Mes' OR :NEW.script_varchar37 = 'Seleccione Ao' ) THEN :NEW.script_varchar37 := ''; END IF; IF ( :NEW.script_varchar38 = 'No Contesta' OR :NEW.script_varchar38 = 'Seleccione Alternativa' OR :NEW.script_varchar38 = 'Seleccionar Alternativa' OR :NEW.script_varchar38 = 'Seleccione Dia' OR :NEW.script_varchar38 = 'Seleccione Mes' OR :NEW.script_varchar38 = 'Seleccione Ao' ) THEN :NEW.script_varchar38 := ''; END IF; IF ( :NEW.script_varchar39 = 'No Contesta' OR :NEW.script_varchar39 = 'Seleccione Alternativa' OR :NEW.script_varchar39 = 'Seleccionar Alternativa' OR :NEW.script_varchar39 = 'Seleccione Dia' OR :NEW.script_varchar39 = 'Seleccione Mes' OR :NEW.script_varchar39 = 'Seleccione Ao' ) THEN :NEW.script_varchar39 := ''; END IF; END t_updtable_a08; / y la funcion que quiero crear es este: CREATE OR REPLACE FUNCTION GENESYS_OCS.fn_setea_campos(x varchar) RETURN NUMBER IS result NUMBER; BEGIN IF ( LOWER (:NEW.script_varchar1) = 'no contesta' OR :NEW.script_varchar1 = 'Seleccione Alternativa' OR :NEW.script_varchar1 = 'Seleccionar Alternativa' OR :NEW.script_varchar1 = 'Seleccione Dia' OR :NEW.script_varchar1 = 'Seleccione Mes' OR :NEW.script_varchar1 = 'Seleccione Ao' ) THEN :NEW.script_varchar1 := ''; END IF; IF ( :NEW.script_varchar2 = 'No Contesta' OR :NEW.script_varchar2 = 'Seleccione Alternativa' OR :NEW.script_varchar2 = 'Seleccionar Alternativa' OR :NEW.script_varchar2 = 'Seleccione Dia' OR :NEW.script_varchar2 = 'Seleccione Mes' OR :NEW.script_varchar2 = 'Seleccione Ao' ) THEN :NEW.script_varchar2 := ''; END IF; IF ( :NEW.script_varchar3 = 'No Contesta' OR :NEW.script_varchar3 = 'Seleccione Alternativa' OR :NEW.script_varchar3 = 'Seleccionar Alternativa' OR :NEW.script_varchar3 = 'Seleccione Dia' OR :NEW.script_varchar3 = 'Seleccione Mes' OR :NEW.script_varchar3 = 'Seleccione Ao' ) THEN :NEW.script_varchar3 := ''; END IF; IF ( :NEW.script_varchar4 = 'No Contesta' OR :NEW.script_varchar4 = 'Seleccione Alternativa' OR :NEW.script_varchar4 = 'Seleccionar Alternativa' OR :NEW.script_varchar4 = 'Seleccione Dia' OR :NEW.script_varchar4 = 'Seleccione Mes' OR :NEW.script_varchar4 = 'Seleccione Ao' ) THEN :NEW.script_varchar4 := ''; END IF; IF ( :NEW.script_varchar5 = 'No Contesta' OR :NEW.script_varchar5 = 'Seleccione Alternativa' OR :NEW.script_varchar5 = 'Seleccionar Alternativa' OR :NEW.script_varchar5 = 'Seleccione Dia' OR :NEW.script_varchar5 = 'Seleccione Mes' OR :NEW.script_varchar5 = 'Seleccione Ao' ) THEN :NEW.script_varchar5 := ''; END IF; IF ( :NEW.script_varchar6 = 'No Contesta' OR :NEW.script_varchar6 = 'Seleccione Alternativa' OR :NEW.script_varchar6 = 'Seleccionar Alternativa' OR :NEW.script_varchar6 = 'Seleccione Dia' OR :NEW.script_varchar6 = 'Seleccione Mes' OR :NEW.script_varchar6 = 'Seleccione Ao' ) THEN :NEW.script_varchar6 := ''; END IF; IF ( :NEW.script_varchar7 = 'No Contesta' OR :NEW.script_varchar7 = 'Seleccione Alternativa' OR :NEW.script_varchar7 = 'Seleccionar Alternativa' OR :NEW.script_varchar7 = 'Seleccione Dia' OR :NEW.script_varchar7 = 'Seleccione Mes' OR :NEW.script_varchar7 = 'Seleccione Ao' ) THEN :NEW.script_varchar7 := ''; END IF; IF ( :NEW.script_varchar8 = 'No Contesta' OR :NEW.script_varchar8 = 'Seleccione Alternativa' OR :NEW.script_varchar8 = 'Seleccionar Alternativa' OR :NEW.script_varchar8 = 'Seleccione Dia' OR :NEW.script_varchar8 = 'Seleccione Mes' OR :NEW.script_varchar8 = 'Seleccione Ao' ) THEN :NEW.script_varchar8 := ''; END IF; IF ( :NEW.script_varchar9 = 'No Contesta' OR :NEW.script_varchar9 = 'Seleccione Alternativa' OR :NEW.script_varchar9 = 'Seleccionar Alternativa' OR :NEW.script_varchar9 = 'Seleccione Dia' OR :NEW.script_varchar9 = 'Seleccione Mes' OR :NEW.script_varchar9 = 'Seleccione Ao' ) THEN :NEW.script_varchar9 := ''; END IF; IF ( :NEW.script_varchar10 = 'No Contesta' OR :NEW.script_varchar10 = 'Seleccione Alternativa' OR :NEW.script_varchar10 = 'Seleccionar Alternativa' OR :NEW.script_varchar10 = 'Seleccione Dia' OR :NEW.script_varchar10 = 'Seleccione Mes' OR :NEW.script_varchar10 = 'Seleccione Ao' ) THEN :NEW.script_varchar10 := ''; END IF; IF ( :NEW.script_varchar11 = 'No Contesta' OR :NEW.script_varchar11 = 'Seleccione Alternativa' OR :NEW.script_varchar11 = 'Seleccionar Alternativa' OR :NEW.script_varchar11 = 'Seleccione Dia' OR :NEW.script_varchar11 = 'Seleccione Mes' OR :NEW.script_varchar11 = 'Seleccione Ao' ) THEN :NEW.script_varchar11 := ''; END IF; IF ( :NEW.script_varchar12 = 'No Contesta' OR :NEW.script_varchar12 = 'Seleccione Alternativa' OR :NEW.script_varchar12 = 'Seleccionar Alternativa' OR :NEW.script_varchar12 = 'Seleccione Dia' OR :NEW.script_varchar12 = 'Seleccione Mes' OR :NEW.script_varchar12 = 'Seleccione Ao' ) THEN :NEW.script_varchar12 := ''; END IF; IF ( :NEW.script_varchar13 = 'No Contesta' OR :NEW.script_varchar13 = 'Seleccione Alternativa' OR :NEW.script_varchar13 = 'Seleccionar Alternativa' OR :NEW.script_varchar13 = 'Seleccione Dia' OR :NEW.script_varchar13 = 'Seleccione Mes' OR :NEW.script_varchar13 = 'Seleccione Ao' ) THEN :NEW.script_varchar13 := ''; END IF; IF ( :NEW.script_varchar14 = 'No Contesta' OR :NEW.script_varchar14 = 'Seleccione Alternativa' OR :NEW.script_varchar14 = 'Seleccionar Alternativa' OR :NEW.script_varchar14 = 'Seleccione Dia' OR :NEW.script_varchar14 = 'Seleccione Mes' OR :NEW.script_varchar14 = 'Seleccione Ao' ) THEN :NEW.script_varchar14 := ''; END IF; IF ( :NEW.script_varchar15 = 'No Contesta' OR :NEW.script_varchar15 = 'Seleccione Alternativa' OR :NEW.script_varchar15 = 'Seleccionar Alternativa' OR :NEW.script_varchar15 = 'Seleccione Dia' OR :NEW.script_varchar15 = 'Seleccione Mes' OR :NEW.script_varchar15 = 'Seleccione Ao' ) THEN :NEW.script_varchar15 := ''; END IF; IF ( :NEW.script_varchar16 = 'No Contesta' OR :NEW.script_varchar16 = 'Seleccione Alternativa' OR :NEW.script_varchar16 = 'Seleccionar Alternativa' OR :NEW.script_varchar16 = 'Seleccione Dia' OR :NEW.script_varchar16 = 'Seleccione Mes' OR :NEW.script_varchar16 = 'Seleccione Ao' ) THEN :NEW.script_varchar16 := ''; END IF; IF ( :NEW.script_varchar17 = 'No Contesta' OR :NEW.script_varchar17 = 'Seleccione Alternativa' OR :NEW.script_varchar17 = 'Seleccionar Alternativa' OR :NEW.script_varchar17 = 'Seleccione Dia' OR :NEW.script_varchar17 = 'Seleccione Mes' OR :NEW.script_varchar17 = 'Seleccione Ao' ) THEN :NEW.script_varchar17 := ''; END IF; IF ( :NEW.script_varchar18 = 'No Contesta' OR :NEW.script_varchar18 = 'Seleccione Alternativa' OR :NEW.script_varchar18 = 'Seleccionar Alternativa' OR :NEW.script_varchar18 = 'Seleccione Dia' OR :NEW.script_varchar18 = 'Seleccione Mes' OR :NEW.script_varchar18 = 'Seleccione Ao' ) THEN :NEW.script_varchar18 := ''; END IF; IF ( :NEW.script_varchar19 = 'No Contesta' OR :NEW.script_varchar19 = 'Seleccione Alternativa' OR :NEW.script_varchar19 = 'Seleccionar Alternativa' OR :NEW.script_varchar19 = 'Seleccione Dia' OR :NEW.script_varchar19 = 'Seleccione Mes' OR :NEW.script_varchar19 = 'Seleccione Ao' ) THEN :NEW.script_varchar19 := ''; END IF; IF ( :NEW.script_varchar20 = 'No Contesta' OR :NEW.script_varchar20 = 'Seleccione Alternativa' OR :NEW.script_varchar20 = 'Seleccionar Alternativa' OR :NEW.script_varchar20 = 'Seleccione Dia' OR :NEW.script_varchar20 = 'Seleccione Mes' OR :NEW.script_varchar20 = 'Seleccione Ao' ) THEN :NEW.script_varchar20 := ''; END IF; IF ( :NEW.script_varchar21 = 'No Contesta' OR :NEW.script_varchar21 = 'Seleccione Alternativa' OR :NEW.script_varchar21 = 'Seleccionar Alternativa' OR :NEW.script_varchar21 = 'Seleccione Dia' OR :NEW.script_varchar21 = 'Seleccione Mes' OR :NEW.script_varchar21 = 'Seleccione Ao' ) THEN :NEW.script_varchar21 := ''; END IF; IF ( :NEW.script_varchar22 = 'No Contesta' OR :NEW.script_varchar22 = 'Seleccione Alternativa' OR :NEW.script_varchar22 = 'Seleccionar Alternativa' OR :NEW.script_varchar22 = 'Seleccione Dia' OR :NEW.script_varchar22 = 'Seleccione Mes' OR :NEW.script_varchar22 = 'Seleccione Ao' ) THEN :NEW.script_varchar22 := ''; END IF; IF ( :NEW.script_varchar23 = 'No Contesta' OR :NEW.script_varchar23 = 'Seleccione Alternativa' OR :NEW.script_varchar23 = 'Seleccionar Alternativa' OR :NEW.script_varchar23 = 'Seleccione Dia' OR :NEW.script_varchar23 = 'Seleccione Mes' OR :NEW.script_varchar23 = 'Seleccione Ao' ) THEN :NEW.script_varchar23 := ''; END IF; IF ( :NEW.script_varchar24 = 'No Contesta' OR :NEW.script_varchar24 = 'Seleccione Alternativa' OR :NEW.script_varchar24 = 'Seleccionar Alternativa' OR :NEW.script_varchar24 = 'Seleccione Dia' OR :NEW.script_varchar24 = 'Seleccione Mes' OR :NEW.script_varchar24 = 'Seleccione Ao' ) THEN :NEW.script_varchar24 := ''; END IF; IF ( :NEW.script_varchar25 = 'No Contesta' OR :NEW.script_varchar25 = 'Seleccione Alternativa' OR :NEW.script_varchar25 = 'Seleccionar Alternativa' OR :NEW.script_varchar25 = 'Seleccione Dia' OR :NEW.script_varchar25 = 'Seleccione Mes' OR :NEW.script_varchar25 = 'Seleccione Ao' ) THEN :NEW.script_varchar25 := ''; END IF; IF ( :NEW.script_varchar26 = 'No Contesta' OR :NEW.script_varchar26 = 'Seleccione Alternativa' OR :NEW.script_varchar26 = 'Seleccionar Alternativa' OR :NEW.script_varchar26 = 'Seleccione Dia' OR :NEW.script_varchar26 = 'Seleccione Mes' OR :NEW.script_varchar26 = 'Seleccione Ao' ) THEN :NEW.script_varchar26 := ''; END IF; IF ( :NEW.script_varchar27 = 'No Contesta' OR :NEW.script_varchar27 = 'Seleccione Alternativa' OR :NEW.script_varchar27 = 'Seleccionar Alternativa' OR :NEW.script_varchar27 = 'Seleccione Dia' OR :NEW.script_varchar27 = 'Seleccione Mes' OR :NEW.script_varchar27 = 'Seleccione Ao' ) THEN :NEW.script_varchar27 := ''; END IF; IF ( :NEW.script_varchar28 = 'No Contesta' OR :NEW.script_varchar28 = 'Seleccione Alternativa' OR :NEW.script_varchar28 = 'Seleccionar Alternativa' OR :NEW.script_varchar28 = 'Seleccione Dia' OR :NEW.script_varchar28 = 'Seleccione Mes' OR :NEW.script_varchar28 = 'Seleccione Ao' ) THEN :NEW.script_varchar28 := ''; END IF; IF ( :NEW.script_varchar29 = 'No Contesta' OR :NEW.script_varchar29 = 'Seleccione Alternativa' OR :NEW.script_varchar29 = 'Seleccionar Alternativa' OR :NEW.script_varchar29 = 'Seleccione Dia' OR :NEW.script_varchar29 = 'Seleccione Mes' OR :NEW.script_varchar29 = 'Seleccione Ao' ) THEN :NEW.script_varchar29 := ''; END IF; IF ( :NEW.script_varchar30 = 'No Contesta' OR :NEW.script_varchar30 = 'Seleccione Alternativa' OR :NEW.script_varchar30 = 'Seleccionar Alternativa' OR :NEW.script_varchar30 = 'Seleccione Dia' OR :NEW.script_varchar30 = 'Seleccione Mes' OR :NEW.script_varchar30 = 'Seleccione Ao' ) THEN :NEW.script_varchar30 := ''; END IF; IF ( :NEW.script_varchar31 = 'No Contesta' OR :NEW.script_varchar31 = 'Seleccione Alternativa' OR :NEW.script_varchar31 = 'Seleccionar Alternativa' OR :NEW.script_varchar31 = 'Seleccione Dia' OR :NEW.script_varchar31 = 'Seleccione Mes' OR :NEW.script_varchar31 = 'Seleccione Ao' ) THEN :NEW.script_varchar31 := ''; END IF; IF ( :NEW.script_varchar32 = 'No Contesta' OR :NEW.script_varchar32 = 'Seleccione Alternativa' OR :NEW.script_varchar32 = 'Seleccionar Alternativa' OR :NEW.script_varchar32 = 'Seleccione Dia' OR :NEW.script_varchar32 = 'Seleccione Mes' OR :NEW.script_varchar32 = 'Seleccione Ao' ) THEN :NEW.script_varchar32 := ''; END IF; IF ( :NEW.script_varchar33 = 'No Contesta' OR :NEW.script_varchar33 = 'Seleccione Alternativa' OR :NEW.script_varchar33 = 'Seleccionar Alternativa' OR :NEW.script_varchar33 = 'Seleccione Dia' OR :NEW.script_varchar33 = 'Seleccione Mes' OR :NEW.script_varchar33 = 'Seleccione Ao' ) THEN :NEW.script_varchar33 := ''; END IF; IF ( :NEW.script_varchar34 = 'No Contesta' OR :NEW.script_varchar34 = 'Seleccione Alternativa' OR :NEW.script_varchar34 = 'Seleccionar Alternativa' OR :NEW.script_varchar34 = 'Seleccione Dia' OR :NEW.script_varchar34 = 'Seleccione Mes' OR :NEW.script_varchar34 = 'Seleccione Ao' ) THEN :NEW.script_varchar34 := ''; END IF; IF ( :NEW.script_varchar35 = 'No Contesta' OR :NEW.script_varchar35 = 'Seleccione Alternativa' OR :NEW.script_varchar35 = 'Seleccionar Alternativa' OR :NEW.script_varchar35 = 'Seleccione Dia' OR :NEW.script_varchar35 = 'Seleccione Mes' OR :NEW.script_varchar35 = 'Seleccione Ao' ) THEN :NEW.script_varchar35 := ''; END IF; IF ( :NEW.script_varchar36 = 'No Contesta' OR :NEW.script_varchar36 = 'Seleccione Alternativa' OR :NEW.script_varchar36 = 'Seleccionar Alternativa' OR :NEW.script_varchar36 = 'Seleccione Dia' OR :NEW.script_varchar36 = 'Seleccione Mes' OR :NEW.script_varchar36 = 'Seleccione Ao' ) THEN :NEW.script_varchar36 := ''; END IF; IF ( :NEW.script_varchar37 = 'No Contesta' OR :NEW.script_varchar37 = 'Seleccione Alternativa' OR :NEW.script_varchar37 = 'Seleccionar Alternativa' OR :NEW.script_varchar37 = 'Seleccione Dia' OR :NEW.script_varchar37 = 'Seleccione Mes' OR :NEW.script_varchar37 = 'Seleccione Ao' ) THEN :NEW.script_varchar37 := ''; END IF; IF ( :NEW.script_varchar38 = 'No Contesta' OR :NEW.script_varchar38 = 'Seleccione Alternativa' OR :NEW.script_varchar38 = 'Seleccionar Alternativa' OR :NEW.script_varchar38 = 'Seleccione Dia' OR :NEW.script_varchar38 = 'Seleccione Mes' OR :NEW.script_varchar38 = 'Seleccione Ao' ) THEN :NEW.script_varchar38 := ''; END IF; IF ( :NEW.script_varchar39 = 'No Contesta' OR :NEW.script_varchar39 = 'Seleccione Alternativa' OR :NEW.script_varchar39 = 'Seleccionar Alternativa' OR :NEW.script_varchar39 = 'Seleccione Dia' OR :NEW.script_varchar39 = 'Seleccione Mes' OR :NEW.script_varchar39 = 'Seleccione Ao' ) THEN :NEW.script_varchar39 := ''; END IF; --return(result); --EXCEPTION WHEN NO_DATA_FOUND THEN return 0; END ; / y bueno arriba ya les detalle el error... no soy muy diestro en esto pero creo que el problema esta en el x varchar tal vez este incorrecto... he estado investigandi y tal vez sea asi x IN varchar no lo se en realidad.... Por favor quisiera que m ayuden ya que siempre me han dado la mano ustedes muy agradecidos por la ayuda BLADES Pdta: Por favor al momento de ecplicarme la solucion pdio que sean lo mas explicitos ya que recien estoy comenzandp en esto.. para entender si muchas gracias 33  
ORA-26077: direct path column array is not initialized 172  
i have created ODBC through Data sources and tests completed sucessfully. when i am Trying to connect SQL Server through ODBC (ODBC :Oracle Open Client Adapter for ODBC 2.0.2.15.0 Microsoft SQL Server 09.00.3054) unable to Connect to SQL*Plus: Release 8.0.4.0.0. it is given following error-message . Error: ORA-03121: NO interface driver connected- function not performed. 271 Investment-Bank
When I look for mannual enry of any of the command in Unix, such as #man ls, I get a message "Reformatting entry. Wait..." and control comes to a next command prompt. what is the problem? 127  
What is the use of WINS? How to work it? 49 FutureSoft
Sir, I apply sbi clerk exams(07/09/09)But I did a mistake to enter my date of birth(correct 04.01.1985 / wrong 04.01.1984).please give me suggestions please. Thanking you, Bhushan.B 73  
ORA-26084: direct path context already finished 138  
ORA-16626: failed to enable specified object 169  
give me the detailed steps to run batch test in winrunner? 223 eSoft
ORA-26030: index string.string had string partitions made unusable due to: 124  
according to class7 how can we give description on pendrive? 203  
What is probability to guarantee that the task a programmer is going to create will be created and be able to run on a particular system (RTOS/GPOS). 200  
RMAN-05017: no copy of datafile number found to recover 34  
Process of resolving a specific problem Problem helps to enhance your ability to live life happily. Yes, it looks stupid when somebody say something like this. But it is true. If you say, “how?” I explain how. When there is a problem in ones life, he tries to solve it. Once he solves the problem the satisfaction of solving the problem which he feels has no words. You can see it in his eyes, on his face, in his footsteps, and not the least all around where he is. So tell me, it works? So never give up in your life. Live the life with problem, because life’s other name is problem. No one on the earth saying he or she has no problem. One who does not say that I have problem but try hard to solve the problem is the person who live life happily. There are two system of solving the particular problems. One is: solve intuitively. Two is: solve systematically. From my point of view, solving the problem systematically is much easier, more balanced and logical. To solve the problem systematically there are some instruction like relaxing head for some time, think on problem and the solution. One must not mix two things together in such a way that you can not differentiate them. If essential, there should be different solutions for different problems. In solve problem systematically, one come across five types of questions or we can view it as steps to solve the problem. They are: 1 What are the sources of problem is means “establish the goal”: “To live is to have problems and to solve problems is to grow intellectually.” (J. P. Guilford) No problem exists in the absence of an objective. We need to know exactly what and where we want to arrive at in order for us to properly determine our track and direction. Knowing our direction is an important aspect in problem solving, as what Diana Ross said, “Do you know where you’re going to?” 2 What the problem is exactly means “identify and define the problem”: “Microsoft is company that manages imagination” (Bill Gates). It is definitely related to imagination i.e. asking ourselves what is the problem and to seek to understand more why we think there is the problem is recognized what caused it in order for us to get an objective. 3 What are the solutions of problem means “set your priorities”: “The best way to get a good idea is to get a lot of ideas” (Linus Pauling) Bifurcation between which solutions are “must” and which are “want” is difficult task. The solution which must be taken to solve the problem is listed out. Therefore it is said that “the only joy in the world is to begin.” (Cesare Pavese). 4. Which solution is best among all means “brainstorm for solution”: “That human mind is like a parachute – it functions better when it is open.” (Cole’s Rules) As per this narration, I can say that brainstorm for the solution to the problem is must. When you ask for the opinion of other, you can decide upon what to do and don’t. 5. What action to be taken to solve the problem means “plan your course of action”: “It is not enough to just do your best or work hard. You must know what to work on” (W. Edwards Deming). Plan your course of action with regard to the resources needed to implement the solution. In Living a Life That Matters, Harold S. Kushner (the Massachusetts rabbi whose best selling books include When Bad Things Happen to Good People) suggests that the most successful lives are the ones that most effectively manage and resolve that problem. In a nutshell, to solve the particular problem, Rene Descartes says that “It is not enough to have a good mind; the main thing is to use it well.” FIND OUT GRAMMATICAL ERROR? 1246  
E-Mail New Answers        Answer Selected Questions
 
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com