I'm a bit curious...

I've tried and tried to check the status on my order, but the page is unavailable. 
I looked at "My Account", under the picture of my phone, it says "upgrade available", I clicked on it, but then it says that I recently purchased a new phone for my line but hasn't been activated yet.
But, I STILL haven't gotten a confirmation of shipment yet, just that it's processing. Another thing is, I pre ordered at 3am, while my friend pre ordered about 9 am and he got his shipment confirmation before me, just find it weird, lol.

The rules go like this.
1. For a given voltage, the charge rate is the same.
2. It's safe to use the higher current capacity charger for the computer which can use the lower one, but not the other way 'round.
3. You always need to be sure the polarity of the plugs is the same. But for the same manufacturer, they are the same.
-Jerry

Similar Messages

  • Switch Question

    I'm new to Java, but not to programming or IDE's. I'm in the early stages of developing a new Java application, so I've been playing with various example code from some of the number of books available on the topic. In particular I was interested in using the StreamTokenizer class to initially set up my database, so I looked for some examples of how to use it. One of the examples I located is the following:
    import java.io.*;
    class StreamTokenizerDemo2 {
    public static void main(String args[]) {
    try {
    // Create a file reader
    FileReader fr = new FileReader(args[0]);
    // Create a buffered reader
    BufferedReader br = new BufferedReader(fr);
    // Create a stream tokenizer
    StreamTokenizer st = new StreamTokenizer(br);
    // Consider commas as white space
    st.whitespaceChars(',', ',');
    // Process tokens
    while(st.nextToken() != StreamTokenizer.TT_EOF) {
    switch(st.ttype) {
    case st.TT_WORD:
    System.out.println(st.lineno() + ") " +
    st.sval);
    break;
    case st.TT_NUMBER:
    System.out.println(st.lineno() + ") " +
    st.nval);
    break;
    default:
    System.out.println(st.lineno() + ") " +
    (char)st.ttype);
    // Close file reader
    fr.close();
    catch(Exception e) {
    System.out.println("Exception: " + e);
    It looks good on the surface, but the compiler is unhappy that the case st.TT_WORD: is not a constant - the exact complaint is:
    StreamTokenizerDemo2.java [24:1] constant expression required
    case st.TT_WORD:
    Of course, the other case statement also generates an error.
    As I would expect, changing the switch/case to cascaded if's works just fine. The examples elsewhere in the book I took this one from have been excellent so far; this is the first time I've seen a compiler error on their example code.
    Has there been a change to the syntax or error checking with regard to the case statement since the book was printed in 1999? Can a case statement be used in this kind of application or should I just decide to stay with cascaded if's?
    Thanks in advance for your help and suggestions.
    Jon

    Thanks for the quick reply. I followed the same approach (using the class rather than the instance) about an hour after I posted my question and was able to make the example code work then.
    I'm still a bit curious about the restriction though. The examples were from a 1999 Schildt and O'Neil book, Teaching Yourself Java. Every other example I have played with has worked right out of the book without any changes, but the StreamTokenizer example failed. I wonder if the 1999 compiler wasn't as restrictive?
    Anyway, I appreciate the response.
    Thanks
    Jon

  • CS5.5 licensing for created content

    I am considering purchasing a one year or month to month subscription to CS5.5 but I am bit curious about what I can and cannot do with created content. I am sure the information I am seeking is available but I have not been able to locate it. If someone could explain it to me or direct me toward the information I would greatly appreciate it.
    Q1 - If I were to begin developing software using a trial version of CS5.5 and later upgrade my trial to a subscription, would I retain full ownership of work developed using the trial version? Would I be free to distribute said software without limitation?
    Q2 - If I were to begin developing software using the trial version of CS5.5 and somehow complete it within the 30 day trial window without upgrading to a subscription, would I retain the same rights mentioned above?
    Thank you in advance for any information.

    You are overthinking this - why should Adobe care? Unless you are using specific components e.g. from Flex/ Flashbuilder or ActionScript files that fall under specific "no unbundling" regulations and may only be distributed under limited license, I see no reason why anyone would want nor could legally prevent you from distributing a compiled SWF, AIR app or even custom server-side code as long as it's based on your own code and only requires runtime components which are available for free, anyway. You might just find it difficult to deal with your clients/ users in the long run, if you don't have the means of updating your code, should you not decide to purchase/ subscribe, but that#s a different matter....
    Mylenium

  • Could not find it? Can you?

    When I run this program I can see the message and I can input number but when methods returns d I can not see the value of d at all. I get a message on the applet like this:
    Start: applet not initialized
    import java.awt.Container;
    // Java extension packages
    import javax.swing.*;
    public class Assignment extends JApplet {
    // initialize applet by obtaining user input and creating GUI
    public void init()
    String s1 = null;
    String s2 = null;
    String s3 = null;
    String FirstNumber;
    int option;
    // create JTextArea to display results
    JTextArea outputArea = new JTextArea();
          JOptionPane.showMessageDialog
             (null,"Enter: '1' to find out HYPOTENUSE \n\n Enter: '2' to find out OPPOSTIE \n\n Enter: '3' to find out ADJACENT ");
    // obtain user input
    FirstNumber =JOptionPane.showInputDialog("Please Enter your option: ");
    option = Integer.parseInt( FirstNumber );
    if(option==1) {
    s1 = JOptionPane.showInputDialog(
    "Please Enter OPPOSITE " );
    s2 = JOptionPane.showInputDialog(
    "Please Enter ADJECENT " );
    else if(option==2)
    s2 = JOptionPane.showInputDialog(
    "Please Enter ADJECENT " );
    s3 = JOptionPane.showInputDialog(
    "Please Enter HYPOTENUSE " );
    else if(option==3)
    s1 = JOptionPane.showInputDialog(
    "Please Enter OPPOSITE" );
    s3 = JOptionPane.showInputDialog(
    "Please Enter HYPOTENUSE" );
    else
    JOptionPane.showMessageDialog(null,"You have entered wrong code try again please ");
    // convert user input to double values
    double number1 = Double.parseDouble( s1 );
    double number2 = Double.parseDouble( s2 );
    double number3 = Double.parseDouble( s3 );
    // call method maximum to determine largest value
    double pythagoras = maximum(option, number1, number2, number3 );
    if(option==1) {
    // display numbers and maximum value
    outputArea.setText( "HYPOTENUSE is: " + pythagoras);
    if(option==2)
    outputArea.setText("OPPOSITE is: " + number1);
    if(option==2)
    outputArea.setText( "ADJACENT is: " + number2);
    // get the applet's GUI component display area
    Container container = getContentPane();
    // attach outputArea to Container c
    container.add( outputArea );
    } // end method init
    public double maximum(int a, double x, double y, double z )
    double b,c,d=0;
    if(a==1) {
    b=x*x;
    c=y*y;
    z=b+c;
    d=Math.sqrt(z);
    if(a==2) {
    b=z*z;
    c= y*y;
    x=b-c;
    d=Math.sqrt(x);
    if(a==3) {
    b=z*z;
    c=x*x;
    y=z-x;
    d=Math.sqrt(y);
    return d;
    }

    Thanks for the advice I have fixed the problems but still I am a bit curious how can I not show the third input in each selection ( Please enter 0) but get the third input valid?
    kind regards,
    import java.awt.Container;
    // Java extension packages
    import javax.swing.*;
    public class Assignment extends JApplet {
    // initialize applet by obtaining user input and creating GUI
    public void init()
    String s1 = null;
    String s2 = null;
    String s3 = null;
    String FirstNumber;
    int option;
    // create JTextArea to display results
          JOptionPane.showMessageDialog
             (null,"Enter: '1' to find out HYPOTENUSE \n\n Enter: '2' to find out OPPOSITE \n\n Enter: '3' to find out ADJACENT ");
    // obtain user input
    FirstNumber =JOptionPane.showInputDialog("Please Enter your option: ");
    option = Integer.parseInt( FirstNumber );
    if(option==1) {
    s1 = JOptionPane.showInputDialog(
    "Please Enter OPPOSITE " );
    s2 = JOptionPane.showInputDialog(
    "Please Enter ADJECENT " );
    s3 = JOptionPane.showInputDialog(
    "Please Enter 0 " );
    else if(option==2)
    s2 = JOptionPane.showInputDialog(
    "Please Enter ADJECENT " );
    s3 = JOptionPane.showInputDialog(
    "Please Enter HYPOTENUSE " );
    s1 = JOptionPane.showInputDialog(
    "Please Enter 0 " );
    else if(option==3)
    s1 = JOptionPane.showInputDialog(
    "Please Enter OPPOSITE" );
    s3 = JOptionPane.showInputDialog(
    "Please Enter HYPOTENUSE" );
    s2 = JOptionPane.showInputDialog(
    "Please Enter 0 " ); 
    else
    JOptionPane.showMessageDialog(null,"You have entered wrong code try again please ");
    // convert user input to double values
    double number1 = Double.parseDouble( s1 );
    double number2 = Double.parseDouble( s2 );
    double number3 = Double.parseDouble( s3 );
    // call method maximum to determine largest value
    double pythagoras = maximum(option, number1, number2, number3 );
    JTextArea outputArea = new JTextArea();
    if(option==1) {
    // display numbers and maximum value
    outputArea.setText( "HYPOTENUSE is: " + pythagoras);
    if(option==2)
    outputArea.setText("OPPOSITE is: " + pythagoras);
    if(option==3)
    outputArea.setText( "ADJACENT is: " + pythagoras);
    // get the applet's GUI component display area
    Container container = getContentPane();
    // attach outputArea to Container c
    container.add( outputArea );
    } // end method init
    public double maximum(int a, double x, double y, double z )
    double b,c,d=0;
    if(a==1) {
    b=x*x;
    c=y*y;
    z=b+c;
    d=Math.sqrt(z);
    if(a==2) {
    b=z*z;
    c= y*y;
    x=b-c;
    d=Math.sqrt(x);
    if(a==3) {
    b=z*z;
    c=x*x;
    y=b-c;
    d=Math.sqrt(y);
    return d;
    }

  • Few questions about unibody

    So im getting rid of my white 2,16 this week and then getting a new unibody macbook 2 weeks from now. Im not sure which model im getting yet but most likely the 2.4ghz one. I have a few questions to ask that have kept me a bit curious.
    1.How strong is the glass over the screen? Dont want it be like the iphone
    2.Are the edges sharp?
    3.How much ram can this system hold?
    4.How big of a HDD can it take?
    5.Any moisture problems being in the cold?
    6.Any build issues I should keep in mind?
    7.How great are these new graphics cards compared to mine?
    8.Does the Macbook feel solid?
    9.Pros
    10.Cons
    I know its alot of questions but I would appreciate it if someone would help me out with those. Thanks in advance!

    1. I don't know but since the glass doesn't have the same function as the iPhone it probably is ok
    2. No unless you really push your hand against them, I barely ever notice them
    3. 6GB is the max for the Unibody Macbook, I believe the Pro's can hold 8GB
    4. As big as it gets that is still 3.5 inches but still 5600 rpms is preferred
    5. I haven't had any but I'm not in any extreme cold climate
    6. Not that I know of other than no firewire if that's what you mean
    7. They are a significant improvement, they run everything properly and much more fluid
    8. It is really solid, compared to a Macbook Pro (non-unibody) it is much more solid.
    9. Solid, Trackpad is awesome and time saving, graphics are nice, LCD screen is very bright
    10. Glossy display (if you don't like it), No Firewire port

  • App size in system information not the same as app size in finder. What's causing this or which is right?

    As you can see from the image above, finder is showing that apps are taking up nearly 30 GB, nearly 25 GB less than system information. What is causing this or which one is the actual size of the apps. It's not as if I'm runing out of space , I'm just a bit curious.

    Now Carolyn, hopefully It'll work now!

  • Master Slide issue - drag and drop alt slide over theme slide

    Keynote on my MacPro: Where before on the previous version I could in Master Slides drag and drop an alternative look over a theme slide to change that slide only and no affecting the entire presentation which was most useful, now that seems no longer an option unless there's something I can't find to do that. When viewing Master Slides now you cannot see the presentation you're working on. Previously I would set up several slides with different looks and where needed drop that look over a slide and it would override the theme slide without all slides being affected. Qny thought guys? Barry

    Although I have been answering quite a lot of questions about Drag&Drop functionality (not a widget), you are the first to mention such problems.  Personally I never had problems, only when not respecting the design of the interaction or doing something stupid. If you are the only user to have such experience (at least for what I hear in these forums and on social media), I don't see why an upgrade should be expected? Did you log the problem? Are you sure that the project is not corrupted?
    The jigsaw learning interaction is pretty simple, also limited, don't know what are your problems there?
    Are you sure that all objects used in the D&D (drag sources and drop targets) are visible in output. It is a bit confusing in CP8 because the eye icon is used both for visible in output for objects in Properties panel, and for showing the links in D&D in the D&D panel. Can you see the links? Did you avoid overlapping of objects? Did you not rename an object after creating the D&D interaction, because that will break the link from/to that object? I mentioned this in my last article: Drag&Drop tips - Captivate blog
    I am just trying to find out what is going wrong, bit curious about this rare case.

  • Photo gallery using parallax scrolling?

    hey  i have been testing out each of the slide show widgets in adobe muse.  some of them are okay. the light box for once. is a challenge,  but heres something i want to learn how to do. and its parallax scrolling with photos for a gallery. i think for what i am wanting to do i think its the best layout for me.  heres a web site that hass it i think. http://album.alexflueras.ro/galleries/people.html#a1.
    see i shows both landscape and portrait mode of photos. and thats been a challenge from the get go. so there i am thinking of using parallax scrolling . now how do i do this? is it done in photo shop and adobe muse. bec i do want to change out my i mages when needed?
    now i am a tad bit curious. it looks good on desktop, but what about mobile devies. most phone. would it work great.?
    so what are the steps for making this?
    the other key thing i noticed. is that the photos are large. and thats what i like.
    thanks

    Hi
    You can use composition on page where you can insert the images with scroll effect applied.
    Check this video , its not exact design but will help to make images scroll page :
    http://www.youtube.com/watch?v=BDgERSf2a5k
    Thanks,
    Sanjit

  • Proxy Service Deployment in OSB

    Hi
    I Have a requirement where i wnat to deploy same Proxy services with deferent versions. i dont wnat this to be reflected in my service name. so what i am doing is
    creating deferent folders like v1, v2 and deploying the same service in bothe thse folders having endpoint URI deference in v1, v2.
    i am bit curious to know if there is any impact to run time proxy instances as bothe of them are same. i just want to confirm before hand that there are no conflicts in run time behaviour of Proxy service.
    any sugestions and answeres well appriciated.
    thanks in advance
    mr

    Hi mr,
    I don't think you'll be able to do this in the same OSB instance, although I may be mistaken. If both proxy services have the same name, then OSB will try to export both of them with the same name and there won't be any way to distinguish between them. Is the interface the same between the versions? What do you expect the behavior to be, i.e., which service will get called when Tuxedo calls the service?
    Regards,
    Todd Little
    Oracle Tuxedo Chief Architect

  • 2 Questions about final cut pro 5

    My first question is quite simple, I know that previously final cut pro could only use up to 2.5GBs of memory, now I'm just a bit curious if it can use more since leopard is a 64-bit OS. Right now I'm using Final Cut Studio 1. I'm just asking this question since I intend to get an additional 4GB of ram (Right now I only have 2GB) I'm going to get Muskin's MacPro memory. I generally run my system down to about 200MB of free memory and sometimes down to 10MB when I'm using photoshop in conjunction to FCP. What does everyone think about getting an additional 4GB?
    Thanks for the answers.
    Okay, to not make two posts I'm give me final question/Problem. Ever since I've upgraded to Leapord I noticed that the playback quality in the canvas and viewer is poor. There is bad gamma. What I mean by that is that i'm getting extremes in color, I have areas that look normal followed by areas of over saturated color. It's more on the over saturated side though. Besides that the play back quality is poor, even though my sequence settings are at "Best" for video processing. I also seem to get jagged lines on things like railings, people's shoulders, and on other edges. My picture quality is grainy, however there are no artifacts. Even on the FX transistions I get the jagged lines on edges of oh say page peels and what not.
    Now when using DVD player or watching my MPEG2's on DVD Studio, they play poorly too. The image is clear however I get the horizontal lines when there is motion. Now when I put one of my DVD's in my DVD player (not computer) the problem goes away and everything looks fine. This is less of a problem (the horizontal lines), but I don't understand the poor playback quality.
    The video looks fine on my external NTSC video monitor.
    I have the GeForce 7300 graphics card, with the 24" samsung 245BW. I upgraded to 10.5 on a clean install.
    Thanks a lot everyone!!

    Thanks for my memory question!
    However I'm still getting poor looking footage. Even when I open up my source clips and play them they look poor in quality. I'm getting the horizontal lines on everything that moves and corners are not sharp, they look distorted and jagged. I never had this problem before I'm not sure whats the cause or the solution. Even the footage from Final Cut Studio's tutorial looks bad (grainy, strange contrast, jagged corners and lots of horizontal lines). However the edges on my footage look a little more jagged. I think i mentioned it already but the FX transitions that are page peels, cube spins...etc give me jagged edges too.
    I removed flip4mac and all other non-apple codecs too.
    ugh i hate computers sometimes
    -Tom

  • Named GOOP Objects

    I've tried to do some GOOP in LV 6.02 and I wanted to use Named objects/instances.
    It is fairly easy to set the name of an object, but then if I want to read the name of the
    object later on, how do I do that?
    The private functions "Get Data" and "Get Data to Modify" only return the Data from the Object repository, not the name.
    Of course I can in addition call the Object repository using the input method "Get Statistics", but is this the only way to get hold of the name?
    I don't want the statistics, I only want the Data and the name in one go.
    And I also don't want to store the name as part of the Data as what could be another solution.
    GOOP 1.0

    Hello,
    This is a very late reply so it is probably not relevant for you but here we go any way.
    The GetObjectStatus returns the object name from an object reference. But the object data has to be read out separately so it does not fulfill your requirement of data and name in one call. To do better you have to make your own version of GetAtributes to make it return the obj name.
    I am a bit curious about how you use the named objects sine you have this need. The way I have used named objects I only use the name to get the ref and after that I don't care about the name any more.
    Jan

  • How come my notes on outlook for office Mac not syncing to iPad 2

    Hi folk,
    I am a bit curious as to why when I created notes within outlook 2011 ( office Mac 2011) I don't see them on my iPad device?
    On my iPad/cloud services/ notes sync is on
    Also under settings/ notes "iCloud" is checked
    What am I missing here ?
    Thanks in advance...
    Rich

    First, keep in mind that Notes in Outlook is not the same as the Notes in Mountain Lion (in terms of applications).
    Notes in Outlook sync with Exchange.  On the iMac, you can sync the Notes app with Exchange, so you will see your Outlook notes in the Mac Notes App (in addition to any iCloud notes you have).  To set that up, go to Settings, Mail Contacts Calendars, and select your Exchange account.  Check the box next to Notes.  Now if you go into the Mac Notes app, you will see you have two Accounts, an iCloud account and your Exchange account, each showing the respective notes.
    Now, on the iPad, things are a bit different at present.  Here, you can only sync your iCloud notes.  Under iOS 5, it is not possible to sync notes from Exchange anymore.  Hopefully this will be addressed in iOS 6 coming out this Fall.
    One workaround I've used for the omission of syncing Notes from Exchange on the iPad is to instead turn them into Tasks in Outlook.  Under ML and Exchange, Reminders syncs with Tasks in Outlook, so you will be able to see those Tasks in the Reminders App on both your iMac/ML and your iPad.

  • How can I include merged projects in the printed documentation?

    I have a master project with several merged projects. This works splendid with online documentation, but when I am asked to provide a printed version, it seems I have to create separate documents for each merged project.
    Is there any setting or fix that enables print also of merged projects and topics when I create printed documentation?
    Pretty please with sugar on top :-)

    Hm - there is a contract with the customer, saying that he wants documentation both as word and pdf, and as we now aim at only writing online documentation, these tasks create extra work, as we are delivering updates each month
    But yes - two beasts, where only chm is actually needed we think.
    -Tone
    Date: Tue, 3 May 2011 06:53:04 -0600
    From: [email protected]
    To: [email protected]
    Subject: How can I include merged projects in the printed documentation?
    Hi there
    I'm a bit curious as to the reasoning behind your "persuation process for using chm-files only".
    CHM files and printed documentation are two entirely different beasts.
    Cheers... Rick
    | http://www.robowizard.com/pc.gif | Helpful and Handy Links
    http://www.Adobe.com/cfusion/mmform/index.cfm?name=wishform&product=38
    http://www.gooberguides.com/ProductPages/RoboHelp/RoboHelp82Day.htm
    http://www.ShowMeSolutions.biz
    http://sorcererstone.wordpress.com/
    http://www.gooberguides.com |
    >

  • AES Algorithm error when trying to encrypt using stored Java class.

    Dear All,
    We have a specific reuirement where in we cannot use DBMS_CRYPTO package to encrypt/decrypt data using AES Algorithm
    So I am trying to use a stored Java class and I am getting "AES algorithm not available".
    I am using Oracle 10gR2 standard edition.
    Below is my code
    1. Stored Java class
    2. Stored function to access the above Java class.
    3. Test anonymus PL/SQL to test above code.
    Please help me finding the problem why I am getting "AES algorithm not available" error when I call stored Java class in Oracle.?
    **** If I use "DES" algorithm, it works. Also the Java code works well if I execute it as normal Java class from Eclipse.
    I verified the java.security file in jre/lib/security and I see that there is provider entry for SunJCE.
    The jre version in Oracle is 1.4.2.
    I appreciate your help.
    Thanks,
    Priyanka
    Step1: Stored java class to encrypt and decrypt data
    CREATE OR REPLACE AND RESOLVE JAVA SOURCE NAMED "EncryptUtil" AS
    import java.security.Key;
    import javax.crypto.Cipher;
    import javax.crypto.KeyGenerator;
    import javax.crypto.SecretKey;
    import javax.crypto.spec.SecretKeySpec;
    public class EncryptUtil
         public static String encrypt(String inStr)
         String outStr = "Test data 123";
    try
    KeyGenerator kgen = KeyGenerator.getInstance("AES");
    kgen.init(128);
    SecretKey skey = kgen.generateKey();
    byte[] raw = skey.getEncoded();
    SecretKeySpec skeySpec = new SecretKeySpec(raw, "AES");
    Cipher cipher = Cipher.getInstance("AES");
    cipher.init(Cipher.ENCRYPT_MODE, skeySpec);
    byte[] encrypted =
    cipher.doFinal(inStr.getBytes());
    outStr =new String(encrypted);
    catch (Exception e)
         outStr = outStr + "exception thrown::" + e.getMessage();
    e.printStackTrace();
    return outStr;
    Step2: Stored function to access above stored java class.
    CREATE OR REPLACE FUNCTION SF_ENCRYPTUTIL(
    pKey1 VARCHAR2
    ) RETURN VARCHAR2 AS
    LANGUAGE JAVA NAME 'EncryptUtil.encrypt(java.lang.String ) return java.lang.String';
    Step3: Test encryption and descryption
    DECLARE
    outstr VARCHAR2(2000);
    BEGIN
    DBMS_OUTPUT.PUT_LINE('outstr-->' || SF_ENCRYPTUTIL('12345'));
    END;
    Below code example using DBMS_CRYPTO. This works, but we do not want to use this.
    declare
    l_in_val varchar2(2000) := 'Test data 123';
    l_mod number := dbms_crypto.ENCRYPT_AES128
    + dbms_crypto.CHAIN_CBC
    + dbms_crypto.PAD_PKCS5;
    l_enc raw (2000);
    l_enc_key raw (2000);
    l_dec raw (2000);
    begin
    l_enc := dbms_crypto.encrypt
    UTL_I18N.STRING_TO_RAW (l_in_val, 'AL32UTF8'),
    l_mod,
    HEXTORAW('156ae12300ccfbeb48e43aa016febb36'),
    HEXTORAW('001122230405060708090a0b0c0d0e0f')
    dbms_output.put_line ('Encrypted='||l_enc);
    end;
    Edited by: user5092433 on Sep 10, 2009 12:26 AM

    I guess I'd be a bit curious about why you can't use a DBMS_CRYPTO solution that provides identical output. It seems odd to want to have a procedure running inside Oracle and then dictate that it has to be Java and not PL/SQL...
    I verified the java.security file in jre/lib/security and I see that there is provider entry for SunJCE.
    The jre version in Oracle is 1.4.2.Which java.security file are you talking about? The JVM that is inside the Oracle database does not and can not use configuration files that are outside the database. I suspect when you talk about files and paths that you're looking at a JVM outside the database, which is not the JVM that your Java stored procedure would be using.
    Looking at the error, my assumption is that some JAR file needs to be loaded into the internal JVM in order for the AES algorithm to be available. But I'm unfortunately not familiar enough with these classes to say what that would be.
    Justin

  • Help with creating a sql file that will capture any database table changes.

    We are in the process of creating DROP/Create tables, and using exp/imp data into the tables (the data is in flat files).
    Our client is bit curious to work with. They do the alterations to their database (change the layout, change the datatype, drops tables) without our knowing. This has created a hell lot of issues with us.
    Is there a way that we can create a sql script which can capture any table changes on the database, so that when the client trys to execute imp batch file, the sql file should first check to see if any changes are made. If made, then it should stop execution and give an error message.
    Any help/suggestions would be highly appreciable.
    Thanks,

    Just to clarify...
    1. DDL commands are like CREATE, DROP, ALTER. (These are different than DML commands - INSERT, UPDATE, DELETE).
    2. The DDL trigger is created at the database level, not on each table. You only need one DDL trigger.
    3. You can choose the DDL commands for which you want the trigger to fire (probably, you'll want CREATE, DROP, ALTER, at a minimum).
    4. The DDL trigger only fires when one of these DDL commands is run.
    Whether you have 50 tables or 50,000 tables is not significant to performance in this context.
    What's signficant is how often you'll be executing the DDL commands on which the trigger is set to fire and whether the DDL commands execute in acceptable time with the trigger in place.

Maybe you are looking for

  • ADOBE ACROBAT 9 PRO INSTALLS BUT DOES NOT COMPLETE

    Hi: I'm a new user of Adobe Acrobat 9 pro. I had a trial version but uninstalled it with the superb help of Michael Kazlow and bought a full version. It installed OK (after asking my serial number) but when I started to use it, I was asked for my ser

  • Access programmatically view accessor

    hello,haw can i access programmatically view accessor of LOV in backing bean.

  • How I can convert word file to html file

    Hi all, I need to convert word file to html File.. is there any 3rd party API ? please suggest me very soon......... or else suggest me easiest way to achive this problem...

  • Problem with iPod Updater 2006-08-28

    Hi, It seems that there is a bug in this version of the iPod Updater. I didn't know where to post so I came here as this problem may be the related to the fact that I use it on my Nano 1Go. When I restored my iPod, the iPod Updater created a void Sys

  • Under Delivery Tolerance and Scrap

    Dear Experts, I have a business that would like the under deliver tolerance on their production orders to include scrap quantities.  The business uses production orders in more of a make to stock type of environment.  The example is below.  Any idea