Start a counter from a trigger

Hello,
  I've a 6023E
I'd like to :
    1) detect a  trigger T1
          2) count N trigger T2
          3) generate a TTL (one pulse)
    loop to 1)
So, I'm looking for a way to run a counter on a front edge of a signal T1 (fast and slim)
Then, I've to count N front edge coming from T2 (very fast and slim)
generate a TTL signal on a DIO
reset the counter to zero
then loop
The best way to do that should be to arm a counter to a given value, and at each pulse T2 to decrement this counter. When it reaches 0, it generates a TTL signal, the counter is reinitialized to the good value and wait for T1
seems easy but...

Kevin,
    at first, thanks for your advices.
I check the various signal with a classic osciloscope. I trig on T1, I visualize the T2 and the pulse I generate via LabView. In such way, I can see that my pulse occure in two different positions. I can count the T2 pulses on the scope screen. I note that the generated pulse is larger that the T2 triggers (about 2 pulses, which seems OK because I generate 2 ticks as you said).
I've said something wrong : the number of ticks between the 2 "stable" position varies among the velocity of the rotation. Its about 1,2ms.
I join my program at this message.
I've trie to put a delay in the loop, the result is the same. It's true that the delay I've trie was very short (about 10 ms) with the metronome icon (wait until next 10ms perhaps, I don't remember the name).
Christophe
Message Edité par c.r. le 10-25-2006 05:34 AM
Attachments:
DecaleTriggerConvertible.vi ‏44 KB

