BW error. Need urgent Help( I will give out full points).

We have BW version 3.1 and content 3.3.
We are doing loads to ODS and getting oracle partition error. It gives Oracle partition error ORA-14400. inserted partition key doesn't map to any parititon.
The exception must either be prevented, caught within the procedure               
"INSERT_ODS"                                                                     
(FORM)", or declared in the procedure's RAISING clause.                          
o prevent the exception, note the following:                                     
atabase error text........: "ORA-14400: inserted partition key does not map to   
any partition"                                                                   
nternal call code.........: "[RSQL/INSR//BIC/B0000401000 ]"                      
lease check the entries in the system log (Transaction SM21).                                                                               
ou may able to find an interim solution to the problem                           
n the SAP note system. If you have access to the note system yourself,           
se the following search criteria:                                                
The termination occurred in the ABAP program "GP3WRFMGVS1D8IW16LLGSL4QQKH " in       
"INSERT_ODS".                                                                       
he main program was "SAPMSSY1 ".                                                                               
he termination occurred in line 41 of the source code of the (Include)              
program "GP3WRFMGVS1D8IW16LLGSL4QQKH "                                              
f the source code of program "GP3WRFMGVS1D8IW16LLGSL4QQKH " (when calling the       
editor 410).                                                                        
rocessing was terminated because the exception "CX_SY_OPEN_SQL_DB" occurred in      
the                                                                               
rocedure "INSERT_ODS" "(FORM)" but was not handled locally, not declared in         
the                                                                               
AISING clause of the procedure.                                                     
he procedure is in the program "GP3WRFMGVS1D8IW16LLGSL4QQKH ". Its source code      
starts in line 21                                                                   
f the (Include) program "GP3WRFMGVS1D8IW16LLGSL4QQKH ".                                                                               
Please help me guys. I will award points for good answers.

Dear Sir,
Now I have got the problem like yours (load to ODS and ORACLE partition error ORA-14400 with INSERT_ODS). Tell me, please - did you solve this problem?
Can you recommend me something? What did you do with partitions?
Help me, please - I need urgent help too.
GLEB ([email protected])
P.S. Sorry for my English, I haven’t got any language practice for a long time.

