Situation OMBIMPORT?

When you're in the OWB Design Center, you can drill down through your project, in a module and right-click on the view. If you click import..., you are taken to the metadata import wizard. If I select only the viewand then press Next, I show a list of views that I can import. I select one and click Next again, click Finish. The view is now available for use in the Design Center (to build maps, etc.).

I need to automate this process and have worked with the OMB more as a solution to automate other things within OWB. My first inclination was to try the OMBIMPORT command, but the documentation is frankly a bit cryptic for me on this particular thing. (And I have automated successfully creating Mapping).

Did anyone done this before? Am I barking the wrong tree with OMB over?

Thank you
-Kenneth

Another chance...

#FILE: loadviews.tcl

package require java

##################################################################################
#
# Basic Connection Details
#
##################################################################################

# OWB Repository Connection
set OWB_DEG_USER    username
set OWB_DEG_PASS    password
set OWB_DEG_HOST    myserver
set OWB_DEG_PORT    1555
set OWB_DEG_SRVC    orcl
set OWB_DEG_REPOS   owb_mgr

set SPOOLFILE "c:/omb/logfile.txt"

##################################################################################
#
# Procedures from our standard OWB library
#
##################################################################################

##################################################################################
# Default logging function.
#  Accepts inputs: LOGMSG - a text string to output
#                  FORCELOG - if "1" then output regardless of VERBOSE_LOG setting
##################################################################################
proc log_msg { LOGTYPE LOGMSG } {
   global SPOOLFILE

   set fout [open "$SPOOLFILE" a+]
   puts $fout "$LOGTYPE:-> $LOGMSG"
   puts "$LOGTYPE:-> $LOGMSG"
   close $fout
}

##################################################################################
# Default rollbabk and exit with error code function.
##################################################################################
proc exit_failure { msg } {

   log_msg ERROR "$msg"
   log_msg ERROR "Rolling Back....."

   exec_omb OMBROLLBACK

   log_msg ERROR "Exiting....."

   # return and also bail from calling function
   return -code 2
}

##################################################################################
# Generic wrapper for OMB+ calls
##################################################################################
proc exec_omb { args } {

   # log_msg OMBCMD "$args"

   # the point of this is simply to return errorMsg or return string, whichever is applicable,
   # to simplify error checking using omb_error{}

   if [catch { set retstr [eval $args] } errmsg] {
      log_msg OMB_ERROR "$errmsg"
      log_msg "" ""
      return $errmsg
   } else {
   #   log_msg OMB_SUCCESS "$retstr"
   #   log_msg "" ""
      return $retstr
   }

}

##################################################################################
# Generic test for errors returned from OMB+ calls
##################################################################################
proc omb_error { retstr } {
   # OMB, Oracle, or java errors may have caused a failure.
   if [string match OMB0* $retstr] {
      return 1
   } elseif [string match ORA-* $retstr] {
      return 1
   } elseif [string match java.* $retstr] {
      return 1
   } else {
      return 0
   }
}

##################################################################################
#
# Procedures from our standard OWB/SQL library
#
##################################################################################

proc oracleConnect { serverName databaseName portNumber username password } {

   # import required classes
   java::import java.sql.Connection
   java::import java.sql.DriverManager
   java::import java.sql.ResultSet
   java::import java.sql.SQLWarning
   java::import java.sql.Statement
   java::import java.sql.CallableStatement
   java::import java.sql.ResultSetMetaData
   java::import java.sql.DatabaseMetaData
   java::import java.sql.Types
   java::import oracle.jdbc.OracleDatabaseMetaData

   # load database driver .
   java::call Class forName oracle.jdbc.OracleDriver 

   # set the connection url.
   append url jdbc:oracle:thin
   append url :
   append url $username
   append url /
   append url $password
   append url "@"
   append url $serverName
   append url :
   append url $portNumber
   append url :
   append url $databaseName

   set oraConnection [ java::call DriverManager getConnection $url ]
   set oraDatabaseMetaData [ $oraConnection getMetaData ]
   set oraDatabaseVersion [ $oraDatabaseMetaData getDatabaseProductVersion ]

   puts "Connected to: $url"
   puts "$oraDatabaseVersion"

   return $oraConnection
}

