Tsql script execution error

Hello All,
             I struct with the following script from many days can you please anybody check/rectify this script please.In the below script @columnNavigator1 pulls columns from the table .I am confused where my declaration
of comma is gone wrong.
set @columns1 = @columns1 + '''''' + @columnNavigator1 + ''''':'''''' + convert(varchar, right('+ @columnNavigator1 + ',charindex('.',reverse('+ @columnNavigator1 +'))-1)) '''''''

Tip: How to write complex concatenation of texts which use lots of apostrophe
1. Write the final text which you want to get in Notepad. For example:
this 'is' 'what' 'i' 'want' 'to' get using this @var 'as' variable
Do not enclose the text in quotation marks yet!
2. using the notepad replace each apostrophe ' with double apostrophe ''
this ''is'' ''what'' ''i'' ''want'' ''to'' get using this @var ''as'' variable
3. close with one apostrophe ' and + sign before each variable
this ''is'' ''what'' ''i'' ''want'' ''to'' get using this '+ @var ''as'' variable
4. close after each variable with a plus sign and apostrophe '+
this ''is'' ''what'' ''i'' ''want'' ''to'' get using this '+ @var +' ''as'' variable
5. Enclose the text in apostrophe marks (before and after), and you are ready to go
'this ''is'' ''what'' ''i'' ''want'' ''to'' get using this '+ @var +' ''as'' variable'
[Personal Site] [Blog] [Facebook]

Similar Messages

  • Custom script execution error

    Hello,
    Iam trying to execute a custom logc script through DM and get the below error
    "RUN_LOGIC:Cannot find document/directory"
    I checked UJFS and the script file is in \ROOT\WEBFOLDERS\<Appset>\ADMINAPP\<Application name>\
    Let me know if i need to do anything else.

    Hello,
    Can you please check transaction SLG1 to see if there is a more detailed description?
    Check also lower/upper caps in your logic file name - it looks like BPC doesn't convert those.
    Finally you can check DB table UJF_DOC for a record with APPSET = <APPSET ID>, DOCNAME = \ROOT\WEBFOLDERS\<Appset>\ADMINAPP\<Application name>\*.
    Regards,
    Gersh

  • CS2: Internal script execution error

    Hi,
    My Illustrator v12.0.0.5 send this error message every time when I'd like to run any VBScript. Any means not just my code but the original samples also. The JavaScript engine is working fine.
    Has anybody a good idea what can I do?
    The reinstall at this time is not the preferred way... Only there's no other way.
    Thanks in advance,
    Tom

    Ah, I'v caught that...
    The problem was the localization (because unfortunately I have a localized Illustrator CS2). The lovely translator translated the folder names in the filesystem but leaved them untouched in the registry entry of TypeLib...
    I fixed that and now it's working fine.
    Regards,
    Tom

  • Test Script execution failed.

    I'm getting the Test Script Execution Error - "Test Script execution failed. Reason: The system cannot find the file specifiied"
    This is happening to all my test script files. I can load the test script files, edit the test cases, etc, but cannot execute the test scripts
    If I click on View Test Script Specification, they all come up, and the report shows all the cases in the test script.
    If I look into the directory, they are all there, with the .tsc extension and a file type of TSC
    I created a new TSC this morning, but with the same results
    They were working yesterday. Since then, I did rename one of the test scripts, and changed my build platform from .NET to Java.
    Any thoughts?
    Thanks,
    Allan Gibson
    P.S. I also now note the my what-if analysis files do not run, and are getting a message: run time error '-2146233088 (80131500)': Batch process has failed. Reason: the system cannot find the file specified (OPA-E00241). When I press the debug button, I'm taken to a screen where the line "Call GetExcelCompilerProxy() .Analyze(ActiveWorkbood)" is highlighted in yellow.
    Edited by: A Gibson on 11-Sep-2012 9:02 AM
    Edited by: A Gibson on 11-Sep-2012 9:09 AM

    Hey Allan,
    It looks like it either can't find the Java component it needs to run or the test script for some reason. If you look in the bin directory of the OPM install (which is normally something like c:\program files\Oracle\Policy Modeling\bin) do you see a file called determinations-remote-clr.jar? If not it sounds like something's gone wrong with your install.
    If so, can you run the test script in the standalone debugger? Also, if you look at the absolute path of your test script file, does it contain any non-ascii characters? If so, try removing those characters and see if it works.
    Thanks,
    Kristy

  • Error with dbms_scheduler and shell script execution

    Hi,guys.
    I have an issue with a dbms_scheduler and a shell script execution. So, the shell script as it self works fine, when i'm executing ./test.sh all process is running, but when i'm executing the script from dbms_scheduler it just simply doesn't work. Actually it works, but some of executable information in sh doesn't work, seems it just jump over of the part of the script. Sendmail part is running, maybe there is problem with rman script as it self?
    DB version: 10g
    And my scripts:
    Shell scripts (permisons 755):
    #!/bin/ksh
    export PATH=/home/oracle/product/asm_home/bin:/home/oracle/product/db_home/bin:/usr/bin:/etc:/usr/sbin:/usr/ucb:/home/oracle/bin:/usr/bin/X11:/sbin:.
    export ORACLE_BASE=/home/oracle/product
    export ORACLE_SID=zabbix
    export ORACLE_HOME=/home/oracle/product/db_home
    ${ORACLE_HOME}/bin/rman<<EOF
    connect target /
    run {backup recovery area delete all input;}
    EOF
    {       echo "From:[email protected]"
            echo "To: [email protected]"
            echo "Subject: Recovery area"
            echo 'Content-Type: text/html'
            echo
            echo '<html><body><table border="1" cellspacing="1">'
            echo '<tr><td><b>Process</b></td><td><b>Statuss</b></td></tr>'
            echo "<tr><td>RMAN</td><td><b>Works</b></td></tr>"
            echo "</table></body></html>"
    } | sendmail -tIn the first part i'm exporting all of the important stuff for oracle, then I call RMAN with specific atributes. And then there is just simply sendmail functionality inside script to represent if script works (for now).
    And below pl/sql script:
    begin
      DBMS_SCHEDULER.CREATE_JOB
      job_name => 'FLASH_RECOVERY',
      job_type => 'EXECUTABLE',
      job_action => '/home/oracle/backup/test.sh',
      start_date => sysdate,
      job_class => 'DEFAULT_JOB_CLASS',
      enabled => TRUE,
      auto_drop => FALSE,
      comments => 'FLASH RECOVERY USAGE AREA backup and delete'
      END;
      /And this job execution:
           begin
               DBMS_SCHEDULER.run_job (job_name =>'FLASH_RECOVERY',use_current_session => TRUE);
           end;What can be wrong? For me, I think it's something with permisions.
    I hope you got my idea and could help me.
    Tom
    Edited by: safazaurs on 2013.18.2 22:16

    There is no error, i just receive all the time e-mail, seems it jumps over rman. I tried almost everything and still couldn't get result as i want. And, if i'm running script from command line - it works. Rman calls, and starts to recover archivelogs.

  • Error when using FTP in iWeb 09! "Error 500: Script Execution Failure"

    I have my domain through 123-reg and I have free hosting with host-ed.net when I add a simple index.html file my website works fine displaying the 1 line of text that I asked for, so it is all configured correctly.
    How ever when I use the FTP upload thought iWeb '09 I always get "Error 500: Script Execution Failure"
    www.breslan.co.uk
    Anyone know why?

    I have logged into my hosting and changed the permissions to '755' and move the files from the folder iweb used to the root of the site i know get "Parse error: syntax error, unexpected T_STRING in /~/www/breslan.co.uk/index.html on line 1" there is only 1 line of code in index.html and that is
    <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title></title><meta http-equiv="refresh" content="0;url= Welcome.html" /></head><body></body></html>
    please help!

  • Iterating/Executing TSQL-Scripts in Subfolders throws an error

    Hi Forum,
    the idea: I have several subfolders containing tsql-scripts. I want to change into a folder and execute every script - sorted by name (important because of dependencies).
    I have an array with Subfolder names, I build on fly an array wiht script names inside of every subfolder, I'm reading the content of a tsql-file (sentence by sentence), I'm paying attention for a "go" statement and then execute the command.
    When the first script doesn't end with a "go" statement, I'll get an error executing the first line of the second script.
    I don't know where to set my command-variable to $null or to blank (" ").
    For example the first script is:
    DECLARE @CMD varchar(500)
    SET @CMD = 'EXEC sp_configure ''show advanced option'', ''1'';
    reconfigure with override
    EXEC sp_configure ''xp_cmdshell'',''1''
    reconfigure with override'
    print @CMD
    EXEC (@CMD)
    ..and the second begins with:
    sp_configure 'allow updates','1'
    go
    reconfigure with override
    GO
    then I get an error:
    DECLARE @CMD varchar(500)
    SET @CMD = 'EXEC sp_configure ''show advanced option'', ''1'';
           reconfigure with override
                EXEC sp_configure ''xp_cmdshell'',''1''
                reconfigure with override'
    print @CMD
    EXEC (@CMD)
    sp_configure 'allow updates','1'
    Exception calling "ExecuteScalar" with "0" argument(s): "Incorrect syntax near 'allow updates'."
    At L:\SQL-INSTALL\Install_AdminDB.ps1:42 char:50
    +                         $SQLCommand.ExecuteScalar <<<< ()
        + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
        + FullyQualifiedErrorId : DotNetMethodException
    My PSScript looks like that:
    param(
    #$ServerName
    [parameter(Mandatory=$true,
    HelpMessage="SQLServer-Name?",Position=0)]
    [String]
    [ValidateNotNullOrEmpty()]
    $ServerName = $(throw "sqlserver parameter is required.")
    $Paths = "DEV_1", "DEV_2", "DEV_3"
    [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SqlServer.Smo") | Out-Null
    $objSQLConnection = New-Object System.Data.SqlClient.SqlConnection
    $objSQLConnection.ConnectionString = "Server=$ServerName;Integrated Security=SSPI;"
    $objSQLConnection.Open() #| Out-Null
    foreach($path in $Paths)
    $sqlSkripts = Join-Path ($PWD.Path) $path | dir -Filter "*.sql" | sort-object name
    "sqlSkripts: " + $sqlSkripts
    foreach($sqlSkript in $sqlSkripts)
    $SQLCommandText = @(Get-Content -Path $sqlSkript.FullName)
    "#" * $sqlSkript.FullName.Length | Out-File -FilePath ($PWD.Path + "\SQLProtokoll.txt") -Append
    $sqlSkript.FullName | Out-File -FilePath ($PWD.Path + "\SQLProtokoll.txt") -Append
    "#" * $sqlSkript.FullName.Length | Out-File -FilePath ($PWD.Path + "\SQLProtokoll.txt") -Append
    Try
    foreach($SQLString in $SQLCommandText)
    if($SQLString -ne "go")
    $SQLPacket += $SQLString + "`n"
    else
    $IsSQLErr = $false
    try
    $SQLCommand = New-Object System.Data.SqlClient.SqlCommand($SQLPacket, $objSQLConnection)
    $SQLCommand.ExecuteScalar()
    catch
    Write-Host "Error..."
    $IsSQLErr = $true
    "SQLPaket: " + $SQLPacket
    $SQLPacket | Out-File -FilePath ($PWD.Path + "\SQLProtokoll.txt") -Append
    $Error[0] | Out-File -FilePath ($PWD.Path + "\SQLProtokoll.txt") -Append
    $SQLPacket = $null
    $SQLString = ""
    Catch
    $errText = $Error[0].ToString()
    "Error: " + $errText | Out-File -FilePath ($PWD.Path + "\SQLProtokoll.txt") -Append
    continue
    $SQLCommandText = ""
    $objSQLConnection.Close()
    Write-Host "Done!..." -NoNewline
    Thanks for your help
    Purclot

    Hi Purclot,
    How about using a parameter with the cmdlet $SqlCmdQueryPlanGet.Parameters.Add()?
    I found a thread which has the similar issue may be helpful for you to modify the script:
    Handling plan_handle with varbinary data type in PowerShell
    I hope this helps.

  • Error on script execution

    I have just tried to execute the script from this site: http://hax.by/3ds/index.html
    With this script I want to make my own Nintendo Zone with Mac address scwitchig to get the most possible contacts. But everytime I try to execute this script I got an error message.
    This is the error message I get:
    ifconfig: ioctl (SIOCAIFADDR): Invalid argument
    /tmp/internetsharing.scpt:129:183: execution error: System Events got an error: Can’t get menu "View" of menu bar 1 of process "System Preferences". (-1728)
    Now spoofing: <!DOCTYPE
    Sorry for my bad english skills.. I hope someone can help me..

    instead of solution but try to understand why u get that error So start with basics formula
    Simple calc
    Data Cache in K
    ______________ = Number of blocks that can be allocated
    Block Size in K
    The answer will probably be around the number of blocks found in the error message (cannot allocate more than [n] blocks). This number should be compared with the CALCLOCKBLOCKDEFAULT setting. If this setting is 200 and the allocated block number is less than 200, data cache needs to be increased. The recommended size to increase it would be 200 x 2 x blocksize (in K). That way, the cache is sized big enough to hold 200 blocks.
    Which i see CALCLOCKBLOCKDEFAULT setting is 200 in your config file and allocated block number is larger than 200, then change the CALCLOCKBLOCKDEFAULT setting to a higher number like 400 for example. Set this in the essbase.cfg file. Essbase needs to be restarted for those settings to take effect.
    Data Cache needs to be set high enough to hold 400 blocks (to calculate: 400 x 2 x blocksize (in K)).
    If this same error occurs after the above changes once calculation is run , then checks needs to be done to see how many blocks can be allocated from the heap. If it is 400, need to change the CALCLOCKBLOCKDEFAULT setting again to a higher number than 400. This process needs to be repeated till the error message goes away.
    Review your database Block Size. The recommended size is between 8Kb and 100Kb.
    The Block Size is determined by the number of stored members in each dense dimension.
    So bottom line is increase to 400 and see if u get nay error :)
    Make sure Database needs to be restarted in order for the new settings to take effect.

  • TSQL Script to monitor SQL Server transactional and snapshot replication

    Hi Team,
    Could you please let me know do you have any TSQL script to monitor replication(Transactional, Snapshot) with current status ? I have tried below script but it giving error. could you please have a look at the below script or do you have any other new TSQL
    script to monitor the replication status ?
    "Msg 8164, Level 16, State 1, Procedure sp_MSload_tmp_replication_status, Line 80
    An INSERT EXEC statement cannot be nested."
    DECLARE @srvname VARCHAR(100)
    DECLARE @pub_db VARCHAR(100)
    DECLARE @pubname VARCHAR(100)
    CREATE TABLE #replmonitor(status    INT NULL,warning    INT NULL,subscriber    sysname NULL,subscriber_db    sysname NULL,publisher_db    sysname NULL,
    publication    sysname NULL,publication_type    INT NULL,subtype    INT NULL,latency    INT NULL,latencythreshold    INT NULL,agentnotrunning    INT NULL,
    agentnotrunningthreshold    INT NULL,timetoexpiration    INT NULL,expirationthreshold    INT NULL,last_distsync    DATETIME,
    distribution_agentname    sysname NULL,mergeagentname    sysname NULL,mergesubscriptionfriendlyname    sysname NULL,mergeagentlocation    sysname NULL,
    mergeconnectiontype    INT NULL,mergePerformance    INT NULL,mergerunspeed    FLOAT,mergerunduration    INT NULL,monitorranking    INT NULL,
    distributionagentjobid    BINARY(16),mergeagentjobid    BINARY(16),distributionagentid    INT NULL,distributionagentprofileid    INT NULL,
    mergeagentid    INT NULL,mergeagentprofileid    INT NULL,logreaderagentname VARCHAR(100),publisher varchar(100))
    DECLARE replmonitor CURSOR FOR
    SELECT b.srvname,a.publisher_db,a.publication
    FROM distribution.dbo.MSpublications a,  master.dbo.sysservers b
    WHERE a.publisher_id=b.srvid
    OPEN replmonitor 
    FETCH NEXT FROM replmonitor INTO @srvname,@pub_db,@pubname
    WHILE @@FETCH_STATUS = 0
    BEGIN
    INSERT INTO #replmonitor
    EXEC distribution.dbo.sp_replmonitorhelpsubscription  @publisher = @srvname
         , @publisher_db = @pub_db
         ,  @publication = @pubname
         , @publication_type = 0
    FETCH NEXT FROM replmonitor INTO @srvname,@pub_db,@pubname
    END
    CLOSE replmonitor
    DEALLOCATE replmonitor
    SELECT publication,publisher_db,subscriber,subscriber_db,
            CASE publication_type WHEN 0 THEN 'Transactional publication'
                WHEN 1 THEN 'Snapshot publication'
                WHEN 2 THEN 'Merge publication'
                ELSE 'Not Known' END,
            CASE subtype WHEN 0 THEN 'Push'
                WHEN 1 THEN 'Pull'
                WHEN 2 THEN 'Anonymous'
                ELSE 'Not Known' END,
            CASE status WHEN 1 THEN 'Started'
                WHEN 2 THEN 'Succeeded'
                WHEN 3 THEN 'In progress'
                WHEN 4 THEN 'Idle'
                WHEN 5 THEN 'Retrying'
                WHEN 6 THEN 'Failed'
                ELSE 'Not Known' END,
            CASE warning WHEN 0 THEN 'No Issues in Replication' ELSE 'Check Replication' END,
            latency, latencythreshold, 
            'LatencyStatus'= CASE WHEN (latency > latencythreshold) THEN 'High Latency'
            ELSE 'No Latency' END,
            distribution_agentname,'DistributorStatus'= CASE WHEN (DATEDIFF(hh,last_distsync,GETDATE())>1) THEN 'Distributor has not executed more than n hour'
            ELSE 'Distributor running fine' END
            FROM #replmonitor
    --DROP TABLE #replmonitor
    Rajeev R

    INSERT INTO #replmonitor
    Hi Rajeev,
    Could you please use the following query and check if it is successful?
    INSERT INTO #replmonitor
    SELECT a.*
    FROM OPENROWSET
    ('SQLNCLI', 'Server=DBServer;Trusted_Connection=yes;',
    'SET FMTONLY OFF; exec distribution..sp_replmonitorhelpsubscription
    @publisher = DBServer,
    @publication_type = 0,
    @publication=MyPublication') AS a;
    There is a similar thread for your reference.
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/634090bf-915e-4d97-b71a-58cf47d62a8a/msg-8164-level-16-state-1-procedure-spmsloadtmpreplicationstatus-line-80?forum=sqlreplication
    Thanks,
    Lydia Zhang
    Lydia Zhang
    TechNet Community Support

  • Script execution problem

    dear sir
    i got a problem with script execution. i have successfully  activate the form painter in ABAP editor. but i am getting the error like "Form  ZLASRISUD language EN is not active and has no errors". please give me the solution for above as soon as possible.

    dear sir
    i got a problem with script execution. i have successfully  activate the form painter in ABAP editor. but i am getting the error like "Form  ZLASRISUD language EN is not active and has no errors". please give me the solution for above as soon as possible.

  • Report script execution is getting failed

    Hi ,
    We are facing one strange issue while executing the Essbase report script. I am new to the report script and I am not getting how to resolve the issue.
    When we are changing the year in code from FY13 to FY14 the script is getting failed however the same script is successfully generating the report if we keep year as FY13 in code.
    Could you please let me know where would be the problem , below is the part of the code form Report script.
    {MISSINGTEXT "0"}  // replace #Missing with 0
    <Link ((<LEV("Customer", "Lev0,Customer")) AND ( <IDESC("All Customers")))
    <Link ((<LEV("Product", "Lev0,Product")) AND ( <IDESC("All Products")))
    <Link ((<LEV("Period", "Lev0,Period")) AND ( <IDESC("YearTotal")))
    FY14

    Hi ,
    I am getting below error message.
    "Report Script execution Failed. Please see message panel for details " and in message panel It is not showing any details , just displaying Execute Report script Failed with date and time details.
    I also checked that FY14 do exist in the application and no duplicate FY14 member exist in the outline.
    Could you please suggest where would be the problem.

  • Help 'Exiting' after Automator Shell Script Execution

    Hello,
    I've recently installed and got running GCalDaemon (http://gcaldaemon.sourceforge.net/) which allows me to Synch Rainlendar <-> Google Calendar through iCal (You can also synch iCal <-> Google Calendar). I needed to start up a shell script/applescript after each startup/login in order for GCalDaemon to start the synching process each time and continue to do so at the timed intervals. I would do so by the following terminal code:
    cd /usr/local/sbin/GCALDaemon/bin
    ./standalone-start.sh
    I then tried automating this process and came across shell script execution through Automator. I did so and created a .app with the above mentioned code. This works and it starts up the necessary .sh file I need and the snyching works under StartUp. My concern is however, how do I exit terminal once the code has executed the necessary file? All I have in my .app is the above mentioned code for now. I just need it to exit terminal because on startup or after starting the program, I get this issue (See Attachment)
    This continues to run, so my guess is that I need to add code to exit terminal and allow the .app to close itself properly after doing so.
    Please guide me in the right direction.
    Picture Belows shows what happens when I run the Automator App. It continues to run until I quit out of the app manually (TheGCal programs works fine though). I feel I need to have app quit Terminal or fully end the process and quit out on it's own.
    Thanks
    <table style="width:auto;"><tr><td></td></tr><tr><td style="font-family:arial,sans-serif; font-size:11px; text-align:right">From GCalDaemon</td></tr></table>

    i redirected the command output to /dev/null which is unix equivalent of a black hole and I also redirected error output to standard output in case the script produces any errors.
    also & at the end tells it to continue without waiting for the script to finish.
    Message was edited by: V.K.

  • Catia V5R21 package deployment on windows 7 x64 doesn't complete - Non fatal execution error 0x87d01100

    I am trying to deploy Catia V5R21 on windows 7 x64 machines, deployment starts but doesn't not complete using sccm2012 R2
    I can deploy software to windows 7 32bit machine fine using sccm2012 R2. Also manual install on windows 7 x64 works fine.
    here is the script I am using-
    cmd /c install.cmd
    xcopy "IBM LUM Directory" "C:\ProgramData\" /E /C /R /H /K /Y
    1\win64\startb.exe -u "c:\program files\Dassault Systemes\R18" -newdir -ident R18 -D "C:\ProgramData\DassaultSystemes\CATEnv" -l "DIC.slt" -v -noreboot
    I can see files copied over client machine and "c:\program files\Dassault Systemes\R18" get created, also an entry appear in control panel>programs and feature.
    Problem I am having is deployment doesn't complete. 
    I checked logs under Execmgr.log on client machine and found errors 
    Raise Program Error Event for program Catia. The exit code is 55, the execution is FailureRetry
    Non fatal execution error 0x87d01100 encountered for program Catia V5R21
    I can't see program installed under All Programs and SCCM monitoring status stuck in progress 
    Any help will be greatly appreciated..
    Thanks in advance
    RJ
    RJ09

    I have tried following suing start /wait 
    start /wait xcopy "IBM LUM Directory" "C:\ProgramData\" /E /C /R /H /K /Y
    1\win64\startb.exe -u "c:\program files\Dassault Systemes\R18" -newdir -ident R18 -D "C:\ProgramData\DassaultSystemes\CATEnv"
    -l "DIC.slt" -v -noreboot
    same results, deployment failed with exit code 55 and slight different error
    IMaintenanceCodeinator::GetState failed with error code 0x87d00317
    Monitoring status is In Progress..
    RJ09

  • My toolbar is missing and there is a button where it used to be that says "Please re-install the Toolbar" but when I click on it nothing happens? Also when I start Firefox I get a script running error how do I solve these issues?

    My toolbar is missing and there is a button at the top left that asks me to "Please re-install the Toolbar" but when I click on it nothing happens???
    Then when I start Mozilla I get a long delay before it launches and a script running error "A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete.
    Script: chrome://tavgp/content/libs/include.js:595"
    How do I solve these issues???

    No idea - and you provide no clues
    what version of iPHoto do you have? Of the OS? is the iPhoto icon you are speaking of in the Dock?
    re-read your post and try to provide information using standard Mac terms since we can not see you or your computer and only have your worrds to let us try to help you
    Somehow my "IPhoto" icon now says "Preview".  When I click on "Preview" nothing opens up except the bar says Preview.  When I click on the Preview on the bar, a box opens up with different items, except when I click on any of them, there is nothing there.  The only thing that work is the "quit preview".  However, it is still there where my IPhoto icon should be.  I can't get into my IPhoto.  How do I get rid of this "Preview" and how did it end up taking over the IPhoto icon???
    If you go to your Applications folder and double click on iPhoto what happen?
    LN

  • Ever since I downloaded FF's v6, everytime I go to YouTube and open a video, I get an error message that says: "[Java Script Application] Error: Div is null" How do I fix this problem?

    If I go to YouTube, no matter what video I click on to watch, the error message "[Java Script Application] Error: Div is null" pops up. It started happening right after I updated to FF v6. I also have installed the latest version of Java. I submitted this question a few weeks ago, but never received a reply.
    Thanks for any help you can provide to fix this.
    Scott Cromwell
    [email protected]

    hello, can you try to replicate this behaviour when you launch firefox in safe mode once? if not, maybe an addon is interfering here...
    [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]

Maybe you are looking for

  • Video out, dvi, apple vga? , help me

    i ahve a pb g4 12" 867mhz, i want to buy a video out cable, but i notice that my port is different from several friends who have the 1.0ghz model g4 12", can someone link me to a website with what i need? or am i even able to buy the older cable? tha

  • How to resolve a 'no sound' problem with UPI Grand Piano application?

    I have purchased the UPI piano from the AppStore, but am at a loss to know how to resolve the problem of a silent piano. I have entered the 'Audio & Midi Settings' zone within the application more times than I care to remember and need a wise owl to

  • Minor Softwarebug iOS 4.2.1 / iTunes 10 (10.1.0.56)

    Hello, I found a minor Softwarebug in the iOS 4.2.1 /iTunes 10: (I am using iPhone 4, iTunes and Windows 7) Whenever i syncronise music on to my iPhone and this process takes very long, because e.g. i convert media in to 128 bit/sec AAC files this tw

  • Assign new Business System in ID

    Hello, i need using a new business system because my interface can be executing in two clients. i have a new business system in SLD with a technical system (three party) exits. however, in ID, when i go to assign this business system, it don't appear

  • Why can't I copy files from Finder to Time Capsule?

    I'm trying to do basic copy functions from Finder to Time Capsule and I can't copy/paste or drag/drop any files from my MacBook to TC. The paste function is greyed out. TC is connected and does backups fine from Time Machine. Is there some setting I