Location of execution scripts

Hi all,
I am trying to execute a mapping in OWB. It finishes running with several warnings. The wb_rt_audit table doesn't show any details for this mapping.
Where are the execution scripts stored for the mapping? I need to look at them in detail.
Thanks.

The execution details are in different ALL_RT* tables that are in OWB owner schema.
runt the below query in OWB owner to get the error details :-
SELECT a.execution_audit_id AS audit_id,
       a.execution_name,
       a.return_result AS RESULT,
       a.elapse_time AS seconds,
       a.created_on,
       r.run_status,
       m.execution_audit_id,
       m.message_text,
       e.run_error_message
  FROM all_rt_audit_executions     a,
       all_rt_audit_map_runs       r,
       all_rt_audit_map_run_errors e,
       all_rt_audit_exec_messages m
WHERE a.execution_audit_id = r.execution_audit_id(+)
   AND r.map_run_id = e.map_run_id(+)
   and r.execution_audit_id= m.execution_audit_id(+)
ORDER BY a.execution_audit_id DESC(Mark the Answer as helpful or correct if it is )
Cheers
Nawneet
Edited by: Nawneet on May 14, 2010 9:46 AM

Similar Messages

  • [Solved] How to adjust parameters of an SSIS package in SQL Server when using an SSISDB execution Script (=SP)

    Hello,
    I created a package in Visual Studio Integration Services, where it runs successfully.
    I then deployed it to SQL server 2012. Here to it runs successfully, too.
    Then I changed the script in that I exchanged two variables for two parameters - doing the same thing.
    I noticed that in VS no dialog window comes up where I could change the value of the parameters; here obviously I am expected to set them in Visual Studio.
    However, in SQL Server 2012 the dialog window does come up when I execute the package. I can then change the value of my two parameters and the package runs OK, giving me the expected results.
    Now I created a script in SQL Server from which to execute the package. Do I have to change the script every time when I want it to run with different values for the parameters?
    So far I have not even found how to feed different values for the parameters into the package by using the script. Or could I tell the script somehow to bring up the dialog window for changing the parameters?
    How can I set/change the package parameters by using an SSIS execution script in SQLserver?
    Or how could I bring up the dialog window thru the script?
    Would s.o have an example?
    Help is greatly appreaciated. 
    Thank you
    Andreas

    Hi,
    I found out by myself and leave the answer here should s.b. else wonder about the same issue.
    Look at this:
    Declare
    @var0 sql_variant
    = 1
    Exec
    [SSISDB].[catalog].[set_execution_parameter_value]
    @execution_id,
    @object_type=30,
    @parameter_name='MaxPosition',
    @parameter_value=@var0
    Declare
    @var1 nvarchar
    = 'x'
    Exec
    [SSISDB].[catalog].[set_execution_parameter_value]
    @execution_id,
    @object_type=30,
    @parameter_name='NameContains',
    @parameter_value=@var1
    Now, what is important and was not evident to me is:
    1) The variable you use for the parameters - here var0 and var1 must match in their data type the corresponding parameter used in the package.
    2) The @parameter_name must match the corresponding parameter name in the package.
    3) The value that is being passed to the respective package parameter is the value you specify in the Declare statement. So in my case a string x and an int 1 is used.
    4) Of course the @object_type must be set to 30 for package parameters 
    Then the script runs the package with adjusted parameters.
    To many this might be evident, to me it was not.
    Cheers
    Andi
    Andreas

  • Register and unregister locations using ombplus script

    hi
    how to register and unregister the locations using ombplus scripts.
    any help would be appreciated.
    thanks,
    Keka

    The deployment script I have posted previously to copy a project mdl over to a new repository for local deployment includes creating a control center, making it the default for your project, creating the locations, assigning them to the control center, and registering them.
    Re: importing mappings using OMBPLUS
    To unregister a location, first you want to undeploy anything deployed from it to avoid dangling references int he repository, and then unregister the location.
    I do that in the following drop_project script that we use to delete an old copy of the project before importing the new version.
    #get db connection info
    source c:\\omb\\owb_config.tcl
    #get standard library
    source c:\\omb\\omb_library.tcl
    # PVCS Version Information
    #/* $Workfile:   ers_owb_drop_project.tcl  $ $Revision:   2.1  $ */
    #/* $Author:   michael.broughton  $
    #/* $Date:   03 Apr 2008 13:43:02  $ */
    #  Connect to repos
    # Commit anything from previous work, otherwise OMBDISCONNECT will fail out.
    exec_omb OMBCOMMIT
    # If already connected, disconnect first.
    set print [exec_omb OMBDISCONNECT]
      # Test if message is "OMB01001: Not connected to repository." or "Disconnected."
      # any other message is a showstopper!
    if [string match Disconn* $print ]  {
       log_msg LOG "Success Disconnecting from previous repository...."
    } else {
       # We expect an OMB01001 error for trying to disconnect when not connected
       if [string match OMB01001* $print ] {
          log_msg LOG "Disconnect unneccessary. Not currently connected...."
       } else {
          log_msg ERROR "Error Disconnecting from previous repository....Exiting process."
          log_msg ERROR "$print"
          #exit
    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] {
        log_msg ERROR "Unable to connect to repository."
        log_msg ERROR "$print" "1"
        log_msg ERROR "Exiting Script.............."
        return
    } else {
        log_msg LOG "Connected to Repository"   
    return
    # Connect to project
    set print [exec_omb OMBCC '$PROJECT_TO_DROP_NAME']
    if [omb_error $print] {
       log_msg LOG "Project $PROJECT_TO_DROP_NAME does not exist. No Cleanup Required...."
       exec_omb OMBDISCONNECT CONTROL_CENTER
       exec_omb OMBDISCONNECT
       return
    } else {
       log_msg LOG "Verified project $PROJECT_TO_DROP_NAME exists"
       exec_omb OMBCC '..'
    # Exporting MDL Backup of Project
    set print [exec_omb OMBEXPORT TO MDL_FILE '$EXPORT_FILE_PATH/$EXPORT_FILE_NAME' FROM PROJECT NAMES '$PROJECT_TO_DROP_NAME' OUTPUT LOG TO '$EXPORT_LOG_PATH/$EXPORT_LOG_NAME' ]
    if [omb_error $print] {
       #We expect to get warnings due to differences in Control center names etc,
       if {[string match OMB05105* $print]} {
          log_msg LOG "MDL File $EXPORT_FILE_NAME exported with warnings"
       } else {
           log_msg ERROR "Unable to import $EXPORT_FILE_PATH/$EXPORT_FILE_NAME. "
           log_msg ERROR "$print"
           log_msg ERROR "Exiting Script.............."
           exec_omb OMBROLLBACK
           return
    } else {
       log_msg LOG "MDL File $EXPORT_FILE_NAME exported with no warnings.............."
    exec_omb OMBCOMMIT
    # Validate to Control Center
    set lst [OMBLIST CONTROL_CENTERS]
    if [string match *$CONTROL_CENTER_NAME* lst] {
       log_msg LOG "Verify Control Center $CONTROL_CENTER_NAME Exists."
       log_msg LOG "Setting Passwords to enable de-registration"
       log_msg LOG "Connecting to Control Center $CONTROL_CENTER_NAME"
       set print [exec_omb OMBCONNECT CONTROL_CENTER USE '$DATA_LOCATION_PASS' ]
       if [omb_error $print] {
          log_msg ERROR "Unable to connect to Control Center $CONTROL_CENTER_NAME"
          log_msg ERROR "$print"
          log_msg ERROR "Exiting Script.............."
          exec_omb OMBROLLBACK
          return
       exec_omb OMBCOMMIT
       log_msg LOG "Deleting Existing Mappings."
       set print [exec_omb OMBALTER LOCATION '$DATA_LOCATION_NAME' SET PROPERTIES (PASSWORD) VALUES ('$DATA_LOCATION_PASS')]
       exec_omb OMBCOMMIT
       exec_omb OMBCC '$ORA_MODULE_NAME'
       set mapList [ OMBLIST MAPPINGS ]
       foreach mapName $mapList {
          log_msg LOG "Un-Deploying: $mapName"
          set print [ exec_omb OMBCREATE TRANSIENT DEPLOYMENT_ACTION_PLAN 'DEPLOY_PLAN' ADD ACTION 'MAPPING_DEPLOY' SET PROPERTIES (OPERATION) VALUES ('DROP') SET REFERENCE MAPPING '$mapName' ]
          if [omb_error $print] {
             exit_failure "Unable to create Deployment plan for '$mapName'"
          set print [ exec_omb OMBDEPLOY DEPLOYMENT_ACTION_PLAN 'DEPLOY_PLAN' ]
          if [omb_error $print] {
             exit_failure "Error on execute of Deployment plan for '$mapName'"
          exec_omb OMBDROP DEPLOYMENT_ACTION_PLAN 'DEPLOY_PLAN'
          exec_omb OMBCOMMIT
      exec_omb OMBCC '..'
      exec_omb OMBCC '..'
       log_msg LOG "Un-Registering Code Location."
       set print [exec_omb OMBUNREGISTER LOCATION '$DATA_LOCATION_NAME']
       if [omb_error $print] {
          log_msg ERROR "Unable to register Location $DATA_LOCATION_NAME"
          log_msg ERROR "$print"
          log_msg ERROR "Exiting Script.............."
          exec_omb OMBROLLBACK
          return
       exec_omb OMBCOMMIT
    } else {
       log_msg LOG "Control Center $CONTROL_CENTER_NAME does not exist - unable to de-register locations."
    # Dropping project
    exec_omb OMBDISCONNECT CONTROL_CENTER
    log_msg LOG "Renaming project $PROJECT_TO_DROP_NAME to $PROJECT_TO_DROP_NEWNAME ...."
    set print [exec_omb OMBALTER PROJECT '$PROJECT_TO_DROP_NAME' RENAME TO '$PROJECT_TO_DROP_NEWNAME']
    if [omb_error $print] {
       log_msg LOG "Failed to drop project $PROJECT_TO_DROP_NAME...."
       log_msg ERROR "$print"
       log_msg ERROR "Exiting Script.............."
    exec_omb OMBDISCONNECTThis script uses the same config and library file given in the other post that I pointed you towards. That is where you will find the definition for exec_omb, for example which is simply a wrapper for OMB+ calls
    Now, note that I don't un-deploy any tables, views, sequences etc. We use Designer as our location of record for the data model metadata so our OWB project never deploys any object metadata except for mappings. Your setup may be different, still this should point you in the right direction.
    Cheers,
    Mike

  • Getting Report File Path location at execution in TestStand 2012 and later

    I need to include PNG pictures into my TestStand Report (HTML, XML, ATML).
    When report generation was made through plugins (before TestStand 2012), it was easy to get report file location during execution through variable RunState.Root.Locals.ReportFilePath in order to save PNG files near the report file (in same directory).
    I didn't find yet an easy an simple way to do the same in TestStand 2012 with Result Processing Plugins.
    Any idea ?
    Remarks :
    Since this functionnality has to be included within MESULOG TS+ last version which is a TestStand Add-on, I cannot modify Report Options, Process Model or include a callback (like GetReportFilePath.
    In need ReportFilePath within a Custom Step Type which cannot wait for PostUUT or ReportGeneration to save its PNG files.
    Jean-Louis SCHRICKE
    ├ CTA - Certified TestStand Architect (2008 & 2010 & 2014)
    ├ CTD - Certified TestStand Developer (2004 & 2007)
    └ CLD - Certified LabVIEW Developer (2003 & 2005)

    jiggawax,
    Thank you for you quick answer.
    RunState.Root.Locals.ModelPluginConfiguration.Plug​ins[<plugin index>].PluginSpecific.Options.Directory is valid only if  
    RunState.Root.Locals.ModelPluginConfiguration.Plug​ins[<plugin index>].PluginSpecific.Options.DirectoryType is set to "SpecificDirectory".
    It seems that I cannot get the complete ReportFilePath before "UUT Done" plugin entry which is after MainSequence execution.
    Jean-Louis SCHRICKE
    ├ CTA - Certified TestStand Architect (2008 & 2010 & 2014)
    ├ CTD - Certified TestStand Developer (2004 & 2007)
    └ CLD - Certified LabVIEW Developer (2003 & 2005)

  • Is there a way to generate job execution scripts from the command line?

    The customer is planning to change DI production server configuraiton and needs to regenerate job execution scripts for hundreds of jobs. Their question is - instead of going through web admin and doing it one by one, is there a way to run a batch command and generate all jobs with the same job server information from one repository? I looked at the "al_engine" command but didn't find the options to do so. Did I miss something? This is for a DI 11.5.3 on HPUX.
    Thanks,
    Larry

    I also suggested that but the customer was so afraid of messing things up that they wanted to find out if there is another way. Thanks a lot for the confirmation.
    Larry

  • Change "Location" with a script?

    Dear all,
    I am working in two different (network) environments and need to change both network settings (proxy, ...) and also computer settings (CUPS server) and some environment variables depending on my physical location. For the latter two I have a little bash script that does that conveniently.
    But changing the network always requires a few clicks extra... I was wondering if it was possible to change the network environment ("Location" in the Apple menu) by a script (I tried with AppleScript and Automator but didn't find anything) or to run a script automatically whenever I change the Location. This way I would only have to run either the script or change the Location to adjust all settings.
    Can anyone help me here?
    Thanks a lot,
    Leonard

    Hi Pierre,
    Thank you. Your point number 3 was the solution. (I actually wanted to mark your message as "solved"... Now I have marked the question as "answered").
    While this works, ideally I would like to have one script that does both the changes to the shell (for this I already have a shell script) and the changes to Mac OS.
    On http://developer.apple.com/Mac/library/documentation/AppleScript/Conceptual/Appl eScriptX/Concepts/workwithas.html I found a way to call an AppleScript from the shell (using the #!/usr/bin/osascript interpreter) -- but if I run the script you sent I get
    142:166: execution error: No user interaction allowed. (-1713)
    In fact I would prefer the script to run without user interaction, i.e. to just put in the name of the location that I want to switch to and not display a selection box. I would then just create two or three scripts for my most frequently used locations. I tried a few variants but I didn't manage to set 'R' which is probably the variable containing the new location to a fixed value. Could I ask you again for help with this?
    Thanks again,
    Leonard

  • Table location for execution date field oobservation search screen

    Hello
    I am trying to find the table and field for he execution start date that is located on the observation search screen. I have been doing searches thru Google and SDN and I cannot seem to located this field. I also am trying to match this data against the tables and the only thing that I can find is the DM_ACTION table and none of those records has the date that matches what is on the screen
    thanks

    does anyone have any info on this?
    thanks

  • Network location and apple script

    Hi,
    I have a strange problem... When I try to use this AppleScript to change network location in Leopard, nothing happens:
    tell application "System Events"
    tell network preferences
    get properties
    --> returns: {current location:location id "51BD3FB7-50D1-4859-9649-9138E7FF1ECA" of network preferences, class:network preferences object}
    get the name of every location
    --> returns: {"Automatic", "Sprint Card"}
    set current location to location "Automatic"
    end tell
    end tell
    This is copy-pasted from <http://www.apple.com/applescript/features/system-prefs.html>. I have 3 locations set: home, office and Automatic. I'm currently using home, and this script just silently fails to set the location to Automatic... Any thoughts/hints?

    That works, thanks!
    I'm still wondering why "pure" AppleScript solution proposed by Apple is not working?

  • Location of InDesign scripts

    I'm trying to find the moved location of the InDesign zip archive of the scripts shown in the InDesign_ScriptingGuide_JS.pdf.
    Adobe lists this link in the pdf as
    http://www.adobe.com/products/indesign/scripting/index.html.
    but it just takes you to their InDesgin CC page.
    Thanks

    Try going down the page and in one of the side list is a link
    Resources
    Adobe Exchange
    Adobe Configurator
    Developer Center
    Automating InDesign
    Custom editorial publishing solutions
    Creative Suite Printing Guide
    Print production
    Click on the Automating InDesign and then the Scripting Resources.

  • How to copy a folder from TFS source control to Shared location with Powershell script

    Hi,
    I'm looking for a Powershell script where i could copy a folder from TFS Source control to a shared location.
    Details:
    $TeamProject/FolderA - here i want to move FolderA to a shared location called \\Share
    Tried with xcopy: xcopy "$TeamProject/FolderA" "\\Share" ( but no luck, later i found it's only possible to copy files from local to share or share to share location, not from server path to shared location.
    Can someone help me with the power-shell script to achieve above scenario.
    Thanks, BHSR

    Hope the below script works for your scenario. Got the code from http://stackoverflow.com/questions/23739499/copy-files-from-tfs-versioncontrol-to-directory-with-powershell
    $AutoDeployDir = "$\TeamProject/FolderA"
    $deployDirectory = "\\SERVER\SHAREFOLDER\"
    # Add TFS 2013 dlls so we can download some files
    [void][System.Reflection.Assembly]::LoadWithPartialName("Microsoft.TeamFoundation.Client")
    [void][System.Reflection.Assembly]::LoadWithPartialName("Microsoft.TeamFoundation.VersionControl.Client")
    $tfsCollectionUrl = "http://CDTFSSERVER:8080/tfs/ProjectCollection"
    $tfsCollection = New-Object -TypeName Microsoft.TeamFoundation.Client.TfsTeamProjectCollection -ArgumentList $tfsCollectionUrl
    $tfsVersionControl = $tfsCollection.GetService([Microsoft.TeamFoundation.VersionControl.Client.VersionControlServer])
    # Register PowerShell commands
    Add-PSSnapin Microsoft.TeamFoundation.PowerShell
    # Get all directories and files in the AutoDeploy directory
    $items = Get-TfsChildItem $AutoDeployDir -Recurse -Server $tfsCollection
    # Download each item to a specific destination
    foreach ($item in $items) {
    # Serverpath of the item
    Write-Host "TFS item to download:" $($item.ServerItem) -ForegroundColor Blue
    $destinationPath = $item.ServerItem.Replace($AutoDeployDir, $deployDirectory)
    Write-Host "Download to" $([IO.Path]::GetFullPath($destinationPath)) -ForegroundColor Blue
    if ($item.ItemType -eq "Folder") {
    New-Item $([IO.Path]::GetFullPath($destinationPath)) -ItemType Directory -Force
    else {
    # Download the file (not folder) to destination directory
    $tfsVersionControl.DownloadFile($item.ServerItem, $([IO.Path]::GetFullPath($destinationPath)))
    Regards, Bharath
    LinkedIn:

  • Execution script too much time than before

    Hi experts,
    We run tunning script on daily basis which analyze multiple table of oracle ebs 11i oracle 10g and we also have execute schema statistics,
    Issue is this it take too much time to complete some time more than 12 hrs. It looks like hang on gathereing statistics Inv and ont schema.
    Kindly give me solution
    e.g
    analyze table inv.mtl_transaction_types compute statistics;
    analyze table wip.wip_schedule_groups compute statistics;
    analyze table WSH.WSH_DELIVERY_DETAILS compute statistics;
    exec DBMS_STATS.GATHER_SCHEMA_STATS('APPS'); ---APPS, APPLSYS, INV,ONT,WSH, SYS, SYSTEM, GL,HR,AR,AP,CE,WIP,
    ---PO,MSC,PJI
    exec DBMS_STATS.GATHER_SCHEMA_STATS('APPLSYS');
    exec DBMS_STATS.GATHER_SCHEMA_STATS('INV');
    exec DBMS_STATS.GATHER_SCHEMA_STATS('ONT');
    exec DBMS_STATS.GATHER_SCHEMA_STATS('WSH');
    Now its taking more than 15 minut and not yet complete.
    Thanks

    but to gather statisics for some schema it takes too much time. First it take 3 hrs for whole script now it is taking more than 15 hrs and some scheam go to
    complete and some are still hang then we have to cancel this job.
    I also experiment to execute one by one schema at that time it is completed normally.Have you done any changes recently (i.e. upgrade, installed new patches, data load ..etc)?
    Have you tried to use different parameters? -- Definition of Parameters Used in Gather Schema Statistics Program [ID 556466.1]
    You could enable trace and generate the TKPROF file to find out why it takes that long to gather schema statistics.
    FAQ: Common Tracing Techniques within the Oracle Applications 11i/R12 [ID 296559.1]
    Enabling Concurrent Program Traces [ID 123222.1]
    How To Get Level 12 Trace And FND Debug File For Concurrent Programs [ID 726039.1]
    I would also suggest you log a SR as "Gather Schema Statistics" is a seeded concurrent program and Oracle Support should be able to help.
    Thanks,
    Hussein

  • Mac file location of InDesign Scripts

    Hi quick question.
    I do not own a mac and thus anyone with one would be able to answer this quite easily.
    I have a .jsx (javascript) file which I would like to run.
    If simply copy it into the preset folder will it show up in the scripts palette? as on a PC?
    Can someone tell me the default directory of the MAC preset folder for indesign cs2/cs3?
    (I know the PC one for CS3 is C:\Program Files\Adobe\Adobe InDesign CS3\Scripts\Scripts Panel)
    Thanks in advance.
    Joel

    You might want to ask in the InDesign forum.
    -X
    for photoshop scripting solutions of all sorts
    contact: [email protected]

  • Locating a post script printer

    Hi all,
    Its my understanding that MacBook Pro with Mountain Lion have a post script printer loaded up. When I try to select this printer, I do not see it. How can I find it? If there is not one built in, what is a good driver to get?
    Thanks!

    Apple does not make printers as far as I know, you must choose a printer that fits your needs, then download the drivers from the manufacturers site.
    I think they refer to them as "air printers"

  • How can I modify Recorded (in MTM) UI tests? Can I modify execution script

    Hi,
    Introduction:
    I have some TestCases in Microsoft Test Manager. I Record the acrions for some test (Test tab > Run test). And Save it (I can re run this test and it do all actions automatically)
    Now I want to edit actions associated with Steps. Add checks, refactor them. How Can I do this? In result I need to Open this TestCase Run all its Steps and they should executes using my changes and set result of Steps accordance my checks.
    P.S. I know that I can create CodedUI tests from this recordings and change everithings I want but How can I associate this testwith TestCase. Mean Run this TestCase in MTM and see my changes maden in CodedUI Test?
    Maybe someone know the place where MTM stores his recordings for TestCases?
    The Critical whant is to have ability to change coed which associated with Steps in MTM in any way
    Thanks

    Hi Roman,
    As far as I know, we can’t edit the actions of steps in the MTM, we just can delete the action in the test runner during recording.
    As you said that we could modify it through the Coded UI test, for this way, we can associate the modified Coded UI test to the test case and do automated test, we can’t associate it with test case’s steps.
    # Associate an Automated Test with a Test Case
    https://msdn.microsoft.com/en-us/library/dd380741(v=vs.110).aspx
    The recorded actions are stored in TFS database, I don’t think it is easy or good to modify the database directly.
    I suggest that you could recode the actions again or do automated test.
    Regards
    Starain
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Is it possible to change the Presets Scripts Folder Location?

    Hi,
    I work with Photoshop on a daily basis for my job, but my company has the C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Presets\Scripts folder admin-locked (due to it's location in the Program Files folder. I've already asked IT, but they told me that they are unfortunately unable to give me access to that folder because my user profile can't be given admin-rights (due to company policy). I'd really like to change the location of the scripts folder so that I can add some scripts of my own to be able to use in Photoshop.
    Is this possible or is there any sort of workaround?
    Thank you all in advance!

    You can always use browse to go to a different location - I know it's not ideal, but it does tend to remember that folder once you navigate to it.  I would push your IT people about getting you access to that folder.  I also work in for a company that severely limits access to program files, but I made my case that I need to have access to the Photoshop subfolders to do my job.  They should be able to grant you access to just that folder.

Maybe you are looking for

  • When I right click, a document is visible, but won't open

    When I right click on the Numbers icon, I can see recent documents.  However, when I click on the document I'm trying to open, the document does not open.  The document also does not show up in a spotlight search.  What's happening?

  • Send multiple records in Email

    I use BPEL 11g to send an email notification, I retrieve the data from a table which returns multiple records to the db adapter. I have to send all the records in the Email body. How do I do this ? The following is the payload I see, But I dont see a

  • Filter for Generic document Search

    Hi experts , i need a filter in the generic document search of by B2B internet sales shop. The user should be only allowed to find documents starting with "xy" in the reference numbers. I know that I simply have to edit the generic-searchbackend.xml,

  • My SIM card got stuck in the iPhone 5c SIM slot but without the tray how will i get it out

    My SIM card got stuck in the iPhone 5c SIM slot but without the tray how will i get it out

  • Adding 2 more monitors to HP p7 1435 pc

    I want to run a third monitor on my HP Pavillion p7 1435 desktop computer. When I hook the third one up using a USB Video adapter...it shows that its there but unable to get it to function at all