proc oracleDisconnect { oraConnect } {
  $oraConnect close
}

proc oracleQuery { oraConnect oraQuery } {

   set oraStatement [ $oraConnect createStatement ]
   set oraResults [ $oraStatement executeQuery $oraQuery ]

   return $oraResults
}

##################################################################################
#
#                MAIN SCRIPT BODY
#
##################################################################################

proc load_view { viewname modulename} {

    exec_omb  OMBCREATE TRANSIENT IMPORT_ACTION_PLAN 'IMPORT_VIEW' ADD ACTION 'IMPORT_ACTION' SET REF SOURCE VIEW '$viewname' SET REF TARGET ORACLE_MODULE '$modulename'
    exec_omb  OMBIMPORT FROM METADATA_LOCATION FOR IMPORT_ACTION_PLAN 'IMPORT_VIEW'
    exec_omb  OMBDROP IMPORT_ACTION_PLAN 'IMPORT_VIEW'
}    

##################################################################################
#  Connect to repos
##################################################################################
log_msg LOG "Connecting to Repository"    

set print [exec_omb OMBCONNECT $OWB_DEG_USER/$OWB_DEG_PASS@$OWB_DEG_HOST:$OWB_DEG_PORT:$OWB_DEG_SRVC USE REPOSITORY '$OWB_DEG_REPOS']

if [omb_error $print] {
    if [string match  OMB01041* $print] {
        log_msg LOG "Already connected ....."
    } else {
        log_msg ERROR "Unable to connect to repository."
        log_msg ERROR "Exiting Script.............."
        return
    }
} else {
    log_msg LOG "Connected to Repository"
}

##################################################################################
# Connect to project
##################################################################################

puts -nonewline "Which project do you want to import to? "
set CHK_PROJECT_NAME [gets stdin]

set print [exec_omb OMBCC '$CHK_PROJECT_NAME']

if [omb_error $print] {

   log_msg LOG "Project $CHK_PROJECT_NAME does not exist. No Import Required...."
   exec_omb OMBDISCONNECT
   return

} else {
   log_msg LOG "Verified project $CHK_PROJECT_NAME exists"
}    

puts -nonewline "Which module do you want to import to? "
set ORA_MODULE_NAME [gets stdin]

set print [exec_omb OMBCC '$ORA_MODULE_NAME']

if [omb_error $print] {

   log_msg LOG "Module $ORA_MODULE_NAME does not exist. No Import Required...."
   exec_omb OMBDISCONNECT
   return

} else {
   log_msg LOG "Verified module $ORA_MODULE_NAME exists"
}    

exec_omb OMBCC '..'

set CURRENT_DEPLOYED_LOCATION [exec_omb OMBRETRIEVE ORACLE_MODULE '$ORA_MODULE_NAME' GET REFERENCE LOCATION]
if [omb_error $print] {
   log_msg LOG "Unable to retrieve location to match top . Exiting...."
   exec_omb OMBDISCONNECT
   return

} else {
   log_msg LOG "Retrieved location $CURRENT_DEPLOYED_LOCATION"
}    

 set CHK_SCHEMA   [OMBRETRIEVE LOCATION '$CURRENT_DEPLOYED_LOCATION' GET PROPERTIES (SCHEMA)]
 set CHK_HOST     [OMBRETRIEVE LOCATION '$CURRENT_DEPLOYED_LOCATION' GET PROPERTIES (HOST)]
 set CHK_PORT     [OMBRETRIEVE LOCATION '$CURRENT_DEPLOYED_LOCATION' GET PROPERTIES (PORT)]
 set CHK_SERVICE  [OMBRETRIEVE LOCATION '$CURRENT_DEPLOYED_LOCATION' GET PROPERTIES (SERVICE)]

 set CHK_PASSWORD   [OMBRETRIEVE LOCATION '$CURRENT_DEPLOYED_LOCATION' GET PROPERTIES (PASSWORD)]
 if [string match "{}" $CHK_PASSWORD] {
    #Password not stored in repository
    log_msg LOG " "
    puts -nonewline "Require password for schema $CHK_SCHEMA? "
    set CHK_PASSWORD [gets stdin]
 }   