Similar Messages

  • Can't start page count from third page

    I have a 90 page document I want to start page i after the Cover and *blank Back Cover*, page 3 is the *Table of Contents* should be i. Page 4 Forward should be ii and page 5 should be page 1 a short Introduction and the beginning of the story. I can't seem to to find a place to format the page numbering. The book starts numbering the cover as 1 (the number does not show as the cover photo bleeds across the margins.) the blank back cover is labeled as page 2 and the Table of Contents reads as page 3. I would accept the the numbering starting page 1 as the Table of Contents even though book layouts normally start the front matter as lower case roman numerals.
    Dick Deaton

    Hi, fruhulda
    Got it fixed in a fashion: I got page 1 to start where I wanted it to but the first four pages (1-4) were blank. I could not insert pages i and ii in page 3 and 4 after several tries I typed the two lower case roman numerals from a different application on a white background and pasted the in place.
    When I tried to insert ( i ) it appeared on both pages 3 and 4 when I inserted ii it replaced i with ii so that both pages had the same number. I forgot to mention that I'm using Pages 8 not Pages 9.
    Dick

  • Need to change footer PAGE NUMBERS to start counting from page three

    Hi I am doing some academic writing with AppleWorks and the cover page and second page should not be numbered. I need to start the page count from page three because the first two pages cannot be included in the count. ( Page three must be labeled page one, page four must be labeled page two, etc.) How can I do this?
    Thank you!!

    Hello,
    What I have done is this:
    1. Click just to the left of the first character on page 3.
    2. Go to Format>Insert section break
    3. Go to Format>Section
    4. Select new page from drop down menu
    5. Select Restart page numbering, and insert required number
    6. Select Different this section
    7. Go to Format>Insert Footer
    8. In the footer created, type in whatever plus Insert page # from Edit menu
    I hope this helps.
    DavidG

  • Get the connected users count from sql server using powershell

    Hi,
    I am working on SharePoint 2013,I am having SQL server 2012.
    I want to get the Connected Users count from  sql server using power shell.
    Can any one please let me know how to implement.
    Thanks in advance.
    Regards,
    Phani Kumar R

    Sorry Tom, I dont like to hear "There is no way" :-(
    There is always a way in computer to get what you need (at least it is good as Rule of thumb). I am not sure we will find it here (in a voluntary supporting forum).
    Now we (or better the architect of their system) should think of the way :-)
    Of course doing so in the forum, while we do know the system and only got a glimpse on what is needed, is not the best idea. I will point some issues which can be related to a solution. Those are not a solotions as it is but something we can use for a solution
    once something look in the right way.
    * A web connects counter is one of the easier thing to do. The basic idea is just to use the connect event and the disconnect event an adding 1 or removing 1 from the counter. This is best to do in the application using static variable as any way the second
    the application is down the counter can be go to hell as we know there is no one connect (there for a counter do not use database usually). Using a web dot-net (or asp 3) application this is done most of the time using the global.asa/global.asax file, which
    include the application and session events. for example using the method Session_Start
    protected void Session_Start(object sender, EventArgs e) {
    // Code that runs when a new session is started
    * IIS have a build-in loging system where we can log each and every request/response or only logins users. There is lot we can do with this log files including data mining. Using small bulk insert script we can use the SQL agent to insert those logs to the
    database and get the information we need.
    * any web developer i want to believe know about the Fiddler application which we use to monitor traffic. A proxy is not the only way to to monitor traffic (it is not good for our case as this is in the client side), there are several option in the server
    side.
    * SQL trigger on logon can be use to get information on who is loging on and can be logging only specific source (like our sharepoint IP or any sharepoint application). This information (what is the application which connect to the server can be retrive
    in several solution without using a trigger as well)
    *** (I'll be brief ... I'm getting bored... probably the reader feel the same)
    * using extended events and/or profiler we can monitor any connection and save the data or just remember it in shared (static) variable (this
    blog show how to do it by the way). Again we can monitor specific application or use any filter in order to get only the sharepoint users
    .... and i can continue for several days more :-) ...
    "If there is a willing, then there's a way"
    "If you can't do it, Then someone else probably can"
    "Never say never"
    I hope this help somehow :-)
    [Personal Site] [Blog] [Facebook]

  • File to Jdbc: how to get record count from DB table

    Hello,
    i have a scenario file to JDBC....ihave to insert input file data to DB table.
    now my requirement is ..if i insert a file with 50 records to db table on first time, and then next time if i insert the file with 100 records to db table....the count should start from 51 in db table.
    if i insert another file 3rd time, with 25 records, the count shold start from 151...so how can i achieve this functionality....
    i think following options:
    1. in mapping write lookup to call JDBC sender channel and fetch count and map same to target filed of DB. if this is ok...please provide UDF code..2. db triggers (not suitable for my req.)
    So kindly let meknow possible solutions and required UDF codes..please
    Thanks in advance...SARAN

    >>>..if i insert a file with 50 records to db table on first time, and then next time if i insert the file with 100 records to db table....the count should start from 51 in db table.
    if i insert another file 3rd time, with 25 records, the count shold start from 151...so how can i achieve this functionality....
    i think following options:
    Suggestions:
    1)Create an id column in db table.  Talk to DB guy to create oracle sequencer for that column. So, every time you insert record that field will be updated with oracle sequencer. You dont need to handle this.
    Refer this link
    http://www.techonthenet.com/oracle/sequences.php
    2) If you want to handle via pi,  following suggestions..
    If you use PI 7.1 or above, use jdbc lookup in the mapping and do the query  something like this
    Refer this link
    /people/jin.shin/blog/2008/02/15/sap-pi-71-mapping-enhancements-series-graphical-support-for-jdbc-and-rfc-lookups
    Do select query as below
    select count(*) from tablename;
    the above query will return number of rows exist in the table. So use that value and map it in the target field.
    If you use pi 7.0 or below then use the previous reply and do the UDF implementation for jdbc lookup during mapping. Because jdbc lookup does not support in those versions.
    Hope that helps.
    Baskar

  • Start / stop recording from other software?

    I have a setup where three cameras are supposed to start/stop recording based on user interaction in another software. So, is it possible to trigger a recording to start and stop from another software? If so, how can this be done?

    To be honest Im not sure but I dont think so.
    If this is a securitycam setup one way to do it without having to have acces to "endles" storage space is to use one of the free services for webcasting like jtv, ustream, veetle, or livestream. I believe all of them have a privace option so you can enter a securitycode so only you can acces the videos. Its not optimal but it gets the job done. I believe some of them will erase videos after a while though if you dont highlight them for saving.

  • Starting a GP from a User Exit?

    Hi all,
    How do I start a GP from a user exit?
    The scenario is like this: when a notification is created in SAP (transaction QM01), it should trigger the GP.
    Thank you very much,
    Frederik-Jan

    The actual place to find the information you need to start GP using Web Services (which you can then implement in a User Exit) is here
    http://help.sap.com/saphelp_nw2004s/helpdata/en/44/44c59fd7c72e84e10000000a155369/frameset.htm

  • Getting counts from detail tables

    I have multiple record bock that displaye a list of cell ids and their attributes; each record also displays record counts of its 3 detail tables.
    Originally, the POST-QUERY trigger select the counts (3 detail tables) as part of the data block for each record (or cell id). There are over 16K records, so each record query issues 3 selects. The whole query toke over a minute. I was asked to improve the retrieval time.
    At first I thought perhaps I could put the 3 counts in 3 separate data blocks and issue one query each in a "select cell_id, count(*). . . group by cell_id" but scrolling would not synchronize with the other blocks. So I dropped that idea.
    Next, I added a program unit from which the WHEN-NEW-FORM-INSTANCE trigger calls after execute_query. It issues "select cell_id, count(*). . . group by cell_id" (one for each detail table) and fills the count columns in the original data block. However I need to set the block property Query All Records to YES so that the cell ids and attributes are filled first. That means that before the form comes up it has to retrieve all records. That saves me about 10-15 seconds od retrieval time and I lose the ability to quickly bring up the form.
    Then I looked at using dfferent Query Data Source Types. I don't think I could do one query with counts of detail tables. Besides, some items (attrinutes) of the cell are upate-able.
    Any ideas and suggestions will be appreciated.

    Yes. I suggested adding columns to the master tables and introduce stored triggers.
    Since the change is not trivial, according to management, they put in on hold.I'm not sure if you misunderstood my suggestion or were responding to a different post. The query I wrote was for counting the detail records on the fly rather than populating new columns. If you include the counting in your main query then you will probably not have a much slower query than if you don't show any counts at all. Scrolling through the block will be no slower than if you had no counts, because no extra processing needs to be done. (You'll still have to fetch the detail blocks for each row, so moving to the last record will still be slow - that's a bad indicator of the performance of a query.)
    For example, fetching the objects for each user takes 5 seconds. When I include the number of tables, indexes and constraints for each user within the query the time only goes up to just under 9.
    SQL> set autot trace stat
    SQL> set timing on
    SQL> SELECT
      2    owner,
      3    object_name,
      4    object_type
      5  FROM all_objects ao;
    39062 rows selected.
    Elapsed: 00:00:05.13
    Statistics
           4656  recursive calls
              0  db block gets
          85106  consistent gets
              0  physical reads
              0  redo size
        1469372  bytes sent via SQL*Net to client
          29021  bytes received via SQL*Net from client
           2606  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
          39062  rows processed
    SQL> SELECT
      2    owner,
      3    object_name,
      4    object_type,
      5    (SELECT Count(*) FROM all_tables WHERE owner = ao.owner) count_tables,
      6    (SELECT Count(*) FROM all_indexes WHERE owner = ao.owner) count_indexes,
      7    (SELECT Count(*) FROM all_constraints WHERE owner = ao.owner) count_constraints
      8  FROM all_objects ao;
    39062 rows selected.
    Elapsed: 00:00:08.86
    Statistics
           4656  recursive calls
              0  db block gets
         270299  consistent gets
              0  physical reads
              0  redo size
        1684042  bytes sent via SQL*Net to client
          29021  bytes received via SQL*Net from client
           2606  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
          39062  rows processed
    SQL> If you populate the counts in post-query then the process is similar to the block below. I tried to get a timing and stats for this but it took over 15 minutes so I shut it down.
    DECLARE
    ct NUMBER;
    ci NUMBER;
    cc NUMBER;
    BEGIN
      FOR ao IN (SELECT owner, object_name, object_type FROM all_objects)
      LOOP
        SELECT Count(*) INTO ct FROM all_tables WHERE owner = ao.owner;
        SELECT Count(*) INTO ci FROM all_indexes WHERE owner = ao.owner;
        SELECT Count(*) INTO cc FROM all_constraints WHERE owner = ao.owner;
      END LOOP;
    END;Creating a view on the query and writing the "instead of" triggers is hopefully a trivial enough operation that management won't get in the way. Then you'll be able to update the block.

  • Start Varient is not getting trigger in Meta Chain.

    Hi All,
    I have a ProcessChain with in it there are many Meta Chains.
    Problem is, there are few Meta Chains Start Varient is not getting trigger automatically, it is getting red and continuing further process,
    when i check its logs also it is not giving any logs
    Please help me in this.
    Regards,
    Kiran

    Hi V,
    when i dubble click, i am getting bellow message Log
    20.07.2009     12:24:22     Job started     S     00     516
    20.07.2009     12:24:22     Step 001 started (program RSPROCESS, variant &0000000365507, user ID BIWREMOTE)
    20.07.2009     12:24:22     No new deltas in DataStore object 0FIGL_O02 for update     S     RSM1     96
    20.07.2009     12:24:23     Chain SFI_SFIGL_C02 was removed from scheduling     S     RSPC     26
    20.07.2009     12:24:23     Program RSPROCESS successfully scheduled as job BI_PROCESS_LOADING with ID 12242300     S     RSM     703
    20.07.2009     12:24:23     Program RSPROCESS successfully scheduled as job BI_PROCESS_ODSACTIVAT with ID 12242300     S     RSM     703
    20.07.2009     12:24:23     Program RSPROCESS successfully scheduled as job BI_PROCESS_ODSPROCESS with ID 12242300     S     RSM     703
    20.07.2009     12:24:23     Program RSPROCESS successfully scheduled as job BI_PROCESS_ROLLUP with ID 12242300     S     RSM     703
    20.07.2009     12:24:23     Chain SFI_SFIGL_C02 Was Activated And Scheduled     S     RSPC     25
    20.07.2009     12:24:23     Cannot activate job BI_PROCESS_TRIGGER (return code 8)     I     RSM     702
    20.07.2009     12:24:23     Process did not report an instance -> no log     E     RSPC     57
    20.07.2009     12:24:23     Job cancelled after system exception ERROR_MESSAGE     A     00     564
    But when i go Right Click and Display Variant  and check for 1 week ego, it wont show any logs, it says "No Logs were found"
    Please let me know your inputs
    Regards,
    Kiran

  • Creating count from queried fields

    Post Author: John
    CA Forum: Formula
    Hello all.  Newbie here to the forum and CR.
    Running CR 9
    I have a report that extracts certain data from the database.  A field that displays "test code", is not part of the original search criteria.  I have been asked to total "test code" but, I don't know how to count the records from the extracted data.
    For example,  I'm pulling in everyone with a last name that begins with a "J" and who came in the store from 01/01/07 - 01/31/07.  I then list the data and also print their address, city, state, zip, and "test code".  The "test code" is one of 3 possible codes.  I want to have 1 running total for each of these 3. 
    My knowledge allows me to create a running total on the field but, the total is from ALL of the records that match.
    So, if we had 45 people with "J" and 01/01/07 - 01/31/07, the running total will be 67 because it is finding all data sets that match it's code.  It isn't pulling from the original search criteria of "J" and 01/01/07 - 01/31/07.
    Any help is appreciated.
    John

    Post Author: yangster
    CA Forum: Formula
    A running total runs along side the data so it should never be placed in a header or the detail section.It must always reside in a group footer, page footer or report footer.Your basic running total in crystal will initilize at the report header, evaluate at the detail level and display the value in the report footer.So for your generalized case you have a simple running total that starts a count at 0 to start the report.You running total should be setup like thisField to summarize -> Product_IDType of summary -> countEvaluate - using formula -> inside formula typed in (if product_id = 4344211 then true else false)Reset -> neverAnd it won't matter if you put it in the GF2, GF1, PF, or RF the value will always be 4.  If your report spans multiple pages though you should not put the formula in the PF as it report the running total as of the page but keep on totaling to the next page.My suggestion to you would be to test your report with a manual running total to see exactly where your numbers counting is going astray.To do that create 3 formulas@init_count  (place in report header)whileprintingrecords;numbervar a;a:= 0@eval_count (place at the detail level)whileprintingrecords;numbervar a;if product = 4344211 thena := a + 1@display_count (place in the report footer)whileprintingrecords;numbervar a;athis will show you exactly what is being counted for every single item in your reportnormally you'd use a manual running total to get a summary of a summary or to sum a value at a group level but this should help you decode what is causing you buggy datahope this helps

  • Can I start the animation from the middle?

    Hi,
    I want to use the same animation in two different places and in the 2nd place it should start from 15 seconds, not from the beginning. Is this possible? There are too many elements and events inside and would be painfull to redo it because of this, but would be great if I could just start playing it from 15 seconds.

    Hi, Mandi-
    You can create a variable the first time that says "I'm no longer the first play!"  Here's a sample of what you would put in your trigger at 0s.
    var hasPlayed = sym.getVariable("hasPlayed");
    // if it hasn't played before, start at 15s.  Otherwise, keep on going.
    if (hasPlayed == undefined) {
       // first set the variable so that the next time I hit this trigger, I'll skip this statement
       sym.setVariable("hasPlayed", true);
       sym.play(15000);
    Hope that helps,
    -Elaine

  • Inserting into a table which is created "on the fly" from a trigger

    Hello all,
    I am trying to insert into a table from a trigger in Oracle form. The table name however, is inputted by the user in am item form.
    here is what the insert looks like:
    insert into :table_name
    values (:value1, :value2);
    the problem is that forms does not recognize ::table_name. If I replace :table_name with an actual database table, it works fine. However, I need to insert to a table_name based from oracle form item.
    By the way, the table|_name is built on the fly using a procedure before I try to insert into it.
    Any suggestion on how can I do that? My code in the trigger is:
    declare
    dm_drop_tbl(:table_name,'table) // a call to an external procedure to drop the table
    dm_create_tbl(:table_name,'att1','att2');
    insert into :table_name
    values (:value1, :value2);
    this give me an error:
    encounter "" when the symbol expecting one.....

    Hi ,
    You should use the FORMS_DDL built_in procedure. Read the on-line documentation of forms ...
    Simon

  • Urgent Help Required For Starting RMI server from servlet.

    I am currently working on rmi project.
    I want to send request to remote machine(Web host) where my application is from desktop client .For that we are using RMI.
    I am writing servlet and inside it i am binding object to registry for rmi server.
    which will be deployed on remote server.
    code ....
    Registry reg;
    reg=LocateRegistry.createRegistry(1099);
    Server server=new Server("server");//class whose remote object to be accessed
    //extends unicast remote object.Implement ServerInt interface which extends Remote.
    reg.bind("server",server);
    When i am trying to access this object i am getting following exception.
    javax.naming.CommunicationException [Root exception is java.rmi.UnmarshalExcepti
    on: error unmarshalling return; nested exception is:
            java.lang.ClassNotFoundException: ServerModule.ServerInt]
    at com.sun.jndi.rmi.registry.RegistryContext.lookup(Unknown Source)
    at com.sun.jndi.toolkit.url.GenericURLContext.lookup(Unknown Source)
    at javax.naming.InitialContext.lookup(Unknown Source)
    at RequstReplication.main(RequstReplication.java:27)
    Caused by: java.rmi.UnmarshalException: error unmarshalling return; nested excep
    tion is:
    java.lang.ClassNotFoundException: ServerModule.ServerInt
    at sun.rmi.registry.RegistryImpl_Stub.lookup(Unknown Source)
    ... 4 more
    Caused by: java.lang.ClassNotFoundException: ServerModule.ServerInt
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Unknown Source)
    at sun.rmi.server.LoaderHandler.loadProxyInterfaces(Unknown Source)
    at sun.rmi.server.LoaderHandler.loadProxyClass(Unknown Source)
    at sun.rmi.server.LoaderHandler.loadProxyClass(Unknown Source)
    at java.rmi.server.RMIClassLoader$2.loadProxyClass(Unknown Source)
    at java.rmi.server.RMIClassLoader.loadProxyClass(Unknown Source)
    at sun.rmi.server.MarshalInputStream.resolveProxyClass(Unknown Source)
    at java.io.ObjectInputStream.readProxyDesc(Unknown Source)
    at java.io.ObjectInputStream.readClassDesc(Unknown Source)
    at java.io.ObjectInputStream.readOrdinaryObject(Unknown Source)
    at java.io.ObjectInputStream.readObject0(Unknown Source)
    at java.io.ObjectInputStream.readObject(Unknown Source)
    ... 5 more
    I can access naming enumeration of registry and object bound to it.
    by following program.I shows corect objects.
    Context namingContext=new InitialContext();
    NamingEnumeration<NameClassPair> e=namingContext.list("rmi:");
    while(e.hasMore())
    System.out.println(e.next().getName());
    While when i start RMI server from simple java program i can access these objects from registry.
    I am not getting what is problem problem.Is there any other way to send request?
    Plese give quick response.

    I am currently working on rmi project.
    I want to send request to remote machine(Web host) where my application is from desktop client .For that we are using RMI.
    I am writing servlet and inside it i am binding object to registry for rmi server.
    which will be deployed on remote server.
    code ....
    Registry reg;
    reg=LocateRegistry.createRegistry(1099);
    Server server=new Server("server");//class whose remote object to be accessed
    //extends unicast remote object.Implement ServerInt interface which extends Remote.
    reg.bind("server",server);
    When i am trying to access this object i am getting following exception.
    javax.naming.CommunicationException [Root exception is java.rmi.UnmarshalExcepti
    on: error unmarshalling return; nested exception is:
            java.lang.ClassNotFoundException: ServerModule.ServerInt]
    at com.sun.jndi.rmi.registry.RegistryContext.lookup(Unknown Source)
    at com.sun.jndi.toolkit.url.GenericURLContext.lookup(Unknown Source)
    at javax.naming.InitialContext.lookup(Unknown Source)
    at RequstReplication.main(RequstReplication.java:27)
    Caused by: java.rmi.UnmarshalException: error unmarshalling return; nested excep
    tion is:
    java.lang.ClassNotFoundException: ServerModule.ServerInt
    at sun.rmi.registry.RegistryImpl_Stub.lookup(Unknown Source)
    ... 4 more
    Caused by: java.lang.ClassNotFoundException: ServerModule.ServerInt
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Unknown Source)
    at sun.rmi.server.LoaderHandler.loadProxyInterfaces(Unknown Source)
    at sun.rmi.server.LoaderHandler.loadProxyClass(Unknown Source)
    at sun.rmi.server.LoaderHandler.loadProxyClass(Unknown Source)
    at java.rmi.server.RMIClassLoader$2.loadProxyClass(Unknown Source)
    at java.rmi.server.RMIClassLoader.loadProxyClass(Unknown Source)
    at sun.rmi.server.MarshalInputStream.resolveProxyClass(Unknown Source)
    at java.io.ObjectInputStream.readProxyDesc(Unknown Source)
    at java.io.ObjectInputStream.readClassDesc(Unknown Source)
    at java.io.ObjectInputStream.readOrdinaryObject(Unknown Source)
    at java.io.ObjectInputStream.readObject0(Unknown Source)
    at java.io.ObjectInputStream.readObject(Unknown Source)
    ... 5 more
    I can access naming enumeration of registry and object bound to it.
    by following program.I shows corect objects.
    Context namingContext=new InitialContext();
    NamingEnumeration<NameClassPair> e=namingContext.list("rmi:");
    while(e.hasMore())
    System.out.println(e.next().getName());
    While when i start RMI server from simple java program i can access these objects from registry.
    I am not getting what is problem problem.Is there any other way to send request?
    Plese give quick response.

  • Firefox 21.0 unable to start offline app from bookmark without fake wifi turn on android 2.2.1 and 2.3.6

    when the android phone is turned off, and then back on again, any desk top icon or bookmark of an web page with a manifest will not work when in airplane mode. You must at least make an attempt to turn on wifi, even an unsuccessful attempt to find a wifi connection will do. Then when you use the book mark or the desktop icon, it will work. I have a series of phones which only have internect connection - no phone company tower connection SAMSUNG-SGH-1997 firmware version 2.2.1 kernel verions 2.6.32.9 FROYO.UCKH1. Contact wih android support only got suggestion to use the google chrome browser, which incidentally does not work on 2.2.1

    Hi,
    I tried starting the server from the console as well as from command prompt. Here I am giving the command below.
    nohup ./startManagedWebLogic.sh bi_server1 t3://machineIP:portNo > bis1_startup.log &
    But each time I got the same exception.
    Korandla

  • Passing Values from a Trigger to a procedure

    Hi,
    How do i pass my OLD and NEW values from a Trigger to a Procedure. THe procedure will contain statements which will insert one record for each column with the OLD and NEW value.( I may have 31 inserts in the LOG table)
    Basically we have a table with 31 fields, i am tracking the changes done on that table, in my trigger i compare IF :OLD.COL1 <> :NEW.COL1 then i am inserting in a LOG Table if the values have changed.
    I am also tracking ie inserting in the LOG table if i am ADDING OR DELETING any row from the tabble.
    Thank yu

    It worked i created a RECORD type variable and passed OLD Value to one variable and NEW value to another variable.
    thanks

Maybe you are looking for

  • Macbook Air won't connect to Airport Extreme!

    I'm at a loss here. Last week I got drive corruption because I lost connection while writing data to an external drive connected to my Airport Extreme (while using my iMac). I had noticed the drive connection was dropping quite often, both using the

  • How do I transfer my Creative Cloud subscription to a desktop cpu?  My laptop is too antiquated.

    My laptop computer is too old to run Creative Cloud programs without Microsoft constantly closing it.  Actually, Illistrator seem to work okay so far, but Photoshop continually crashes after certian moves and sometimes even upon attempting to save af

  • Template removal issues

    I have editable regions that I have removed in my templates but they are still present in the pages that were created  from the templates how can I remove them in the pages??,

  • Can't edit dng in Elements

    I just downloaded the trial version of Elements and am trying to open some DNGs from Lightroom 3.2 - Edit In... PS Elements. However unlike PS CS5, they won't open directly, but I get the dialogue box asking me to edit a copy (the only option availab

  • Noob JSP + Servlet + EJB information for building J2EE simple web project.

    I am new to Java. Covered basics and now jumping into making a simple web project. Project with functionality as below 1- CSS and Javascript use. 2- Managing user information (Add, Update, Delete, List) 3- Login form (Pass username, password and auth