Similar Messages

  • Please answar the 4 simple questions, i will give you full points

    HI
    Gurus
    My qeustions are
    1. SAP System standard Asset upload transaction code?
    2. My system date is 21.09.07. But in SAP it showing 22.09.07. where i can change date settings in SAP. i want equal as system date.
    3. what is the difference between Busines Area, Business place
    4. what is validation and substitutions.
    I will give you full points.
    Thank you
    Anil

    hi anil,
    1> Asset Upload
                    AS91
    2.
    For the date change, u have to change in the Ideas if u are using the Test server, in the remote server login place.
    3. Business area
    Your financial Statement will be genereted through business area. Business area is and independent unit which you don't assign it to a particular company code.
    Business area is defined in accounts but for reporting purpose u can use it for mm as plant is assigned to it also in sd as so is assigned to it. As far as fi is concern fsv is not very clear from business area .This is all about standard reports
    By making abap development u can use business area in fi with highest accuracy. For eg. by abap reports assign ur user to specific business area u will get perfect reports. thus u can use the business area with abap development for getting business area wise reports
    Business area is across company codes in a company. There is a customization to activate the business area for the company code. When you activate the same , the business area is the required field in the postings.
    Business place is indicates the address. At the time of generating any tax certificates business place is required. for an example generating remittance challan at that time u have to specify the business place.
    4.
    With the validations and substitutions software, you can validate and/or substitute data at the time of entry - in the FI-SL System and other SAP Systems.
    You do not need to change the standard system to customize your validations and substitutions. For each installation, you can define exactly which validations and substitutions are necessary to ensure the integrity of your data.
    Validations
    In the SAP R/3 System, almost all input values are validated by a program or against tables or master files. Since some types of validations cannot be standardized, you can use FI-SL's validations program to create validations for your system.
    With validations, you can check values and combinations of values as they are being entered in the R/3 environment. Validation rules are stored in the Rule Manager; as data is being entered, the Integration Manager validates the data against the validation rules stored in the Rule Manager. Because validation occurs before data is posted, only valid information enters the FI-SL System.
    http://help.sap.com/saphelp_45b/helpdata/en/5b/d2221443c611d182b30000e829fbfe/content.htm
    Assign me the points....
    Ranjit

  • Output stream error, need urgent help

    <%@page contentType="text/html" language="java"
             import="java.util.*, java.io.*,
                java.sql.*,
                javax.servlet.*,
                java.lang.*,
                Util.*,
                OJ.*"
    %>
    <!--Assumes that file name is in the request objects query Parameter -->
    <%
         String filename               = "";
         String filepath               = "";
         String filenameDisplay                                                = "";
         //read the file name.
         if( (request.getParameter("downloadFilepath")!=null) || (!((request.getParameter("downloadFilepath")).equals(""))) )
              if(request.getParameter("downloadFilename")==null || (request.getParameter("downloadFilename")).equals(""))
                   filename = "";
                   filenameDisplay = "DownloadFile";
              else
                   filename = request.getParameter("downloadFilename");
                   filenameDisplay = filename;
              filepath = request.getParameter("downloadFilepath");
              File f = new File (filepath + filename);
              //set the content type(can be excel/word/powerpoint etc..)
              response.setContentType ("application/octet-stream");
              //set the header and also the Name by which user will be prompted to save
              response.setHeader ("Content-Disposition","attachment;filename=\""+filenameDisplay+"\"");
              InputStream in = new FileInputStream(f);
              ServletOutputStream outs = response.getOutputStream();
              int bit = 256;
              int i = 0;
              try {
                   while ((bit) >= 0) {
                        bit = in.read();
                        outs.write(bit);
              catch (IOException ioe) {
              finally{
                   outs.flush();
                   outs.close();
                   in.close();
    %>
    [\code]
    This is what i use to download a file!
    This is called from a jsp page using an anchor link (<a href>)
    This throws an exception saying "getOutputStream() has already been called for this response"
    why? I  have removed all the system outs but still there is an error                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    heres some servlet code to get you going
    if you choose to go that way, not tested
    package mywebapp;
    import java.io.*;
    import java.net.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class DownloadServlet extends HttpServlet {
        public void init(ServletConfig config) throws ServletException {
            super.init(config);
        public void destroy() {
        protected void processRequest(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException {
            String filename = request.getParameter("downloadFilename");
            String filepath = request.getParameter("downloadFilepath");
            String filenameDisplay;
            // process inputs
            if( (filepath != null) || (!filepath.equals("")) ) {
                if(filename == null || (filename.equals("")) ){
                    filename = "";
                    filenameDisplay = "DownloadFile";
                else
                    filenameDisplay = filename;
                InputStream in = null;
                ServletOutputStream out = null;
                try{
                    // read file into byte array
                    File f = new File(filepath + filename);
                    int size = (int)f.length();
                    byte[] ba = new byte[size];
                    in = new FileInputStream(f);
                    in.read(ba);
                    // write out byte array
                    response.setContentType("application/octet-stream");
                    response.setHeader("Content-Disposition","attachment;filename=\""+filenameDisplay+"\"");
                    out = response.getOutputStream();
                    out.write(ba);
                    out.flush();
                catch (IOException ioe) {
                finally{
                    if(out != null)
                        out.close();
                    if(in != null)
                        in.close();
            // i assume you have more code to go here
            // else{
        protected void doGet(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException {
            processRequest(request, response);
        protected void doPost(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException {
            processRequest(request, response);
        public String getServletInfo() {
            return "Short description";
    }

  • Report Server Error (NEED URGENT HELP!!)

    Dear Supporting Team & All Oracle Members,
    I was unable to run my report smoothly just
    recently. The error messages were as follows:
    "rwcgi60.exe - Application Error"
    "The instruction at "0x77f6754b" referenced
    memory of "0x016dle18". The memory could
    not be "read". Click on OK to terminate
    the application".
    For your info, development was by using
    Javascript with Netscape 4.7 as my default
    browser. Is there anything wrong with my
    setting? Before this, I've been using the
    same server for the past three (3) months
    but nothing happen. Kindly provide some
    solutions to this problem.
    Thanks in advance.
    null

    Dear Supporting Team & All Oracle Members,
    I was unable to run my report smoothly just
    recently. The error messages were as follows:
    "rwcgi60.exe - Application Error"
    "The instruction at "0x77f6754b" referenced
    memory of "0x016dle18". The memory could
    not be "read". Click on OK to terminate
    the application".
    For your info, development was by using
    Javascript with Netscape 4.7 as my default
    browser. Is there anything wrong with my
    setting? Before this, I've been using the
    same server for the past three (3) months
    but nothing happen. Kindly provide some
    solutions to this problem.
    Thanks in advance.
    null

  • Updating to MAXDB 7.5.00.29- user logon failed error! Urgent Help

    Hi
    I am trying to update MaxDB 7.5.00 to MaxDB 7.5.00.29
    on WAS 6.40. When I run the update via SDBUPD, I get the error "cannot establish database instance". i have looked in the log files(MaxDBUpdate_install-16.07.2005-16.13.log)
    and the error is
    <b>user_logon failed
    ERR
    -24950,ERR_USRFAIL: user authorization failed</b>
    I am following "MaxDB update SAP note 735598" and under Windows section it states I should call the SDBUPD from the cmd prompt as follows:
    SDBUPD -d <database_name> -u <dbm_userid>,<password>
    so i run
    <b>SDBUPD -d J2E -u Administrator,portal</b>
    I assume <dbm_userid> is the default userid which is Admisitrator when installing WAS and MAXDB. I ahve not changed the default during the installation.
    I have tried <b>SAPJ2EDB</b> as dmb_userid as well as <b>J2EE_Admin</b>, they still give the same error.
    Any help on this?
    Need urgent help
    Much appreciated
    RD
    Message was edited by: RD

    Hi
    Thank you for your reply!!
    I used control,control as user,password. This worked 100%, but then it reached to a point where it gave this error, i get this from the log file:
    <b>STDERR: test pgm/sqltcp.dll failed: cannot extract pgm/sqltcp.dll: sharing violation during open of existing file</b>
    What causes this error, and how can i get pass this ?
    I assume some instance is started, but before I ran the SDBUPD, I stopped the J2E under sap system in SAPMMC.
    Below is the output it gave when i ran SDBUPD from cmd prompt, I have bolded where the error starts:
    D:\UpdatesPatches\MaxDB\maxdb-server-win-32bit-i386-7_5_00_29>SDBUPD -d J2E -u control,control
            MaxDB INSTANCE UPDATE
    starting installation Mo, Jul 18, 2005 at 08:57:11
    operating system: Windows I386 NT 5.2 Service Pack 1
    callers working directory: D:/UpdatesPatches/MaxDB/maxdb-server-win-32bit-i386-7
    500_29
    installer directory: D:/UpdatesPatches/MaxDB/maxdb-server-win-32bit-i386-7_5_00_
    29
    archive directory: D:/UpdatesPatches/MaxDB/maxdb-server-win-32bit-i386-7_5_00_29
    beginning to check sap db instances
    start new instance update
    finding instance type...
    finding starting release...
    finding migration strategy...
    looking for running instances...
    checking paramfile modifications...
    looking for domain user...
    checking data consistency for database migration...
    switch database state to OFFLINE
    checking SAP DB instance "J2E" successfully Mo, Jul 18, 2005 at 08:57:23
    starting preparing phase of package Base 7.5.00.29 32 bit
    update release check... ok
    update binary magic check... ok
    checking interferences to other packages... ok
    collecting data finished:
    independent data path: d:/sapdb/data
    independent program path: d:/sapdb/programs
    start extraction test run of "D:/UpdatesPatches/MaxDB/maxdb-server-win-32bit-i38
    6-7_5_00_29/SDBBAS.TGZ"
    <b>test pgm/sqltcp.dll failed: cannot extract pgm/sqltcp.dll: sharing violation dur
    ing open of existing file
    following programs are running:
    dbmsrv.exe [pid = 876]
    dbmsrv.exe [pid = 2496]
    dbmsrv.exe [pid = 1460]
    wahttp.exe [pid = 1420]
    dbmsrv.exe [pid = 1188]</b>

  • Need urgently help for OBIEE Installation (11g)

    Hi all,
    I am having problems trying to install Oracle Business Intelligence 11g on Windows 7.
    The Installation Wizard hangs on the step: Domain Configuration (0%). The Creating Domain shows In progress.
    The log under the Inventory directory shows me only following:
    INFO: Ending the inventory Session
    INFO: Using an existing InstallAreaControl for this Inventory Session with existing access level 1
    INFO: The ORACLE_CONFIG_HOME env var is set to
    INFO: The ORACLE_CONFIG_HOME env var is set to
    INFO: The ORACLE_CONFIG_HOME env var is set to
    INFO: The ORACLE_CONFIG_HOME env var is set to
    INFO: The ORACLE_CONFIG_HOME env var is set to
    INFO: The ORACLE_CONFIG_HOME env var is set to
    INFO: The ORACLE_CONFIG_HOME env var is set to
    INFO: The ORACLE_CONFIG_HOME env var is set to
    INFO: The ORACLE_CONFIG_HOME env var is set to
    INFO: The ORACLE_CONFIG_HOME env var is set to
    INFO: The ORACLE_CONFIG_HOME env var is set to
    INFO: The ORACLE_CONFIG_HOME env var is set to
    INFO: The ORACLE_CONFIG_HOME env var is set to
    INFO: The ORACLE_CONFIG_HOME env var is set to
    INFO: The ORACLE_CONFIG_HOME env var is set to
    INFO: The ORACLE_CONFIG_HOME env var is set to
    I really don't know what to do. I am searching for a solution on Internet, but I don't find it.
    I need urgently help. I would appreciate someone could help me.
    We can do together via Webex or something similar. It doesnt worth it for me to type here and wait till someone give me an answer (if any), trying to find out how I did.
    I hope to find the help I need. I am desperated :-(

    Can I install the OBIEE 10g version?I am not sure but i think OBIEE is not certified with windows 7. i could not find any MOS doc confirming same. Please log a call with oracle to confirm this.
    would it work fine with the Oracle Database 11g and the RCUs?. Yes OBIEE 10g will work with oracle database 11g.
    Thanks,
    JD

  • I am new to mac air. Today i installed (unsuccessfully!) MAPLE16 on my mac book air. Now since it does not work properly (it also does not appear in  applications) i decide to delete it. I could not remove it from launchpad . i need urgent help

    i am new to mac air. Today i installed (unsuccessfully!) MAPLE16 on my mac book air. Now since it does not work properly (it also does not appear in  applications) i decide to delete it. I could not remove it from launchpad . i need urgent help from your side.

    Any third-party software that doesn't install by drag-and-drop into the Applications folder, and uninstall by drag-and-drop to the Trash, is a system modification.
    Whenever you remove system modifications, they must be removed completely, and the only way to do that is to use the uninstallation tool, if any, provided by the developers, or to follow their instructions. If the software has been incompletely removed, you may have to re-download or even reinstall it in order to finish the job.
    I never install system modifications myself, and I don't know how to uninstall them. You'll have to do your own research to find that information.
    Here are some general guidelines to get you started. Suppose you want to remove something called “BrickMyMac” (a hypothetical example.) First, consult the product's Help menu, if there is one, for instructions. Finding none there, look on the developer's website, say www.brickmyrmac.com. (That may not be the actual name of the site; if necessary, search the Web for the product name.) If you don’t find anything on the website or in your search, contact the developer. While you're waiting for a response, download BrickMyMac.dmg and open it. There may be an application in there such as “Uninstall BrickMyMac.” If not, open “BrickMyMac.pkg” and look for an Uninstall button.
    You generally have to reboot in order to complete an uninstallation.
    If you can’t remove software in any other way, you’ll have to erase and install OS X. Never install any third-party software unless you're sure you know how to uninstall it; otherwise you may create problems that are very hard to solve.
    You may be advised by others to try to remove complex system modifications by hunting for files by name, or by running "utilities" that purport to remove software. I don't give such advice. Those tactics often will not work and maymake the problem worse.

  • Need Urgent help, I have made partition hard drive in my mac book and using OS mac

    Need Urgent help, I have made partition hard drive in my mac book and using OS mac & Window8 seperately... for couple of days it works great for both window & OS mac But nowadays, my pc gets restart automatically while using window & even I cant access to my Mac OS...........  I got some error in window (error80070003) ...>>>>> Now how can I format whole drive & recover my Mac book OS.without boot disk.

    I can't find that model. If you open System Profiler in the Utilities folder look for the Model Identifier over in the right hand display. What do you find for the model ID? If your computer supports Internet Recovery here's what to do:
    Install Mavericks, Lion/Mountain Lion Using Internet Recovery
    Be sure you backup your files to an external drive or second internal drive because the following procedure will remove everything from the hard drive.
    Boot to the Internet Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND-OPTION- R keys until a globe appears on the screen. Wait patiently - 15-20 minutes - until the Recovery main menu appears.
    Partition and Format the hard drive:
    Select Disk Utility from the main menu and click on the Continue button.
    After DU loads select your newly installed hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Click on the Partition tab in the DU main window.
    Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Click on the Options button, set the partition scheme to GUID then click on the OK button. Set the format type to Mac OS Extended (Journaled.) Click on the Partition button and wait until the process has completed. Quit DU and return to the main menu.
    Reinstall Lion/Mountain Lion. Mavericks: Select Reinstall Lion/Mountain Lion, Mavericks and click on the Install button. Be sure to select the correct drive to use if you have more than one.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    This should restore the version of OS X originally pre-installed on the computer. If Mavericks is not installed, then you can reinstall it by re-downloading the Mavericks installer.
    You will need to use Boot Camp Assistant in order to create a new Windows partition, then reinstall Windows.

  • Need urgent help!!!! (combine prompt and formula)

    Hi,
    I am using Oracle Business Intelligence 10.1.3.3.2, and creating some reports from answers. I desperately need to combine
    prompt and formula on some column.
    I need to use prompt in my formula on some column.
    Need urgent help !

    You can use the presentation variables to pass the value of the prompt into the report or any column formula.
    In the dashboard prompt you see an option called "Set Variable" where and you need to give a name to the variable.(Say Var_value)
    Now the value of the variable can be simply referenced using the syntax @{var_name}{10}. Here '10' being the defualt value which is optional you can simply reference using @{var_name} and you have the value of the prompts passed.
    Hope it works
    Thanks
    Prash

  • R12 AR Invoice raxinv  -Customization (add columns) - need urgent help

    Hi,
    I need urgent help in customization of AR invoice report (raxinv) in R12. I am doing report customization for Brazil. As soon as I add one more column in report common query, build query and main query Q_invoice. Report changes to new variables in report editor q_invoice itself for example from remit_to_address_id to remit_to_address_id1 , previous_customer_id to previous_customer_id1 and start giving error that original variables e.g. remit_to_address_id , previous_customer_id are not defined in the query. Variable names and xml tags are also different from each other. even after trying to fix it, error persist.
    Thanks
    Anju

    Hi,
    I need urgent help in customization of AR invoice report (raxinv) in R12. I am doing report customization for Brazil. As soon as I add one more column in report common query, build query and main query Q_invoice. Report changes to new variables in report editor q_invoice itself for example from remit_to_address_id to remit_to_address_id1 , previous_customer_id to previous_customer_id1 and start giving error that original variables e.g. remit_to_address_id , previous_customer_id are not defined in the query. Variable names and xml tags are also different from each other. even after trying to fix it, error persist.
    Thanks
    Anju

  • I need urgent help to remove unwanted adware from my iMac. Help!

    I need urgent help to remove unwanted adware from my iMac. I have somehow got green underline in text ads, pop up ads that come in from the sides of the screen and ads that pop up selling similar products all over the page wherever I go. Its getting worse and I have researched and researched to no avail. I am really hestitant to download any software to remove whatever it is that is causing this problem. I have removed and reinstalled chrome. I have cleared Chrome and Safari cookies. Checked extensions, there are none to remove. I need to find an answer on how to get rid of these ads. Help please!

    You installed the "DownLite" trojan, perhaps under a different name. Remove it as follows.
    Back up all data.
    Triple-click anywhere in the line below on this page to select it:
    /Library/Application Support/VSearch
    Right-click or control-click the line and select
    Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item named "VSearch" selected. Drag the selected item to the Trash. You may be prompted for your administrator login password.
    Repeat with each of these lines:
    /Library/LaunchAgents/com.vsearch.agent.plist
    /Library/LaunchDaemons/com.vsearch.daemon.plist
    /Library/LaunchDaemons/com.vsearch.helper.plist
    /Library/LaunchDaemons/Jack.plist
    /Library/PrivilegedHelperTools/Jack
    /System/Library/Frameworks/VSearch.framework
    Some of these items may be absent, in which case you'll get a message that the file can't be found. Skip that item and go on to the next one.
    Restart and empty the Trash. Don't try to empty the Trash until you have restarted.
    From the Safari menu bar, select
    Safari ▹ Preferences... ▹ Extensions
    Uninstall any extensions you don't know you need, including any that have the word "Spigot" in the description. If in doubt, uninstall all extensions. Do the equivalent for the Firefox and Chrome browsers, if you use either of those.
    This trojan is distributed on illegal websites that traffic in pirated movies. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect much worse to happen in the future.
    You may be wondering why you didn't get a warning from Gatekeeper about installing software from an unknown developer, as you should have. The reason is that the DownLite developer has a codesigning certificate issued by Apple, which causes Gatekeeper to give the installer a pass. Apple could revoke the certificate, but as of this writing, has not done so, even though it's aware of the problem. It must be said that this failure of oversight is inexcusable and has seriously compromised the value of Gatekeeper and the Developer ID program. You cannot rely on Gatekeeper alone to protect you from harmful software.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

  • Need to do a remote wipe of my iphone - stolen 24 hrs ago and . Need urgent help on this. Thanks - Pinaki

    Need to do a remote wipe of my iphone - stolen 24 hrs ago  Need urgent help on this. Thanks - Pinaki
    < Personal Information Edited By Host >

    Follow the steps in this article:
    iCloud: Erase your device
    Sign in to icloud.com/#find with your Apple ID (the one you use with iCloud), then click Find My iPhone.If you’re using another iCloud app, click the app’s name at the top of the iCloud.com window, then click Find My iPhone.If you don’t see Find My iPhone on iCloud.com, your account just has access to iCloud web-only features. To gain access to other iCloud features, set up iCloud on your iOS device or Mac.
    Click All Devices, then select the device you want to erase.If you have Family Sharing set up, your family members’ devices appear below their names.
    In the device’s Info window, click Erase [device].
    To erase:
    An iOS device: Enter your Apple ID password. If the device you’re erasing has iOS 7 or later, enter a phone number and message. The number and message will be displayed on the screen after the device is erased.

  • Need Urgent Help in PM8M-V H problem - keyboard freeze

    Hi everyone,
    I'm a newbie in this forum and I really need urgent help with my motherboard.
    My PC specification:
    Intel Pentium 4 2.4GHz
    MSI PM8M-V H W7104VMS v3.4 022206 14:32:17
    1GB(512MB x 2) Kingston PC3200 400MHz
    Seagate SATA II 320GB ST3320620SV (set with jumper to support SATA I)
    Power Color ATI Radeon 9550 256MB
    Lite-On DVDRW SHM-165P6S
    USB mouse, PS/2 Keyboard
    I really appreciate if anyone can help to guide me in solving my problem. My keyboard tends to freeze at the part where it says "Press any key to boot from CD". This limits me to do anything until I'm totally loaded into Windows.  Thus, disable me to perform any formating and fresh installation of OS. However, the keyboards works fine at the begining of the POST and in BIOS. Is there any settings in BIOS that i should perform?.....
    However, I realise in order to get through the foresaid message without the the keyboard freeze up is by keep on trying to boot up and shut down until it works (but only work once, then hv to try again), but this is not a solution as if what if I wanted to have 2 OS?... I cant use the keyboard to choose either of the OS installed. I have tried to change the RAM, change keyboard, use the build in VGA, or even remove the motherboard from the ATX casing - result: still have the same problem. What should I do??.. I have look around the forum for answers but there isnt any (I hope I didnt miss any). Is there any problem with my motherboard, or its BIOS, or any of the harware compatibility or etc..... what actually can I do?   
    I do not dare to perform any BIOS update Unnecessary (it seems that many have problems with BIOS problem in this forum) and moreover i think my BIOS is the most up-to-date. I cant find any new version in the net. Anyway I will check this topic frequently as possible to hope for any solution. What is the best solutions?
    Thanks.

    But the thing that makes me wonder is, my BIOS version is the latest but why this type of problem occurs??
    What version of BIOS should I use?? Any recommendation ??
    Thanks.

  • Need urgent help in listing out checklist from DBA prespective for BI Implementation Project

    Hello Guys,
    We are in Designing phase Data Modeling of PDW/APS Implementation Project.
    I need urgent help in making a checklist from a DBA perspective.
    Like what are things ill be needing at a time of implementation/Deployment.
    Your expert comments and help will be highly appreciated.
    Thank you,
    Anish.S
    Asandeen

    You can get good summary of checklist from this article about
    DBA checklist for data warehousing.
    Which highlights on below pointers:
    New system or old. (I.e. Up-gradation vs starting from scratch)
    Complexity of SQL Server architecture 
    SQL Server storage
    Determining SQL Server processing power
    SQL Server installation consideration 
    SQL Server configuration parameter
    SQL Server security
    SQL Server Database property
    SQL Server jobs and automation
    Protecting SQL Server data
    SQL Server health monitoring and check ups
    SQL Server ownership and control 
    based on my real time experience, I will suggest you to keep an eye on 
    Load performance (It will be useful when your database(Warehouse) will have huge amount of data)
    System availability (Check for Windows update and up time configuration) 
    Deployment methodology should be planned in advance. Development of packages and respective objects should be done systematically.
    Source control mechanism 
    Disk space and memory usage
    You might or might not have full rights on production environment, so be prepared to analyze production environment via Select statements [I guess you got my point]
    Proper implementation of Landing , Staging and Mart tables.
    Column size (this can drastically decrease your database size)
    Usage of indexes (Index are good, but at what cost?)
    I hope this will assist you in building your check list.

  • Switch until release using keyboard...need urgent help

    Hi,
    i have a problem of configuring "switch until release" action using keyboard....
    or is it there no this function at all...
    it seems like all i can do is press to ON and press again to OFF
    anyone can help...
    need Urgent help....
    thank you in advance..

    This isn't possible because of the way operating systems
    handle keyboard events. When you press a keyboard key, it does not register as
    one key down. For whatever your operating system is set for as far as repeating
    characters, it will register that many key down presses. The mouse works
    differently, when you press the mouse it keeps that event "locked"
    until you release the mouse. Because of this, you can not make a switch until
    release using the keyboard; this definition is only for mouse clicks.
    Brandon Vasquez | Software Engineer | Integration Services | National Instruments

Maybe you are looking for