##################################################################################
# Validate to Control Center
##################################################################################
log_msg LOG "Connecting to Control Center "
set print [exec_omb OMBCONNECT CONTROL_CENTER USE '$CHK_PASSWORD' ]
if [omb_error $print] {
    exec_omb OMBROLLBACK
    log_msg ERROR "Unable to connect to Control Center "
    log_msg ERROR "$print"
    exit_failure "Exiting Script.............."
}
exec_omb OMBCOMMIT

log_msg LOG "Checking existing MetaData."
set print [exec_omb OMBALTER LOCATION '$CURRENT_DEPLOYED_LOCATION' SET PROPERTIES (PASSWORD) VALUES ('$CHK_PASSWORD')]
exec_omb OMBCOMMIT

exec_omb OMBCC '$ORA_MODULE_NAME'

log_msg LOG "Making SQL*Plus Connection...." 

set oracle_view_lst {}

log_msg LOG "Getting views defined in database...."
log_msg LOG " " 

set oraConn [oracleConnect $CHK_HOST $CHK_SERVICE $CHK_PORT $CHK_SCHEMA $CHK_PASSWORD ]
set sqlStr "select object_name from all_objects where owner = '$CHK_SCHEMA' and  object_type = 'VIEW'"
set oraRs [oracleQuery $oraConn $sqlStr]
while {[$oraRs next]} {
     set vwName [$oraRs getString object_name]
     lappend oracle_view_lst $vwName
}
$oraRs close
$oraConn close

foreach viewname $oracle_view_lst {
     log_msg LOG "Checking view $viewname ....  "

     #see if view already in OWB. An OMBRETRIEVE will error out if it doesn't exist.
     set owb_column_lst [ exec_omb OMBRETRIEVE VIEW '$viewname' GET COLUMNS ]

     if [omb_error $owb_column_lst] {
          log_msg LOG "Need to import view $viewname "
          exec_omb OMBCC '..'
          load_view $viewname $ORA_MODULE_NAME
          exec_omb OMBCC '$ORA_MODULE_NAME'
     } else {
          log_msg LOG "View $viewname  already in OWB"
     } 

}

log_msg LOG " "
log_msg LOG "Done Views. Exiting..."
log_msg LOG " " 

exec_omb OMBDISCONNECT

Tags: Business Intelligence

