Need a good test for see Sql Failover "in action"

I have a two node cluster in a testlab. I'm thinking of INSERTing a million rows in a table, and while the process is running, failover to the other node. (Obviously I'm hoping for minimal loss). Can think of a better way to show failover " in
action"?
TIA,
edm2

Sorry, to reiterate some of the above but some of the points and the wording will be confusing to someone new to failover clustering.
From the standpoint of an in-flight transaction you are correct. A failover cluster is no better than a standalone instance. However, if your standalone instance goes down then you are down, in a failover cluster your SQL instance will be restarted or moved
to another node of the cluster (failover is not an online operation).
Key points:
It doesn't matter if you have one node or eight nodes, an individual SQL failover cluster instance will only run on a single node of the cluster at any given time.
A failover of a SQL Failover Cluster Instance is not an online operation. It is functionally equivalent to restarting SQL.
In-flight transactions are rolled back during failover as SQL comes back online and your database goes through recovery.
If you have some problem impacting that instance of SQL then the Windows Cluster will either restart SQL or failover depending on configuration of the cluster.
Paul Burpo |
Twitter | LinkedIn

Similar Messages

  • Hi all ,i need a good documentation for a beginner in WORK FLOW ?

    hi all ,
    i need a good documentation for a beginner in WORK FLOW ?
    please,try to send the attached documents as much as u can apart from giving the weblinks ?
    hope you will send it soon ....
    thanks & regards
    vishnuvardhan k.v.

    Hi
    Developing a simple application using steps "User Decision" and "Mail"
    Basic terminology used in the workflow:
    The workflow definition is the set of rules that determine the path that the process takes. For example, how a purchase requisition is processed, from the initial request to the creation of the purchase order
    A Workflow Instance, which is often simply referred to as the workflow, is a single workflow run. For example, the processing of a single purchase requisition for computers.
    The Tasks are the steps in the process, which have to be performed either by people or automatically by the software. For example, to check for the availability of the spare computers in the company.
    A Work item is the task instance that is performed as a single workflow step. For example, check that there are no spare computers available in the company.
    Agents are the people who process the tasks (via the work items). For example, requisitioner and a member of the purchasing department.
    Container is the place where all the data used in the workflow is collected.
    Binding is the set of rules that define which data is passed to which part of the process.
    Building a simple workflow application
    The central tool for creating, displaying and processing a workflow is the workflow builder (Transaction SWDD). Within the workflow builder you can create all components of a workflow, including all the containers you need for getting the data from one step to another.
    Generally, most of the workflows are started by an event (for example, when a material is created or when a new purchase requisition arrives). You define which data from this event needs to be passed to the workflow via binding.
    However you can also start any workflow directly. Let us create a simple workflow and start the workflow directly, using the testing tools.
    Call transaction SWDD. When the workflow builder is called for the first time, a newly created initial workflow definition appears or else last created workflow appears. In such cases you can opt to create a new workflow by pressing “Create New Workflow”(ctrl + shft + F5). The following screen appears.
    The initial workflow screen has the following parts:
    a. The start of the workflow definition, indicated by .
    b. The end of the workflow definition, indicated by .
    c. The area in which you insert the new workflow definition is indicated by .
    Now select the undefined step and select Create step or double click the undefined step. Now among the different steps chose the User Decision by double clicking on it.
    Developing a simple application using steps "User Decision" and "Mail"
    Previous
    Now enter the title for the user decision “ Please make a decision”. Also enter the decision texts as Approve and Reject. On pressing enter, the outcome values default to the Decision texts but you can specify your own names, if desired. Now we need to select the agent. Agent is the person to whom the work item needs to be sent.. Since this is just a beginning, we would hardcode the user name. Select the User from the drop down list and enter the user name to whom the work item needs to be sent. In general, this type of agent assignment is not done. Agents are generally assigned using the expression, agent assignment rule or organization object (job, position etc.).
    Now select Transfer and to graphic button. Following screen appears:
    Now we need to include a mail step to be sent to the requestor. Now select the line “Approve” and do a right click. Different options on shown on the context menu. Select Create.
    Now select the step “Send Mail” from the list.
    Developing a simple application using steps "User Decision" and "Mail"
    ...Previous
    Now enter the subject and the body of the message for the mail to be sent.
    Do not change the recipients. Our mail is intended for the persons who triggered this workflow. &_WF_INITIATOR& contains the value who executed the workflow. Since this is a test object, we are using &_WF_INITIATOR&. But we wouldn’t be using this variable in real time scenarios. We would discuss about this in the coming documents.
    Now select Transfer and to graphic button.
    A popup appears requesting for the abbreviation and the name for this task. Enter the same and press enter.
    Now enter the package as local object and press enter.
    Follow the steps 5 through 9 for the step “Reject”. The following screen appears:
    Press SAVE to save the workflow application. You need to enter an abbreviation and name for your workflow as shown below. You can change any of these at any later point. After saving, a number is assigned to your workflow starting with WS, as shown below.
    Developing a simple application using steps "User Decision" and "Mail"
    ...Previous
    To execute the workflow, activate it by choosing the activate button.
    Test the workflow by choosing Test. The following screen appears.
    Now choose Execute to start the workflow.
    Now the recipient would receive a work item in his SAP® inbox (Transaction SBWP).
    Now execute the work item by pressing “Execute”. The following screen appears:
    Choose one among Approve or Reject as part of the user decision. He can select the third option to retain the work item in his inbox and make the decision later. Now suppose that the recipient has chosen one of the first options. Now a mail would be sent to the requestor with the status of his request.
    Creating a Container element
    This document details about creation of a container element in workflow and using it in the step "Mail".
    Pre-requisites:
    It is assumed that the reader of this Tutorial is aware of creating a workflow definition with the step “Mail”. If not, please go through the document on creating the same available, by clicking here.
    Steps:
    1. Create a workflow definition using the transaction SWDD.
    2. Let’s create a container element for Carrier id. Click on the “Workflow Container” on the left side of the screen (as shown in the screenshot below):
    3. Now double-click on “Double-Click to Create”
    4. Enter the details pertaining to CARRID here.
    5. Click on tab “Properties” and select “Import”.
    6. Click on “Confirm (Enter)”.
    7. Now the element created could be seen on the left side, below the “Workflow Container”.
    Creating a Container element
    Previous
    1. Create a “Mail” step by double-clicking on “Undefined” step in the workflow.
    2. Enter the recipient details in the “Recipients” box.
    3. In the subject line, enter “Carrid value entered is:” and click on “Insert Expression”.
    4. Select the element “Carrid” from the list.
    5. Similarly enter the content in the “Body” area.
    6. Save and activate the application.
    Testing the Workflow application:
    7. Test the workflow by clicking F8.
    8. Enter the value of the Carrid as shown above and press execute.
    9. A mail would be sent to the recipient mentioned earlier with the carrid value entered.
    Condition Step
    Agenda:
    This document details about the steps “Condition”.
    Pre-requisites: It is assumed that the reader of this document has a preliminary understanding of workflow and has worked with the container elements earlier. If not, please go through the first two Tutorials of workflow available in this site. (More details)
    Procedure:
    1. Create a new workflow definition.
    2. Create a container element, CARRID (as demonstrated in tutorial 2).
    3. Now click on undefined step and create the step “Condition”.
    4. Enter the step name of your choice.
    5. We would have the following condition here:
    If carrid = ‘AA’.
    Do this.
    Else.
    Do this.
    Click on “Click here to create a new condition”. Following screen appears.
    Double click on “Carrid”. Next click on “=” and enter the value “AA” in the constant field and press ENTER.
    Enter the outcome names of your choice as shown above.
    Click on “Transfer and go to graphic”.
    As shown above, there are two branches here. One navigates to true, if CARRID = ‘AA’ else the control takes the branch “False”.
    Test the above scenario by inserting mail steps in the above 2 branches and by passing different CARRID values.
    Condition Step
    Agenda:
    This document details about the steps “Multiple Condition”.
    Pre-requisites: It is assumed that the reader of this document has a preliminary understanding of workflow and has worked with the container elements earlier. If not, please go through the first two Tutorials of workflow available in this site. (More details)
    Procedure:
    1. Create a new workflow definition.
    2. Create a container element, CARRID (as demonstrated in tutorial 2).
    3. Now click on undefined step and create the step “Multiple Condition”.
    4. Enter the step name of your choice.
    5. We would have the following condition here:
    If carrid = ‘AA’.
    Do this.
    Elseif carrid = ‘AH’
    DO this.
    Elseif carrid = ‘SQ’
    Do this.
    Else.
    Do this.
    Select the “CARRID” using the F4 help for the comparison basis field.
    Enter the values of the carrid under the Comparison values with the corresponding outcome name (of your choice)
    Double click on “Carrid”. Next click on “=” and enter the value “AA” in the constant field and press ENTER.
    Click on “Transfer and go to graphic”.
    As observed above, there are different branches for each value of CARRID mentioned above.
    Test the above scenario by inserting mail steps in all the branches and by passing different CARRID values.
    Using "Container Operation" step
    Agenda: Usage of step “Container Operation”.
    Pre-requisites: It is assumed that the reader of this tutorial has worked in the concepts that are dealt in earlier tutorials. (click here for more details)
    Scenario: In this tutorial, we would deal about how to work with the step “Container Operation” with an example of calculating the available seats by subtracting occupied seats from the maximum seats at the workflow level.
    Procedure:
    1. Create a new workflow definition using the transaction SWDD.
    2. Create two container elements MaxSeats, Occ_Seats with the “import” property set. You can use the reference fields sflight-seatsmax, sflight-seatsocc for this.
    3. Create another container element AvailableSeats without setting either import or export property as this is calculated within the workflow and used within the workflow. You might use any of the above reference fields as data types.
    4. Define a new step “Container Operation” in the workflow definition by double-clicking on the “Undefined step”.
    5. In this step, we would calculate the available seats from the max seats and seats occupied.
    I would recommend entering all the container elements from the F4 help instead of typing them manually.
    6. Return to the main screen.
    7. Create a mail step after this to send the available seats information.
    8. Test the above functionality by passing some values to the maximum and the seats occupied.
    9. Result would be as follows:
    Triggering Events Programmatically
    Purpose: This document details the procedure in triggering the business object events programmatically.
    Pre-requisites: It is assumed that the reader of this document is aware of the business object concepts and good in ABAP.
    Procedure:
    In this document, we would take an example of the business object BUS1001006 (Material) and the event CREATED. In general, this event is triggered whenever a material is created using a standard procedure like MM01 or any others. Now we would trigger this event from our own programs.
    Following are the screenshots of the business object BUS1001006 and the event CREATED. Go to transaction SWO1 for more information of the business object.
    Double-clicking on the key field parameter gives you technical information of the field.
    In order to trigger an event programmatically, we would use the function module SWE_EVENT_CREATE.
    Following is the sample code to trigger the events programmatically:
    REPORT ZDEMO_TRIGGER_EVENT.
    DATA: KEY LIKE SWEINSTCOU-OBJKEY.
    KEY = '1163'. “ Material Number (hard-coded)
    CALL FUNCTION 'SWE_EVENT_CREATE'
    EXPORTING
    objtype = 'BUS1001006'
    objkey = KEY
    event = 'CREATED'
    CREATOR = ' '
    TAKE_WORKITEM_REQUESTER = ' '
    START_WITH_DELAY = ' '
    START_RECFB_SYNCHRON = ' '
    NO_COMMIT_FOR_QUEUE = ' '
    DEBUG_FLAG = ' '
    NO_LOGGING = ' '
    IDENT =
    IMPORTING
    EVENT_ID =
    TABLES
    EVENT_CONTAINER =
    EXCEPTIONS
    OBJTYPE_NOT_FOUND = 1
    OTHERS = 2
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ELSE.
    WRITE 'Event Triggered'.
    ENDIF.
    COMMIT WORK.
    In order to test whether the event is getting triggered or not, we can make use of Event Trace. Switch on the event trace using the transaction SWELS.
    Press ‘Switch On”.
    Now execute the program developed earlier. Now switch-off the event trace using the same transaction SWELS.
    Now go to transaction SWEL. Here you can list out the events triggered in the particular period of time. Here is the event-trace list:
    Deadline Monitoring in SAP Workflow
    A major advantage of workflow is the ability to monitor the workflow steps according to a predefined schedule. Following are different deadlines that can be monitored against each workflow step:
    • Requested Start
    • Latest Start
    • Requested End
    • Latest End
    In this example, we will define a deadline to the User Decision example created earlier (click here). Following is the screenshot of the application developed using the User Decision example:
    We would extend this example to the deadline monitoring.
    In the User Decision step, click on the “latest end” tab.
    By default, No deadline monitoring is active (as seen in the above screenshot).
    Choose the “Work Item Creation” from the list box.
    After selecting “Work Item Creation”, chose an offset of 5 minutes. This means that the work item must be executed within 5 minutes of the creation, if not this would trigger.
    Deadline Monitoring in SAP Workflow
    Enter recipient details to whom the message to be escalated, if the work item is not executed with in 5 minutes after work item creation.
    Save and activate the workflow definition.
    Testing the workflow application:
    • Execute your workflow.
    • Check for the work item in the SAP Inbox. This time do NOT execute the work item.
    • Wait for the deadline to be triggered. After that, a deadline message is delivered to the recipient mentioned in the “Latest End” tab. See the screenshot below.
    Don’t worry if the deadline message doesn’t appear immediately after 5 minutes. This depends on various factors including how the deadline monitoring program is scheduled and also on the availability of the background processors.
    Use SWWA to check how the deadline monitoring program is scheduled in program.
    For example, assume that our work item has been created at 09:10 hrs and the deadline message is expected to trigger at 09:15 hrs. From the above screenshot, it is understood that the background program is scheduled to execute for every 3 minutes. Assume that the last run of the program is at 09:14hrs and the next run is expected at 09:17hrs. So even our deadline expires at 09:15, the deadline message would appear only at 09:17hrs after execution of the background program.
    Some more points
    In our above example, we have used the deadline on the “Work Item” creation time. i.e., 5 minutes after creation time, the deadline message would be sent. Now we would check the other option “Expression”. Here we can mention the date and time, when the deadline message should appear irrespective of the work item creation date/time.
    As seen in the above screenshot, we can provide the target date and time by which the task should be finished. Container elements could be used in this case. Please refer to our example on creation of container elements (click here).
    Personal Substitute in Workflow
    Requirement: Need to have at least one substitute who can act upon work items in your absence.
    Important: The appointed substitute would be able to see all your work items. A substitute cannot be assigned for only particular area of organization or any other item. So need to ensure that the substitute have the necessary authorizations to act upon the work items.
    Procedure:
    1. Go to SAP Business Work Place (TCode: SBWP)
    2. Now from the menu bar, select Settings à Workflow settings à Maintain Substitute
    3. Highlight/Select the name on the window, in this case SAPDEV02 and click on “Create Substitute”.
    4. List of users available in the system are displayed.
    5. Select the required substitute user name. Following screen appears.
    Validity field describes about the period in which the setting would be active. Note that the dates on the screen would range from the current date to 31st Dec 9999.
    Regarding the checkbox “Substitution active”, it is advised to leave this checkbox unchecked for system performance reasons. A check in this box indicates that the substitution is “permanent” and if left unchecked it is treated as “as-needed”. A permanent substitute will automatically receive the primary users work items in their own box. In the case of “as-needed”, substitute must manually adopt the work items from the primary user’s inbox.
    6. Save the entries
    7. Click Enter to leave the screen.
    Adopting a Substitute in Workflow
    If you have been designated as an “as-needed” substitute, you must manually adopt the substitution. If you are designated as a “permanent” substitute, the work items would automatically appear in the inbox.
    Before adopting a substitution, there are 19 work items in the inbox. See the screenshot below:
    To adopt a substitution, select Settings à Workflow settings à adopt substitution.
    Select the corresponding User-id (if you have been assigned as a substitute for multiple people, then this option would allow you to select the user name of whom you would to check the work items)
    The corresponding user’s work items would appear in our inbox now.
    You can end the substitution, by selecting settings à Workflow settings à End substitution.
    Note: Substitutes can only adopt work items that are directly routed to the person for whom they are a substitute. If you are a substitute for a user (SAPDEV02) who has been made a substitute for another user (SAPDEV01), you will only see work items for user SAPDEV02 and not of the user SAPDEV01.
    Notification of Work Items via e-Mail
    SAP provides us with a facility of notifying the user via the email address of your choice when there are any pending work items in the SAP Inbox..
    1. Go to Transaction SO13.
    2. Click on Automatic Forwarding tab.
    3. Click on Create icon .
    4. Enter the details in the above screen.
    5. Click ENTER to complete the entries.
    6. Now the notification would be received at the provided email address if there are any pending work items in the inbox.
    Filtering the Work Items in the SAP Inbox using BADI
    This document details about the procedure in filtering some of the work items from the SAP inbox using a BADi.
    Following is the screenshot of the SAP inbox, before implementing BADi:
    The BADi that is used in filtering the work items is WF_BWP_SELECT_FILTER. To implement the BADi, go to transaction SE18. From the menu, select Implementation à Create. (See the screenshot below)
    Enter the implementation name and press ENTER
    Enter any meaningful short text for the implementation and click on the tab “Interface”
    The implementing class, ZCL_IM_BWP_SELECT_FILTER, is automatically proposed. Double click on the implementing class name.
    You are now navigated to the class builder. Now double-click on the method name shown on the screen (see the snapshot below)
    Now let us filter out the work items belonging to the task TS2000066. See the code below:
    Activate the method and also the implementation. In the state of active, you wouldn’t be able to make any changes. To make any changes, we need to deactivate it and then make the changes.
    Now check the inbox and would notice that the work items related to that task are no more appearing.
    To notice the differences, try activating and deactivating the BADi implementation.
    Workflow tutorials with step-by-step and with screenshots are available at http://www.****************/Tutorials/Workflow/Workflow.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/42/c14a9b55103116e10000000a1553f7/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/c5/e4a930453d11d189430000e829fbbd/frameset.htm
    http://www.sapgenie.com/workflow/
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/3d/6a9b3c874da309e10000000a114027/frameset.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/4a/dac507002f11d295340000e82dec10/frameset.htm
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    http://web.mit.edu/sapr3/dev/newdevstand.html
    http://www.sap-basis-abap.com/wf/sap-business-workflow.htm
    https://forums.sdn.sap.com/click.jspa?searchID=791580&messageID=2857887
    https://forums.sdn.sap.com/click.jspa?searchID=791580&messageID=2855919
    https://forums.sdn.sap.com/click.jspa?searchID=791580&messageID=2735228
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMSTART/BCBMTWFMSTART.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMDEMO/BCBMTWFMDEMO.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCBMTWFMPM/BCBMTWFMPM.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    debug a workflow.
    This has a step by step procedure :
    http://fuller.mit.edu/workflow/debugging.pdf
    www.erpgenie.com/sap/workflow/debugging.htm
    http://www.erpgenie.com/workflow/debugging.htm?2b5de440

  • Good source for learning - SQL Stored Proceedures using Dreamweaver

    I am looking for a good source for learning how to integrate
    Stored
    Proceedures using Dreamweaver?
    Is there a book or something online?
    Thanks

    Hey Lee,
    You find yourself in that position, I find myself in that
    position, every
    damn developer/programer in the world find themselves in that
    position. It
    may be on different levels, but everyones in the same boat.
    Here is my suggestion. Take the existing knowledge you have,
    pick a
    technology that is a bit more futureproof (if the one you
    have is getting
    outdated) and one that isn't too far removed from the one you
    know and put
    it all into that one area.
    Databases are really important if you want to be a decent web
    developer. If
    you're serious and want to be good then devote time to a
    particular database
    and get to know it well. I would suggest SQL Server. You
    don't have to be
    DBA standard but get as much knowledge on it as you can.
    Never underestimate
    your required knowledge of databases.
    Set yourself goals. Say to yourself "In 6 months I want to be
    a proficient
    developer in this language" and go for it. Don't get
    side-tracked into
    something else just keep focused on one area and get good at
    it. Yes, that
    language will become outdated in time but you will be all the
    more ready to
    take on the next because of your past experiences.
    I try to look at it like this; It is better to a master of
    one technology
    and know enough to get by in others than a Jack of all
    technologies but a
    master of none.
    Pat.
    "lee" <[email protected]> wrote in message
    news:[email protected]...
    > Thanks Pat...I only looked at it briefly but it looks
    like what I needed.
    >
    > The biggest problem that I have is that I don't have
    enough time to look
    > into some of this stuff...
    >
    > Over the years, I've gotten to a certain level of
    proficiency in certain
    > things, I can do quite a bit but there always seems to
    be yet another
    > technology to master as the Old Ways go away.
    >
    > To be honest, I really just want to be an artist with
    some programming
    > skills but the nature of this position demands that I
    "learn It all."
    >
    > Meanwhile, all those other skills have to be put
    asside...I really should
    > master flash...I really should work on my illustration
    skills...I really
    > should master CSS. I really should master...I don't
    know, name it. And if
    > I really wanted to abandon my ...LIFE...I could,
    perhaps, figure it all
    > out.
    >
    > What is so tiring is that my skill set is stretched SO
    f-ing thin that I
    > can never, possibly catch up. The only cure is time but
    often even that
    > goes against me.
    >
    > Anyways, thanks for the link. I'll probably be back
    later with questions.
    >
    > Thanks Pat.
    >
    > If anyone else finds a good source, let me know.
    >
    >

  • I need a good monitor for the retina macbook pro

    What is a good monitor for the retina macbook pro. Im looking for 27 inch that is around the price of the thunderbolt display. The only thing putting me off the thunderbolt display is that i wouldnt be able to watch stuff on my xbox on it due to no hdmi.
    Im going to university so it would be useful to be able to watch tv and play games on the monitor too but Im more interested in a monitor that will work great on the rmbp and on photoshop. I need to be able to calibrate it perfectly.

    If I am understanding you correctly you should look at the 27 inch Samsung HD LED. Best Buy has it on sale for $340

  • Help! Need a good laptop for school and editing. Budget is around $800 (Canadian).

    I'm looking for a laptop for around $800 Canadian, I'm starting a science and technology program in high school so I will need decent graphics performance for editing and 3D modelling. My budget is a bit flexible but only by around $100 for a significantly better product. I've had my eye on the Lenovo y40-80 but some people say it's great and other call it a dissapointment. I was thinking about either ASUS, Lenovo, or MSI.  Any suggestions would be helpful, Thanks.

    I own an ASUS and a MSI laptop.  A little advice for you.... Visit the store and see if you can play a YouTube video.one laptop display appears dimmer and not so brightthe other laptop does a very poor job of rendering colors (especially with skin)Can't say this is a problem with today's newer machines.  But it was something that has troubled me.

  • Where can I download FF 4? I need it to test for the company I work for. Thanks!

    I need version 4 of Firefox to be able to test for the software company I work for. We support FF3-6. My version 4 was updated to version 5 and I need it back to version 4. I'm not finding anywhere online to download 4.

    For those that really need an earlier version of Firefox to '''test with''', find your system and the Firefox version you want in releases, download and start the install.
    * ftp://ftp.mozilla.org/pub/firefox/releases/
    :or with the latest of version 3
    * http://www.mozilla.com/firefox/all-older.html
    : Note Mac OS X 10.4 user, and Mac OS X 10.5 users without Intel cannot upgrade to Firefox 4 or 5.
    When reinstalling Firefox from a download, Firefox must be down once the installation starts. When the installation finishes, don't let the install start firefox for you. Instead end the install and start your '''test install''' of Firefox in your normal manner, thus preventing creating a new profile which does not have your bookmarks cookies, etc (but your old profile would still be around and would).
    <br><small>Please mark "Solved" one answer that will best help others with a similar problem -- hope this was it.</small>

  • Need a good program to see my onboard camera in my truck ,it use the min sd cards  thanks anyone

    i have a on board camera in my car  and need a good app or programe to view and delet footage on my sd card minney
    thans all

    Thank for your help, but it didn´t work.
    But I've got a way using Imaq, it is an attchment. The difference from the others is the Imaq USB PropertyPage.vi. Even if I cancel the dialog box it works, but it don't work if I don't use it. As I don´t want the dialog box opens I am figuring out how to eliminate the Imaq USB PropertyPage.vi, what kind of configuration i have to do...
    Thanks again,
    Celia
    Attachments:
    TesteInternet.vi ‏41 KB

  • Need the good documents for AlV

    Hi,
    I am new to Alvs. Plz send me good documents for same. In this AlV pgm how to activate filter button?
    type-pools: slis.
    DATA: it_spfli TYPE TABLE OF spfli ,
          it_cat TYPE SLIS_T_FIELDCAT_ALV,
          wa_cat TYPE slis_fieldcat_alv,
          checkbox(1)    type c.
    data: itab1 type  SLIS_T_SORTINFO_ALV ,
          WA TYPE SLIS_SORTINFO_ALV.
    *data: itab2 type  SLIS_T_SORTINFO_ALV ,
         WA1 TYPE SLIS_SORTINFO_ALV.
          START-OF-SELECTION.
    SELECT * FROM spfli  INTO TABLE it_spfli.
    IF it_cat is initial.
      clear wa_cat.
    wa_cat-col_pos   = 1.
    wa_cat-fieldname = 'CARRID'.
    wa_cat-datatype  = 'CHAR'.
    wa_cat-inttype   = 'C'.
    wa_cat-intlen    = 3.
    wa_cat-seltext_l   = 'Airline Code'.
    append wa_cat to it_cat.
    clear wa_cat.
    wa_cat-col_pos   = 2.
    wa_cat-fieldname = 'CONNID'.
    wa_cat-datatype  = 'NUMC'.
    wa_cat-inttype   = 'N'.
    wa_cat-intlen    = 4.
    wa_cat-seltext_l   = 'Flight conn no'.
    append wa_cat to it_cat.
    WA-FIELDNAME = 'CARRID'.
    WA-UP = 'X'.
    APPEND WA TO ITAB1.
    *ENDIF.
    CLEAR WA.
    CLEAR ITAB1.
    WA-FIELDNAME = 'CONNID'.
    WA-UP = 'X'.
    APPEND WA TO ITAB1.
    ENDIF.
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
      EXPORTING
       I_INTERFACE_CHECK              = ' '
       I_BYPASSING_BUFFER             =
       I_BUFFER_ACTIVE                = ' '
       I_CALLBACK_PROGRAM             = ' '
       I_CALLBACK_PF_STATUS_SET       = ' '
       I_CALLBACK_USER_COMMAND        = ' '
       I_STRUCTURE_NAME               =
       IS_LAYOUT                      =
        IT_FIELDCAT                    = it_cat
       IT_EXCLUDING                   =
       IT_SPECIAL_GROUPS              =
        IT_SORT                        = ITAB1
       IT_FILTER                      =
       IS_SEL_HIDE                    =
       I_DEFAULT                      = 'X'
       I_SAVE                         = ' '
       IS_VARIANT                     =
       IT_EVENTS                      =
       IT_EVENT_EXIT                  =
       IS_PRINT                       =
       IS_REPREP_ID                   =
       I_SCREEN_START_COLUMN          = 0
       I_SCREEN_START_LINE            = 0
       I_SCREEN_END_COLUMN            = 0
       I_SCREEN_END_LINE              = 0
       IR_SALV_LIST_ADAPTER           =
       IT_EXCEPT_QINFO                =
       I_SUPPRESS_EMPTY_DATA          = ABAP_FALSE
    IMPORTING
       E_EXIT_CAUSED_BY_CALLER        =
       ES_EXIT_CAUSED_BY_USER         =
       TABLES
         T_OUTTAB                       = it_spfli.
    EXCEPTIONS
       PROGRAM_ERROR                  = 1
       OTHERS                         = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

    REPORT zazualvgrid .
    DATA: grid1 TYPE REF TO cl_gui_alv_grid,
    ok_code LIKE sy-ucomm,
    mycontainer TYPE scrfname VALUE 'CUST',
    container TYPE REF TO cl_gui_custom_container.
    DATA : t_ekpo TYPE TABLE OF zekpo.
    DATA : v_save,
    v_repid LIKE sy-repid,
    v_variant TYPE disvariant.
    INCLUDE zsta.
    INCLUDE zpbo.
    START-OF-SELECTION.
    PERFORM set_data.
    END-OF-SELECTION.
    CLEAR v_variant.
    v_repid = sy-repid .
    v_variant-report = v_repid.
    v_save = 'A'.
    CALL SCREEN 786.
    FORM CREATE_CON *
    FORM create_con.
    IF container IS INITIAL.
    CREATE OBJECT container EXPORTING
    container_name = mycontainer
    EXCEPTIONS
    cntl_error = 1
    cntl_system_error = 2
    create_error = 3
    lifetime_error = 4
    lifetime_dynpro_dynpro_link = 5.
    IF sy-subrc NE 0.
    CALL FUNCTION 'POPUP_TO_INFORM'
    EXPORTING
    titel = sy-repid
    txt2 = sy-subrc
    txt1 = 'The control could not be created'(510).
    TXT3 = ' '
    TXT4 = ' '
    ENDIF.
    CREATE OBJECT grid1 EXPORTING
    i_parent = container.
    CALL METHOD grid1->set_table_for_first_display
    EXPORTING i_structure_name = 'ZEKPO'
    is_variant = v_variant
    i_save = v_save
    i_default = 'X'
    CHANGING it_outtab = T_EKPO.
    ENDIF.
    ENDFORM. "
    FORM SET_DATA *
    FORM set_data.
    SELECT EBELN EBELP MATNR BUKRS STATU
    FROM EKPO INTO TABLE t_EKPO UP TO 20 ROWS.
    ENDFORM. " GET_DATA
    module USER_COMMAND_0786 input.
    CASE OK_CODE.
    WHEN 'EXIT' or 'BACK'.
    CALL METHOD container->free.
    LEAVE TO SCREEN 0.
    ENDCASE.
    CLEAR OK_CODE.
    endmodule. " USER_COMMAND_0786 INPUT
    module STATUS_0786 output.
    SET PF-STATUS 'ZAZUALVGRID'.
    SET TITLEBAR 'GRID_DISPLAY'.
    PERFORM CREATE_CON.
    endmodule. " STATUS_0786 OUTPut
    Regards,
    Azhar

  • Need some good links for JAXB Customization

    Hi all,
    Please gimme some good links for JAXB customization tutorial.
    cheers
    JoyBoy

    Hi all,
    Please gimme some good links for JAXB customization tutorial.
    cheers
    JoyBoy

  • Need 64 bit test for Win7/Vista

    I develop application which is required to be 64 bit and it hosts IWebBrowser - so   is also 64 bit.
    when I load html page to this control which contains flash, of cause I get problems, as there is no flash 64 bit activex.
    There is, however one solution I could see to- use test version of Flash. For linux it exists ( and for about a year already ).
    The question is. If there would be not a release, but a test version of Flash 64 bit for Win7/Vista in near future?
    And if yes - what are estimation for time frames?

    Hi
    The Satellite P300 seems to be a new series at the moment therefore I think that this could be the reason why you cannot find the 64bit drivers on the Toshiba page
    But dont worry buddy Im sure that Toshiba will release the 64bit driver in the next time I remember well that the 64bit drivers for the other series were released a little bit later too.
    Just for note;
    Some series were equiupped with the same hardware devices. SO maybe you could check some single drivers from different notebook series

  • Need totals per month for following SQL select

    This SQL is currently giving totals horizontally.How can i add totals for the month vertically as well.
    here is my code
    select of_last_coy||''||of_last_div "COYDIV",
    sum(DECODE(to_char(of_expiry_date, 'MM'),'01', 1,0)) JAN,
    sum(DECODE(to_char(of_expiry_date, 'MM'),'02', 1,0)) FEB,
    sum(DECODE(to_char(of_expiry_date, 'MM'),'03', 1,0)) MAR,
    sum(DECODE(to_char(of_expiry_date, 'MM'),'04', 1,0)) APR,
    sum(DECODE(to_char(of_expiry_date, 'MM'),'05', 1,0)) MAY,
    sum(DECODE(to_char(of_expiry_date, 'MM'),'06', 1,0)) JUN,
    sum(DECODE(to_char(of_expiry_date, 'MM'),'07', 1,0)) JUL,
    sum(DECODE(to_char(of_expiry_date, 'MM'),'08', 1,0)) AUG,
    sum(DECODE(to_char(of_expiry_date, 'MM'),'09', 1,0)) SEP,
    sum(DECODE(to_char(of_expiry_date, 'MM'),'10', 1,0)) OCT,
    sum(DECODE(to_char(of_expiry_date, 'MM'),'11', 1,0)) NOV,
    sum(DECODE(to_char(of_expiry_date, 'MM'),'12', 1,0)) DEC,
    count(*)                                             TOTAL
    from mac.oprfile
    where of_expiry_date > to_date('01-01-2010','DD-MM-YYYY')
    GROUP BY of_last_coy, of_last_div
    union
    select of_last_coy||''||of_last_div "COYDIV",
    sum(DECODE(to_char(of_expiry_date, 'MM'),'01', 1,0)) JAN,
    sum(DECODE(to_char(of_expiry_date, 'MM'),'02', 1,0)) FEB,
    sum(DECODE(to_char(of_expiry_date, 'MM'),'03', 1,0)) MAR,
    sum(DECODE(to_char(of_expiry_date, 'MM'),'04', 1,0)) APR,
    sum(DECODE(to_char(of_expiry_date, 'MM'),'05', 1,0)) MAY,
    sum(DECODE(to_char(of_expiry_date, 'MM'),'06', 1,0)) JUN,
    sum(DECODE(to_char(of_expiry_date, 'MM'),'07', 1,0)) JUL,
    sum(DECODE(to_char(of_expiry_date, 'MM'),'08', 1,0)) AUG,
    sum(DECODE(to_char(of_expiry_date, 'MM'),'09', 1,0)) SEP,
    sum(DECODE(to_char(of_expiry_date, 'MM'),'10', 1,0)) OCT,
    sum(DECODE(to_char(of_expiry_date, 'MM'),'11', 1,0)) NOV,
    sum(DECODE(to_char(of_expiry_date, 'MM'),'12', 1,0)) DEC,
    count(*)                                             TOTAL
    from mac.oprfile
    where of_expiry_date > to_date('01-01-2010','MM-DD-YYYY')
    GROUP BY of_last_coy, of_last_div
    order by 1;any help will be highly appreciated

    here is the create table statement
    CREATE TABLE MAC.OPRFILE
      OF_OPID             VARCHAR2(8 BYTE)          DEFAULT ' ',
      OF_NAME             VARCHAR2(20 BYTE)         DEFAULT ' ',
      OF_COY              VARCHAR2(2 BYTE)          DEFAULT ' ',
      OF_DIV              VARCHAR2(2 BYTE)          DEFAULT ' ',
      OF_DEPT             VARCHAR2(20 BYTE)         DEFAULT ' ',
      OF_DEFQUE           VARCHAR2(20 BYTE)         DEFAULT ' ',
      OF_DEFPSWD          VARCHAR2(10 BYTE)         DEFAULT ' ',
      OF_TELNO            VARCHAR2(15 BYTE)         DEFAULT ' ',
      OF_LAST_COY         VARCHAR2(2 BYTE)          DEFAULT ' ',
      OF_LAST_DIV         VARCHAR2(2 BYTE)          DEFAULT ' ',
      OF_LAST_WH          VARCHAR2(2 BYTE)          DEFAULT ' ',
      OF_LAST_LOGIN_DATE  DATE,
      OF_LAST_LOGIN_TIME  VARCHAR2(6 BYTE),
      OF_SALES_DEPT       NUMBER(2)                 DEFAULT 0,
      OF_USER_TYPE        VARCHAR2(1 BYTE)          DEFAULT ' ',
      OF_MENU_TYPE        VARCHAR2(1 BYTE)          DEFAULT ' ',
      OF_MENU_PROG_IDS    VARCHAR2(1 BYTE)          DEFAULT ' ',
      OF_EMAIL_ADDR       VARCHAR2(70 BYTE)         DEFAULT ' ',
      OF_ID_NUMBER        VARCHAR2(13 BYTE),
      OF_TAKEON_DATE      DATE,
      OF_EXPIRY_DATE      DATE,
      OF_FAXNO            VARCHAR2(15 BYTE),
      OF_USER_CATEGORY    VARCHAR2(1 BYTE)
    )here is the insert statements for the table:
    Insert into MAC.OPRFILE
       (OF_OPID, OF_NAME, OF_COY, OF_DIV, OF_DEPT, OF_DEFQUE, OF_DEFPSWD, OF_TELNO, OF_LAST_COY, OF_LAST_DIV, OF_LAST_WH, OF_LAST_LOGIN_DATE, OF_LAST_LOGIN_TIME, OF_SALES_DEPT, OF_USER_TYPE, OF_MENU_TYPE, OF_MENU_PROG_IDS, OF_EMAIL_ADDR, OF_ID_NUMBER, OF_USER_CATEGORY)
    Values
       ('tilla', 'Tilla de Beer', '01', '08', '150', '0108so3', ' ', '018 4068200', '01', '08', '01', TO_DATE('04/13/2010 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), '075616', 2, 'N', 'F', 'Y', '[email protected]', '6510120083086', 'U');
    Insert into MAC.OPRFILE
       (OF_OPID, OF_NAME, OF_COY, OF_DIV, OF_DEPT, OF_DEFQUE, OF_DEFPSWD, OF_TELNO, OF_LAST_COY, OF_LAST_DIV, OF_LAST_WH, OF_LAST_LOGIN_DATE, OF_LAST_LOGIN_TIME, OF_SALES_DEPT, OF_USER_TYPE, OF_MENU_TYPE, OF_MENU_PROG_IDS, OF_EMAIL_ADDR, OF_ID_NUMBER, OF_USER_CATEGORY)
    Values
       ('atr', 'Archi Truder', '01', '17', '130', '0117ge2', ' ', '011 8714600', '01', '17', '01', TO_DATE('04/12/2010 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), '081537', 1, 'N', 'P', 'N', '[email protected]', '6804165184085', 'U');
    Insert into MAC.OPRFILE
       (OF_OPID, OF_NAME, OF_COY, OF_DIV, OF_DEPT, OF_DEFQUE, OF_DEFPSWD, OF_TELNO, OF_LAST_COY, OF_LAST_DIV, OF_LAST_WH, OF_LAST_LOGIN_DATE, OF_LAST_LOGIN_TIME, OF_SALES_DEPT, OF_USER_TYPE, OF_MENU_TYPE, OF_MENU_PROG_IDS, OF_EMAIL_ADDR, OF_ID_NUMBER, OF_USER_CATEGORY)
    Values
       ('rezano', 'Rezano Sauls', '20', '01', '110', '2001dn2', ' ', '011 897-2100', '20', '01', '01', TO_DATE('04/13/2010 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), '064949', 17, 'N', 'P', 'N', '[email protected]', '7804205196080', 'U');
    Insert into MAC.OPRFILE
       (OF_OPID, OF_NAME, OF_COY, OF_DIV, OF_DEPT, OF_DEFQUE, OF_DEFPSWD, OF_TELNO, OF_LAST_COY, OF_LAST_DIV, OF_LAST_WH, OF_LAST_LOGIN_DATE, OF_LAST_LOGIN_TIME, OF_SALES_DEPT, OF_USER_TYPE, OF_MENU_TYPE, OF_MENU_PROG_IDS, OF_EMAIL_ADDR, OF_ID_NUMBER, OF_USER_CATEGORY)
    Values
       ('mwil', 'Monique D Wilson', '06', '17', '020', '0601pdf', ' ', '011 8615200', '06', '12', '95', TO_DATE('04/13/2010 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), '085531', 1, 'N', 'P', 'Y', '[email protected]', '8301300517087', 'U');
    Insert into MAC.OPRFILE
       (OF_OPID, OF_NAME, OF_COY, OF_DIV, OF_DEPT, OF_DEFQUE, OF_DEFPSWD, OF_TELNO, OF_LAST_COY, OF_LAST_DIV, OF_LAST_WH, OF_LAST_LOGIN_DATE, OF_LAST_LOGIN_TIME, OF_SALES_DEPT, OF_USER_TYPE, OF_MENU_TYPE, OF_MENU_PROG_IDS, OF_EMAIL_ADDR, OF_ID_NUMBER, OF_USER_CATEGORY)
    Values
       ('sdhl', 'Salebona Dhlamini', '06', '17', '001', '0601ge3', ' ', '011 8710000', '50', '01', '01', TO_DATE('04/13/2010 00:00:00', 'MM/DD/YYYY HH24:MI:SS'), '084638', 1, 'N', 'P', 'N', '[email protected]', '7901105331088', 'U');herewith is output from current SQL:
    COYDIV , JAN, FEB, MAR, APR, MAY, JUN, JUL, AUG, SEP
    , OCT, NOV, DEC,TOTAL
    0101 , 4, 0, 1, 0, 0, 0, 0, 0, 0
    , 0, 0, 0, 5
    0102 , 0, 3, 0, 0, 0, 0, 0, 0, 0
    , 0, 0, 0, 3
    0103 , 0, 1, 1, 1, 0, 0, 0, 0, 0
    , 0, 0, 0, 3
    0104 , 0, 1, 0, 0, 0, 0, 0, 0, 0
    , 0, 0, 0, 1
    0105 , 0, 0, 1, 0, 0, 0, 0, 0, 0
    , 0, 0, 0, 1
    0107 , 1, 0, 0, 0, 0, 0, 0, 0, 0
    , 0, 0, 0, 1
    0108 , 0, 1, 0, 0, 0, 0, 0, 0, 0
    , 0, 0, 0, 1
    0109 , 1, 0, 2, 0, 0, 0, 0, 0, 0
    , 0, 0, 0, 3
    0117 , 0, 0, 2, 0, 0, 0, 0, 0, 0
    , 0, 0, 0, 2
    0118 , 0, 0, 1, 0, 0, 0, 0, 0, 0
    , 0, 0, 0, 1
    0119 , 0, 0, 1, 0, 0, 0, 0, 0, 0
    , 0, 0, 0, 1
    0122 , 0, 1, 0, 0, 0, 0, 0, 0, 0
    , 0, 0, 0, 1
    0201 , 1, 0, 0, 0, 0, 0, 0, 0, 0
    , 0, 0, 0, 1
    0401 , 4, 0, 1, 0, 0, 0, 0, 0, 0
    , 0, 0, 0, 5
    0403 , 0, 1, 0, 0, 0, 0, 0, 0, 0
    , 0, 0, 0, 1
    0603 , 0, 0, 1, 0, 0, 0, 0, 0, 0
    , 0, 0, 0, 1
    0609 , 0, 0, 3, 0, 0, 0, 0, 0, 0
    , 0, 0, 0, 3
    0612 , 1, 0, 0, 0, 0, 0, 0, 0, 0
    , 0, 0, 0, 1
    0615 , 0, 2, 0, 0, 0, 0, 0, 0, 0
    , 0, 0, 0, 2
    0619 , 0, 0, 1, 0, 0, 0, 0, 0, 0
    , 0, 0, 0, 1
    2001 , 0, 2, 2, 0, 0, 0, 0, 0, 0
    , 0, 0, 0, 4
    2201 , 0, 1, 3, 0, 0, 0, 0, 0, 0
    , 0, 0, 0, 4
    2301 , 0, 0, 1, 0, 0, 0, 0, 0, 0
    , 0, 0, 0, 1
    2302 , 0, 1, 0, 0, 0, 0, 0, 0, 0
    , 0, 0, 0, 1
    2303 , 0, 0, 1, 0, 0, 0, 0, 0, 0
    , 0, 0, 0, 1
    5001 , 1, 2, 4, 1, 0, 0, 0, 0, 0
    , 0, 0, 0, 8
    Help will be much appreciated.thank-you

  • I need one good ebook for normalization in Database, generally

    Hello,
    This is my first time on Oracles forums. I am starting my first project with Oracle8i and I need some advise on a good ebook on normalization in generally(or Windows).
    if anyone know of a good book that talks mainly about normalizing relational data (i.e. 1NF, 2NF, 3NF, BCNF, 4NF). please send to me or give the link to me please.
    Thanks,
    with regards,
    Thirunavukarasu Prasanna

    Hi Thirunavukarasu Prasanna
    try the links below
    http://www.orafaq.com/faq.htm
    http://www.informit.com
    http://www.orakle.com
    Mohammed Al-shake

  • Help me i need mm.mysql driver for my sql

    i tried to connect my jsp page with mysql database but it is giving me type 4 org.gjt.mm.mysql.Driver error it says that it is not found.
    i went to mysql official site and it is saying that they have finished mm driver and now have made connector j driver for jdbc ....
    my code is this...
    <%
    Class.forName("org.gjt.mm.mysql.Driver");
    Connection myConn= DriverManager.getConnection("jdbc:mysql:///poll?user=123&password=123");
    Statement stmt=myConn.createStatement();
    ResultSet myResultSet=stmt.executeQuery("select * from pollInfo");
    if (myResultSet != null){
    while (myResultSet.next()){
    String name=myResultSet.getString ("pollname");
    String option=myResultSet.getString ("pollOption");
    String votes=myResultSet.getString ("pollvotes");%>
    <tr>
    <td><%=name%></td>
    <td><%=option%></td>
    <td><%=votes%></td>
    </tr>
    <%
    stmt.close();
    myConn.close();
    %>
    here poll is my database name and pollInfo is my table name
    user name and passwords are 123
    and when running it it give me this error.
    >>>>>>>>>>>>>>>>>>>>>
    500 Internal Server Error
    /dbquery.jsp:
    Exception thrown on line '11' from page 'C:\\Program Files\\Allaire\\JRun\\servers\\default\\default-app\\dbquery.jsp'.
    java.lang.ClassNotFoundException: org.gjt.mm.mysql.Driver [org.gjt.mm.mysql.Driver]
         at allaire.jrun.servlet.JRunServletLoader.loadClass(../servlet/JRunServletLoader.java:430)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at allaire.jrun.jsp.JSPClassLoader.loadClass(../jsp/JSPClassLoader.java:118)
         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 jrun__dbquery2ejspc._jspService(jrun__dbquery2ejspc.java:44)
         at allaire.jrun.jsp.HttpJSPServlet.service(../jsp/HttpJSPServlet.java:39)
         at allaire.jrun.jsp.JSPServlet.service(../jsp/JSPServlet.java:228)
         at allaire.jrun.jsp.JSPServlet.service(../jsp/JSPServlet.java:196)
         at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1416)
         at allaire.jrun.session.JRunSessionService.service(../session/JRunSessionService.java:1082)
         at allaire.jrun.servlet.JRunSE.runServlet(../servlet/JRunSE.java:1270)
         at allaire.jrun.servlet.JRunRequestDispatcher.forward(../servlet/JRunRequestDispatcher.java:89)
         at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1552)
         at allaire.jrun.servlet.JRunSE.service(../servlet/JRunSE.java:1542)
         at allaire.jrun.servlet.JvmContext.dispatch(../servlet/JvmContext.java:364)
         at allaire.jrun.http.WebEndpoint.run(../http/WebEndpoint.java:115)
         at allaire.jrun.ThreadPool.run(../ThreadPool.java:272)
         at allaire.jrun.WorkerThread.run(../WorkerThread.java:75)
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    I am using jrun 3.1 the release of Allair ...
    now any one please help me what to do
    i willl be great ful to all of u very much thanx
    bye

    Hi,
    The driver needs to be on your classpath. So download it to (say C:\jars), what I do is rename it to mysql.jar
    Then add the C:\jars\mysql.jar to the classpath
    If you are using it with tomcat at runtime, which you are probably not, then you could also copy the jar in the tomcat\lib directory - but I have never done this.
    If you are still experiencing problems, open the jar file using winxip or the jar command and make sure that the jar build is exactly as it should be, i.e. the correct names etc.
    best
    kev

  • I need a good program for merging MP4 files on Mac, i need a program that wont mess up the sound?

    Hey, pal. If you are using a Mac, I think aprofessional MP4 video joiner for Mac would be the best choice, which cancombine MP4 Video and output to iPod (also to Quicktime, iMovie, iPhone...).
    It was recommended by lots of famous mac-relatedsites, such as macworld.com, macnn.com, maclife.com, etc. You will never knowhow powerful it is. It’s the best all-in-one Mac converter I have used ever.
    Glad to share. And you can find the truthon  official website:http://imp4converter.com/mp4joiner_mac.html

    ??? Sorry, my knoledge does not go that far! By bouncing you mean drop into iTunes? Remember some of the files are not splitted into tracks...Thanks!

  • My Firefox keeps freezing up, unfreezing after a minute or so. This has gotten very tedious and I've no idea what's causing it. I'm at wit's end here, I need a good browser for work and at home. (Note: IE isn't freezing up)

    Firefox freezes up whether I've one tab open or five open. I've got plenty of RAM on this laptop, that's not the problem. Firefox worked perfectly until a month or so ago and I didn't do anything different then.

    -> Tap '''ALT''' key or press '''F10''' to show the Menu Bar
    -> go to Help Menu -> select '''Restart with Add-ons Disabled'''
    Firefox will close then it will open up with just basic Firefox. Now do this:
    -> Update Firefox to the latest version by going to Help Menu -> About Firefox -> click '''Check for Updates''' -> if an updated version is found then download the latest version and install it. After that follow these steps:
    -> Update ALL your Firefox Plug-ins https://www.mozilla.com/en-US/plugincheck/
    -> go to View Menu -> '''Zoom''' -> click '''Reset''' -> '''Page Style''' -> select '''Basic Page Style'''
    -> go to View Menu -> Toolbars -> unselect All Unwanted/Incompatible Toolbars
    -> go to Tools Menu -> Clear Recent History -> '''Time range to clear: select "EVERYTHING"''' -> click Details (small arrow) button -> place Checkmarks on '''Cookies, Cache''' -> click '''Clear Now'''
    -> go to Tools Menu -> Options -> General -> in '''Startup''' section click '''Reset to Default''' button
    -> go to Tools Menu -> Options -> Content -> place Checkmarks on:
    1) Block Pop-up windows 2) Load images automatically 3) Enable JavaScript
    -> go to Tools Menu -> Options -> Privacy -> History section -> '''Firefox will: select "Remember History"'''
    -> go to Tools Menu -> Options -> Security -> place Checkmarks on:
    1) Warn me when sites try to install add-ons 2) Block reported attack sites 3) Block reported web forgeries 4) Remember Passwords for sites
    -> go to Tools Menu -> Options -> Advanced -> Network -> Offline Storage (Cache): click '''Clear Now''' button
    -> Click OK on Options window
    -> click the Favicon on SearchBar -> click '''Manage Search Engines''' -> select all Unwanted Search Engines and click '''Remove''' -> click OK
    -> go to Tools Menu -> Add-ons -> Extensions section -> REMOVE All Unwanted/Suspicious/Incompatible Extensions (Add-ons)
    -> go to Tools Menu -> Add-ons -> Appearance section -> REMOVE All Unwanted/Suspicious/Incompatible Themes (Persona)
    -> Restart Firefox
    You can enable your Known & Trustworthy Add-ons and Themes later. Check and tell if its working.

Maybe you are looking for

  • Email at the time of PO creation

    Hi , I have a requirement in Purchase order where if net value (at header level) exceeds the certain amount, an email should trigger to the specified email address. Can any one tell me UE/BADI or enhancement point .The only concern I have is , if any

  • I'm new to java.

    I hava a very small idea about how it works. How should i get started to learn the language and programing in java? somehow to start it from the begining. like in the 1st grade at school.

  • Any code samples for inputting content into content manager 8.1?

    Does anybody know where to find code samples of adding content to the Content Manager via the Java API? The only code I can find is the "Content Manager Example Portlet" and it is 7.0, not 8.1. It's not clear from the documentation what the Repositor

  • New graphics adapter causing color management problem

    My graphics adapter failed and I just replaced it with a new  Radeon 9800 Pro graphics adapter. Now all photos I open, .RAW, . JPG, .TIF, are trashed. They appear to be over saturated. This incorrect color is the same in CS3 Photoshop, Bridge & Light

  • Final Cut  4.5 on a Mac Pro

    Hi guys, New here. I've been using my FCP 4.5 on an old G4 for ages and now am installing it on my new Mac Pro OS X Leopard. Installed okay - but getting message that I need a Power Mac G4/350 and a AGP card. How do I get over this? Love you all Keit