Similar Questions

  • I have iPad Air and have never used my application pages. He now does not turn on and just displays "pending". The application does not open and I would like to download an application on pages to activate my use. How can I correct this situation, please?

    I have an iPad Air and have never used the app to Pages. For some time, it has not been enlightened and shows 'pending', but does not open. Now I want to resolve this situation. Any ideas, please

    Hello. It seems to be hung trying to complete the installation. You can try to remove and reinstall. To remove it, go to settings > general > storage > storage management. Expect that the apps fill, then on the Pages. You will see the used storage and a delete option. It allows to remove the existing copy. Then go to the app store, in respect of the purchase, you will see the Pages with a cloud beside her. Tap on the cloud and it should install again.

  • Migrate to El Capitan in a dual boot Situation

    I have a Mac Book Pro 2011 with two internal hard drives.  (I got the optical drive, replaced by the second hard drive).  A reader has installed El Capitan.  The other disc has Snow Leopard.  I want to finish my transition to El Capitan while being able from time to time dual boot from the Snow Leopard disc in order to run some legacy applications.  Meanwhile, I have done work on "both sides of the fence" and do not want to replace or destroy data and applications that currently exist on the drive from El Capitan.

    Can I use the Migration Wizard to move most of the data and compatible applications since the Snow Leopard disc to the drive of El Capitan?  Or who will overwrite what already exists on the disk of El Capitan?  Or can / should I I manually copy data and applications from one disk to the other?  My end goal is Snow Leopard "skeleton" for legacy applications, thanks to the drive of El Capitan being my main boot drive.

    Hope this makes some sense.

    When I had this situation, I did a manual copy, so I would have more control over what was copied and where he went.

  • The WiFi of my Airport is ready and cutting time another. What do I do pay to correct the situation

    The WiFi of my Airport is very ready and cut on the occasion. Do I pay to correct the situation?

    I have the same problem after updating to firmware 7.7.7! I noticed that I have a bad speed on WiFi, less than 10 Mbps and very unstable connection (with huge fluctuations). I ran a speedtest on cable connections, and here, I have more than 400 Mbit/s for download!

    Before the update, everything was fine!

    Any ideas?

    Thanks, Ionut

  • What MacBook Pro is better for my situation?

    Hello, guys.

    Could you please help me decide which MacBook Pro is the best for my situation?

    Currently, I chose between these models:

    • MacBook Pro 15 "2.2 GHz / RAM 16 / 256 GB of storage / Iris Pro
    • MacBook Pro 15 "(2.8) of 2.5 GHz / RAM 16 / 256 GB of storage / Iris Pro"
    • MacBook Pro 15 "2.5 GHz / RAM 16 / 512 GB of storage / AMD Radeon R9 M370X (2 GB)

    I'll use the laptop for:

    • Webdesign. I work in Photoshop all day and it was sometimes messy (major projects, many of those open simultaneously, etc..). Theoretically, I would like for my laptop to be able to handle perfectly Photoshop, Illustrator and inDesign workflow, maybe even at the same time. Of course, all will be loaded up for the most part, but it should be imperceptible to work on projects of large size in Photoshop runs alone.
    • Audio engineering. Recording/mixing/mastering audio as a hobby, which may require use of the processor 4 do. My current laptop (2.3 GHz Dual Core Intel i5 - 2410 M) cannot manage even the basics of what I need for comfort work with audio. Usually it is around 10-15 tracks, stock and third-party plugins sometimes. I omit the part that the new laptop should have completely no problems with recording audio through audio interface (no cracks, dents, noises and other things caused by lack of CPU and RAM). I guess that each of these three Mac is capable of a fluent audio recording, the question arises on the comfortable audio processing in the future.
    • Navigation. I know that sounds ridiculous, but there are times that my laptop current can't live through an intense session of navigation. About 20-25 tabs with mixed content (text for most, a couple of video opened online). I use Google Chrome, which is quite noticeable on the CPU, but it's my personal preference in terms of browser.
    • Web development. I would like to be able to make everything about web development fast and easy. That shouldn't be the problem, since even my laptop current meets my needs developing. Just let it be worth mentioning.

    Given the above information, I can make a conclusion that I need:

    • Retina display, press each tiny pixel on the screen of work related to graphic design
    • Reasonably fast CPU and RAM

    Initially, the more powerful MacBook Pro (with default 2.5 GHz and AMD video card) seemed like a logical option. However, after reading about the AMD video card I noticed that it is still lower than the average of those on the market (judging on the benchmark). Therefore, it seems that there is no reason to pay more for just a video card, comparing to the stack by default a cheaper model (the 15 "MacBook Pro 2.2 GHz/256 GB of storage). 0.3 GHz of processor is imperceptible, and the lack of hard disk space may be justified by external USB storage or by configuring the cheaper model for more storage by itself. The main difference is the video card. Please, correct me if I'm wrong on this conclusions.

    Therefore, I came to decide what configuration is best with regard to the less expensive version of the MacBook Pro 15 ", the 2.2 GHz (default) or 2.5/2.8 GHz (configured). Consider the following:

    • I'm dependent on a budget; slice of 100 dollars, in fact, issue
    • My priority is a seamless workflow without any freeze for 5 minutes and loading/closing time take up to 10 minutes, as it does now
    • It is not important if a graphic/audio project takes longer to make, but it is important to work freely during production
    • I don't mind having an external USB storage, as long as he has a decent read/write speed (external USB flash are available for Macs, right?)
    • Design or audio are not my original recipes, rather a freelance opportunities or leisure

    I'd be really grateful if you could answer some of these questions and help me decide:

    • If I had to choose between 2.2 GHz to 2.8 GHz boost or 256 GB of storage on 512 GB, which is more reasonable storage boost?
    • Is there a really significant difference in the performance of the tasks that have been mentioned between 2.2 GHz and 2.5 GHz/2.8 GHz?
    • No AMD video card makes a huge difference in terms of working with graphics? (Of course, he does, but it would be nice to take a look at the difference in the form of a chart or a reference; if it is not dramatic, then pay more for the video card makes no sense for me)
    • Then Iris Pro (which comes with 2.2 GHz cheaper option) handle some minor games like World of Warcraft or Diablo 3? Not necessary on ultra or high settings, but on those that make the game playable and enjoyable. (Is not necessary, but it would have been a considerable advantage, because even though I'm not a hardcore gamer, it's nice to play some old games favorite from time to time)

    Thanks for your opinions and suggestions!

    If you select I would recommend 512 GB drive. Media projects can become very large, and I suspect that you also like to have pictures of the reserve, textures, etc available all the time. I'm not a professional graphic designer, but I create brochures and documents as well as videos of 15-20 minutes and on a 256 GB drive I will decide on a project, move everything turned off, and then start a new project. Sometimes, when I had several projects going at the same time I had to decide which awkward solution was the best.

    Video Intel Iris Pro is better than I expected and I can play Diablo 3 on my MBP to 2015 on higher than smaller settings. I always use CS 5.5 because I refuse to rent my graphics software, so I don't know the State of the current Adobe software but I know that some users are griping on the 3D graphics and lower end GPU processors. I suggest you check out the Adobe forums.

  • "Situation: 0xc0000225" error starting in Windows 7

    Windows Boot Manager

    Windows could not start. A recent hardware or software change might be the cause. To solve the problem:

    1. Insert your Windows installation disc and restart your computer.
    2. choose your language settings, and then click "next".
    3. click on "Repair your computer."

    If you do not have the disk, contact your system administrator or computer manufacturer for assistance

    Situation: 0xc0000225

    Info: An unexpected error has occurred

    ----------------------------------
    I have a HP Envy laptop without cd rom. Please let me know how to solve this problem. I don't have a recovery boot disk,

    Hello

    You can find your page notebooks driver for Windows 7 64 bit on this link.

    http://h10025.www1.HP.com/ewfrf/wc/softwareCategory?OS=4063 & LC = on & CC = US & DLC = in & sw_lang = & Product = 5273121

    Note:  The Beats audio interface is installed by the IDT HD Audio software.

    Kind regards

    DP - K

  • Equium A200-1VO - what could be done to improve the situation of power supply?

    I recently bought an Equium A200 1VO as one second laptop - my other (an Aspire) is excellent, but a bit heavy in the basket to autour. Anyway, it seemed fabulous value and has worked very well so far - but I just discovered a catch today, the low battery life. I understand that this gap is shared with most of the other laptops of a comparable weight.

    In any case, I wonder what could possibly be done about (I often use my laptop while on the move, in locations without power outlet available, and less than 1 hour of power is very restrictive (I know powersave and others)-especially compared to my other laptop which is about 3 hours on battery)?

    Is there a portable power charger (the type with which you can load to the top of their rechargeable batteries on the sector, then take them and be able to charge mobile phones, iPods, etc. several times without needing an external power supply), as the Proporta one, who could charge a laptop as well (well, this laptop)? And how about the 9 cell Li-ion battery that sell Toshiba (or for that matter, one 6 cells)?

    How long will pretty much those give me? Are there other types of batteries that can be purchased for an extra life?

    Any suggestions on how I could get more autonomy would be most appreciated.

    Hi guys

    > what could be done to improve the situation of power supply
    You could buy a stronger battery which delivers more power for a long time
    You should take a look at the value of mA; more better ;)

    Also please don t forget that the Vista operating system needs more power as an early OS like XP.
    Vista needs more power because it wastes more computing resources.
    I read that a same notebook would run 2 times longer on battery with preinstalled W2K or XP.

  • Degree of accuracy is to find the locations of friends?  If the location of a person is updated, the situation might be wrong or delay?

    Degree of accuracy is to find the locations of friends?  If the premises of a person is updated on my phone, could be wrong or delay of an hour or two?

    It is as accurate as the location information that becomes their phone. And which can vary wildly. GPS signals are subject to an intervention by buildings, trees, weather. The phone can get information about the location of a WiFi network that is inaccurate. Find My Friends is certainly not specific enough to be invoked in situations of life and death. Nor should it be used as "evidence" that children or spouses are lying to you.

  • I got in trouble for awhile with my situation AppleID

    Help please I have, have, in the summer, challenges, for, one, while, with my Apple ID, situation, I have, h ave, had recently, a, STROKE, so my memory is, turned and, my, computer science, skills, are screwed., I, was, able to reset, my, Apple, ID, for, my, phone and Mac, but, my, wife, iPhone, is, always, connected to, him, acct , which had, my, e mail, associated, when I, try, to, upd ate, all, him, Sami, on, sound, phone, she, associated, with, the, old, Emil, so I have, cannot, cha nge and, update it, telephone support and tech is useless because I can't do the problem through them you are probably reading. Can anyone who has some patient and a few minutes to help me.

    for reference > Apple ID - Apple Support

    1. Go here > https://appleid.apple.com/account/manage
    2. account login to your wife with his current credentials
    3. change the main email address to one she wants
    4. [Save]

    That should do the trick - let us know if not happy

    CCC

  • C410a all in OnePrinter: what is error Situation Code 12522209

    The charge of computer software was successful. When you set up the printer, error Situation Code 12522209 came and still can not print or use other functions of the printer. What does the acronym for the Code number.

    Winfro

    Hey @winfro,

    Welcome to the Forums of HP Support!

    I see that you see an error code associated with your Photosmart Premium Fax e-all-in-one printer. I can help you with that, but I'll need some information first. Please let me know where you see this code. Once I know that I will be better able to help you.

  • best way to handle this situation of producer-consumer

    It is, I know a common thing, however, I never really thought about before. I can't post my VI so a description will have to do. It goes without saying, but again, it's producer-consumer architecture. Let's say you have a generator of signals and all the controls that are in a cluster. A value is changed, an event in the loop producer and you compare the old and new values to determine which button has changed the lights. Cool, all good. While I have the tail a State front reading in my loop prodcuer who is corresponding in my loop of consumer. The State of reading front load all the new values in a cluster that is then introduced into a shift register be accessible from anywhere in my code (see here).

    Now my question is, what would my next state that I have the tail? If I have a single "send commands to the gen GIS", in my loop of consumer I have again to determine the value that has changed in order to know what order to be sent (because the initial determination of what has changed in the loop of the producer). However, if I have an individual for each order state that I want to send, my business structure will get very large, very fast.

    Last option is to have a send order status and just write all the data on the only value of a control change, whether it is new or not (which seems an exaggeration).

    Suggestions please?

    For situations of this kind, I would not send a 'State' to the consumer.  I send a '' command. ''   When the consumer receives a command, it determines if this command is executed immediately, or if he completes the task of process and then manages the new command.

    With the command I send one or the parameters.  For your signal generator parameters would probably be something like a bunch of 'control ID' and 'value '.  Control ID would probably be a typedefed enum and value a DBL.

    What ever you decide, think, plan and document before code you.

    Lynn

  • Remote panels - Situation of the Client crashes

    Hello

    I would like to ask if someone can help me with the following situation.

    I have an application that has several other dialog boxes live and a high level VI this app is accessible by a remote client via remote panels. The highest level VI (contains the menu - structure of loop and event) the customer selects what he wants to run. Then, the front of his choice opens on his computer. Everything works ok.

    However, if the client computer suddenly loses internet connectivity, then the runtime indicate a crash of the plugin in the browser.

    On server side, all open applications appear to freeze. I can disable them one by one and then stop everything and try again.

    Could someone let me know how to address this issue? I wish that the customer, in the case where an accident occurs, to be able to reconnect to the application.

    Thank you and have a nice day.

    Hello

    Thank you to attach screenshots.

    The reason why you get this error is that you try to close a connection that is already closed by the server. You can add a simple error handler after your block of proximity with the Client , who must take care of the pop-up. There is possibility to ignore this error (or other). This knowledge base article does a great job explaining how.

    Please let me know if that answers your question.

  • When you type, the cursor jumps around. How can I correct this situation?

    When you type, the cursor jumps around.  How can I correct this situation?

    It is a very common problem when users become familiar with a new laptop. Either your palm/wrist/cuff/bracelet is touching the touchpad as you type or the touch pad sensitivity is set too high and reacts to strong strikes.
    • Someone to watch you while you type to see if you accidentally touch touchpad of the notebook.
    • Go to the control panel mouse configuration and reduce the sensitivity of the touchpad.
    • Make sure you use the latest version of the driver from the manufacturer of the laptop for the touchpad and update if a new becomes available.
    • Disable the touchpad entirely in favor of a wireless laptop mouse.
    As noted previously, this is a very common problem and users are usually completely unaware they do even when it is pointed out to them.
  • Network adapter (device Bluetooth (Personal Area Network) and Btooth works does not after installing W 7 Ultimate__ (Situation Reported to microsoft Hel and Support under SRX1120597135ID Without solution untill today))

    BTooth works do not after Windows Vista upgrade (Btooth works without problems) for W7
    At the moment I have problems connection BlackBerry device and other devices via Btooth
    messages 1: 'softwarfe device driver was not successfully installed ".
    message 2: "WIDDCOMM Bluetooth Software 6.1.04403 Dell Incompatible" (WIDCOMM = Broadband - manufacturer)
    In short, the list obtained messages:
    1 device driver software was not compatible
    2. incompatible software Bluetooth
    3. the drivers are not installed: lists of codes (31) (28) (10)

    Report of the final situation for Microsoft Help and Support under SRX1120597135ID (withoutany positive response so far, I have been asked to report through this forum, I hope a solution will be here)
    I tried all the options you will find in google without success.

    I contacted Dell and Bradband and I have upgraded to WIDCOMM Bluetooth Software 6.2.0.6600 available in Dell Support without positive results.

    Repost: Windows Update has nothing to do with the upgrade of Windows. Posting here instead: http://social.answers.microsoft.com/Forums/en-US/w7hardware/threads ~ Robear Dyer (PA Bear) ~ MS MVP (that is to say, mail, security, Windows & Update Services) since 2002 ~ WARNING: MS MVPs represent or work for Microsoft

  • try to disable the mode of start-up situation safe

    Why can't I undo or remove mode safe mode Office? now can not download any microsoft security? I just installed Windows XP a week ago. is this situation that is affecting. This will affect any upgrade

    Hi Russell,

    This is not specifically a MSE problem, although MSE is affected by the problem.  The problem has to do with your operating system or systems.  You did install a dual-boot scenario or is XP the only OS installed?  I don't know what you were doing, or even what you have on your system.  I can't answer if the XP installation is the cause, but if this started after that you did, it seems very likely.  I have no idea how this will affect the upgrade because I don't know what you want to upgrade or you want to upgrade to.  In any case, this is the wrong forum for this type of question.

    Please repost to http://answers.microsoft.com/en-us/windows/forum/windows_install?page=1&tab=all and try to provide the details I mentioned above as well as your message when you re-post here so they can start to help you more quickly.

    Good luck!

Maybe you are looking for

  • 10.7.5 upgrade to osx

    I have a 20-inch, mid 2007 Processor 2 GHz Intel Core 2 Duo Memory 4 GB 667 MHz DDR2 SDRAM Software  Mac OS X Lion 10.7.5 (11G 63) 80 GB available. I can update without problems? Laura

  • Is FPGA Auto - supported reset?

    Hello Is it possible for an R series FPGA (7841) to do an automatic reset? The reason why I ask, is I want to do a FPGA reset in case the host application needs to crash unexpectedly. The host must send a "heartbeat" from time to time, and if the FPG

  • Connection router wireless E2500 problem

    I just bought this router and can't connect to my old HP Pavilion a1250n PC I currently use a wireless broadband card to access the Internet Directions tell me to connect the router to my modem.  I have no external modem.  Should I get one?

  • My Dell 926 printer all-in-one does not print in Vista

    I can't print my printer.... only the last page impressions and stops?

  • Vista Premium still starts in safe mode

    Last week my sons friends close their pc. Since then, the pc starts only in safe mode. I have tried the restore system I.E. usual stuff, disturbances of cd and so on. Is it possible that a setting has been changed? If this is not the case, is there a