Need workaround for a MV

Hi All,
I am facing one issue while creating a mv. The source for this mv contains more then 1.75 billions records. This source table contain a column TEXT VARCHAR2(2000). If I tried to create without that column mv gets created but with column it is giving error of like "UNABLE TO EXTENTS THE SPACE BY " I increased the temp tablespace size to 15 gb on both souce and destination end but still issue is not resolve.
Then I created that mv view 5000000 records and now my issue is anyhow put those remaining record into mv table.
Any workaround or any suggestion is greatful.

If this is MV was something that was going to be refreshed periodically, what you could do is create a pl/sql script (or procedure) that you could schedule that would reload this table. You could try doing an insert select to see if that would work but my guess would be that it would still fail with the space constraint. You could also do bulk collection and insert groups of records that way and commit every million records or whatever works best for your environment. Thats a pretty good size table.

Similar Messages

  • Need Workaround for periodical autocommit in WebForms without using Timer

    Hi guys...
    I need to use autocommit in my form for say 1 min.
    As ther is a great performance degradation when i go for timers, i need a workaround to achieve the same functionality without using timers.
    Thanx & Regards
    Sriram

    <p>Get this zip file
    <br><br>
    unzip the file<br>
    copy the bean_timer.jar in your <forms_home>/java directory<br>
    update your formsweb.cfg configuration file<br>
    archive_jini=f90all_jinit.jar,...,bean_timer.jar<br><br>
    open, compile and run the beantimer.fmb sample demo
    <br>
    </p>
    Francois

  • Need workaround for continued failed update?

    I haven't been able to get Dreamweaver to successfully update for quite some time. There's no detail to the error message, just a generic statement that it didn't complete the process. Screen capture below. What's my next step?

    Have you tried downloading the update manually and then installing it manually?  The download link is this one:
    <http://download.macromedia.com/pub/dreamweaver/updates/cs5/11_0_4/win/AdobeDreamweaver-11- 0-All-Update.zip>
    You may need to restart your machine after you have applied the updates for changes to take place.
    hth

  • Need workaround for AppleScripts Running

    I recently upgraded to Mavericks on my MacBook Pro. Now I am trying to use software that is requesting AppleScript Runner. I understand it is no longer supported in Mavericks. Is there a workaround that will let me use my software? [Software: Wiley CulinarE - Companion 4]
    I saw the scripting thread on this online, but I am not a programmer or a proficient computer geek, so if you are going to recommend script, please give me step-by-step instructions on how to access the script and change it. I am such a novice!
    Thanks for your help!

    I was able to access the two script packages contained in the application. I think the second set of script is the one that applies to this issue.... The first one is:
    on run argv
              tell application "AppleScript Utility"
                        set error_message to ""
                        try
                                  if ((count of argv) is 0) then
                                            tell me to syslogger("ff.script", "no arguments")
                                            return "no arguments"
                                  end if
                        on error the errmsg number the errn
                                  tell me to syslogger("ff.script", "no arguments")
                                  return errmsg
                        end try
                        set myUrl to item 1 of argv
                        tell application "System Events"
                                  if not ((exists process "Firefox") or (exists process "firefox-bin")) then
                                            tell me to syslogger("ff.script", "not exists process Firefox")
                                            return "no url. Firefox does not exist"
      --return myUrl
                                  end if
                        end tell
      --set myUrl to "http://127.0.0.1:49470/"
                        tell application "Firefox"
      --activate
                                  try
                                            set numTabs to 0
      -- Get URLs of all tabs
                                            set urlList to {}
                                            set numWindows to count of windows
      --display dialog "numWindows = " & (numWindows as string)
                                            if (numWindows = 0) then
                                                      tell me to syslogger("ff.script", " no url. Firefox is not runing")
                                                      return "no url Firefox is not runing"
                                            else
                                                      repeat with w from 1 to numWindows
                                                                try
      --display dialog w as string
                                                                          properties of window w
                                                                on error the errmsg number the errn
      --beep 1
      --return properties
      --return myUrl
                                                                end try
                                                      end repeat
                                            end if
                                  on error the errmsg number the errn
                                            tell me to syslogger("ff.script", errmsg & " error = " & (errn as string))
                                            return errmsg
      display dialog errmsg buttons {"OK"} default button 1
                                  end try
                        end tell
      --return
                        tell me to set user_dir to system attribute "HOME"
      --set myUrl to "http://127.0.0.1:49395"
                        tell me to set profile_ini to user_dir & "/Library/Application Support/Firefox/profiles.ini"
      --display dialog profile_ini
                        tell me to set bbb to CheckIfExists(profile_ini)
                        if not bbb then
      --if not CheckIfExists(profile_ini) then
                                  «event panSdlog» profile_ini & " does not exist"
                        end if
                        tell me to set file_content to ReadAFile(profile_ini)
      --display dialog file_content
                        tell me to set profile_file to getProperties(file_content, "Path")
                        tell me to set sessionstore_file to user_dir & "/Library/Application Support/Firefox/" & profile_file & "/sessionstore.js"
      --display dialog sessionstore_file
                        tell me to set parent_file to user_dir & "/Library/Application Support/Firefox/" & profile_file & "/.parentlock"
                        tell me to set bbb to CheckIfExists(parent_file)
                        if not bbb then
      --if not CheckIfExists(parent_file) then
                                  «event panSdlog» parent_file & " does not exist. Firefos does not work"
                                  return "no parentlock"
                        end if
                        tell me to set bbb to CheckIfExists(sessionstore_file)
                        if not bbb then
      --if not CheckIfExists(sessionstore_file) then
                                  «event panSdlog» sessionstore_file & " does not exist"
                                  return "no sessionstore.js"
                        end if
                        tell me to set store_content to ReadAFile(sessionstore_file)
      --display dialog store_content
                        tell me to set newFFformat to 0
                        tell me to set strWindows to "{windows:[]"
                        tell me to set strTabs to "{tabs:["
                        tell me to set strClosedTabs to "_closedTabs:["
                        tell me to set prefics to "{url:\""
                        tell me to set suffics to "\","
      --set prefics to "entries:[{url:\""
      --set suffics to "\", children:["
                        if (store_content contains "{\"tabs\":[") then
      --display dialog "new format"
                                  tell me to set newFFformat to 1
                                  tell me to set strTabs to "{\"tabs\":["
                                  tell me to set strClosedTabs to "\"_closedTabs\":["
                                  tell me to set prefics to "{\"url\":\""
                                  tell me to set strWindows to "{\"windows\":[]"
                        end if
                        if (store_content contains strWindows) then
      --display dialog strWindows
                                  tell me to syslogger("ff.script", "sessionstore file contains " & strWindows)
                                  return "no url"
                        end if
      --display dialog (store_content)
                        tell me to set content_list to splitText(strTabs as Unicode text, store_content as Unicode text)
      --display dialog (content_list as Unicode text)
      --set length_list to number of items of (content_list)
                        set length_list to count of content_list
      --return (number of items of (content_list))
      --display dialog (length_list as Unicode text)
                        if (length_list < 2) then
                                  tell me to syslogger("ff.script", "Error in the sessionstore.js")
      --display dialog "Error in the " & sessionstore_file
                                  return "Error in the sessionstore.js"
                        end if
                        repeat with i from 2 to (length_list)
                                  tell me to set content_listItem to ((item (i) of content_list) as Unicode text)
      --display dialog "wnd " & i as string
                                  tell me to set window_list to splitText(strClosedTabs as Unicode text, content_listItem as Unicode text)
                                  set length_window_list to count of window_list
      --display dialog (length_window_list as Unicode text)
                                  if (length_window_list = 2) then
                                            tell me to set openedTabs to ((item (1) of window_list) as Unicode text)
                                            tell me to set closedTabs to ((item (2) of window_list) as Unicode text)
                                            tell me to set opened_tabs_list to splitText(prefics, openedTabs)
                                            repeat with j from 1 to (count of opened_tabs_list)
                                                      tell me to set url_item to ((item (j) of opened_tabs_list) as Unicode text)
      --display dialog url_item
                                                      if (url_item begins with myUrl) then
                                                                tell me to set pos to offset of suffics in url_item
                                                                if (pos > 0) then
      --display dialog (pos as string)
                                                                          tell me to set full_url to "" & (get characters 1 thru pos of url_item)
      --display dialog full_url
      --display dialog closedTabs
                                                                          if (closedTabs does not contain full_url) then --not closed yet
      --display dialog "wnd " & i as string
                                                                                    return myUrl
                                                                          end if
                                                                end if
                                                      end if
                                            end repeat
                                  end if
                        end repeat
                        if (length of error_message > 0) then
                                  tell me to syslogger("ff.script", error_message)
                        end if
                        tell me to syslogger("ff.script", "return \"no url\"")
                        return "no url"
              end tell
    end run
    ------------------  functions ------------------------------------
    on ReadAFile(filePath)
              tell me to set str to "cat " & "\"" & filePath & "\""
              tell application "Finder"
                        tell me to set filecontent to do shell script str
              end tell
              return filecontent
    end ReadAFile
    on CheckIfExists(filePath)
              tell application "Finder"
                        tell me to set folder_cmd to ("find \"" & filePath & "\"")
                        try
      do shell script folder_cmd
                                  tell me to set worked to true
                        on error
                                  tell me to set worked to false
                        end try
              end tell
              return worked
    end CheckIfExists
    on getProperties(content, property_name)
              tell me to set property_str to ""
              tell me to set property_list to split_paragraphs(content)
              tell me to set number_depart to 0
              repeat with theItem in property_list
                        if theItem as string is not "" then
      --display dialog theItem
                                  tell me to set items_list to splitText("=", theItem)
      --set count to number of items in items_list
                                  if number of items in items_list is greater than 1 then
      --property_name is in contents of (item 2 of items_list as string)
                                            if ((item 1 of items_list as string) = property_name) then
                                                      tell me to set property_str to (item 2 of items_list as string)
      --display dialog property_str
                                            end if
                                            if ((item 1 of items_list as string) = "Default" and (item 2 of items_list as string) = "1") then
      --set property_str to (item 2 of items_list as string)
      --display dialog property_str
                                                      exit repeat
                                            end if
      --display dialog property_str
                                  end if
                        end if
              end repeat
    --display dialog property_str
              return property_str
    end getProperties
    on split_paragraphs(someText)
              tell me to set oldDelims to AppleScript's text item delimiters
              set AppleScript's text item delimiters to {return}
              tell me to set TheItems to text items of someText
              repeat with theItem in TheItems
                        if theItem as string is not "" then
                                  display dialog theItem
                        end if
              end repeat
              tell me to set AppleScript's text item delimiters to oldDelims
              return TheItems
    end split_paragraphs
    on splitText(delimiter, someText)
    --display dialog (delimiter & "   " & someText)
              tell me to set prevTIDs to AppleScript's text item delimiters
              set AppleScript's text item delimiters to delimiter
              tell me to set output to text items of someText
              set AppleScript's text item delimiters to prevTIDs
              return output
    end splitText
    on subString(the_string, start_index, end_index)
              return "" & (get characters start_index thru end_index of the_string)
    end subString
    to searchReplace(thisText, searchTerm, replacement)
              set AppleScript's text item delimiters to searchTerm
              tell me to set thisText to thisText's text items
              set AppleScript's text item delimiters to replacement
              tell me to set thisText to "" & thisText
              set AppleScript's text item delimiters to {""}
              return thisText
    end searchReplace
    (* Logs a message to the system log (which you can monitor in Console.app). The msg is tagged with a given sender. *)
    on syslogger(sender, msg)
              if (length of msg is greater than 1500) then
                        tell me to set msg to (text 1 thru 500 of msg) & " <snip> *** Sorry, Message > 1500 chars will not be reliably logged by BSD's 'logger'."
              end if
              tell me to set cmd to "logger -t " & quoted form of sender & " " & quoted form of msg
    do shell script cmd
    end syslogger
    THE SECOND ONE IS:
    on run argv
              tell application "AppleScript Runner.app"
      --display dialog "++++++++"
                        tell me to set error_message to ""
                        try
      --tell me to log "no arguments"
      --display dialog "++22++++"
                                  if ((count of argv) is 0) then
                                            tell me to syslogger("sf.script", "no arguments")
                                            return "no arguments"
                                  end if
                        on error the errmsg number the errn
                                  tell me to set error_message to "no arguments"
                                  tell me to syslogger("sf.script", "no arguments")
                                  return errmsg
                        end try
                        tell me to set urlArgv to item 1 of argv
      --display dialog urlArgv
      --set urlArgv to "http://127.0.0.1:49651/"
                        tell me to set res to 0
                        tell application "System Events"
                                  if not (exists process "Safari") then
                                            tell me to syslogger("sf.script", "not exists process Safari")
                                            return "no url"
                                  end if
                        end tell
                        tell application "Safari"
      --activate
                                  try
                                            tell me to set numTabs to 0
      -- Get URLs of all tabs
                                            tell me to set urlList to {}
                                            set numDocs to (count of document)
                                            set numWnd to (count of window)
      --display dialog "Count wnd = " & (numWnd as string)
                                            repeat with w from 1 to numWnd
      --display dialog "Curent Wnd = " & (numWnd as string)
                                                      try
                                                                set numTabs to count of tab of window w
      --display dialog "Count Tab = " & (numTabs as Unicode text)
                                                                repeat with t from 1 to numTabs
                                                                          try
                                                                                    set tabURL to (URL of item t of tabs of window w)
      --display dialog tabURL
                                                                                    if (tabURL contains urlArgv) then
      --display dialog urlArgv
      --tell me to syslogger("sf.script", urlArgv)
                                                                                              return urlArgv
                                                                                    end if
                                                                          on error
                                                                                    tell me to set error_message to ("error  with tab = " & (t as string) & "   " & errmsg)
                                                                                    tell me to syslogger("sf.script", "error  with tab = " & (t as string) & "   " & errmsg)
                                                                          end try
                                                                end repeat
                                                      on error the errmsg number the errn
                                                                tell me to set error_message to ("error  with wnd = " & (w as string) & "   " & errmsg)
                                                                tell me to syslogger("sf.script", "error  with wnd = " & (w as string) & "   " & errmsg)
                                                      end try
                                            end repeat
                                  on error the errmsg number the errn
                                            if errn is -1708 then
      --display dialog (errmsg & "  error = " & (errn as string)) buttons {"OK"} default button 1
                                                      tell me to syslogger("sf.script", errmsg & "  error = " & (errn as string))
                                                      return urlArgv
      --return "no url"
                                            end if
                                            tell me to set error_message to (errmsg & "  error = " & (errn as string))
                                            tell me to syslogger("sf.script", errmsg & "  error = " & (errn as string))
      --display dialog errmsg buttons {"OK"} default button 1
                                  end try
                        end tell
                        if (length of error_message > 0) then
                                  tell me to syslogger("sf.script", error_message)
                        end if
                        tell me to syslogger("sf.script", "return \"no url\"")
                        return "no url"
              end tell
    end run
    (* Logs a message to the system log (which you can monitor in Console.app). The msg is tagged with a given sender. *)
    on syslogger(sender, msg)
              try
                        if (length of msg is greater than 1500) then
                                  set msg to (text 1 thru 500 of msg) & " <snip> *** Sorry, Message > 1500 chars will not be reliably logged by BSD's 'logger'."
                        end if
                        set cmd to "logger -t " & quoted form of sender & " " & quoted form of msg
      do shell script cmd
              on error the errmsg number the errn
              end try
    end syslogger

  • SSAS Tabular in DirectQuery - What are the workarounds for formula limitations?

    Hello,
    I need to create an SSAS Tabular model against the database of a live, real-time, line of business transactional system (i.e. a CRM).
    The business requirement behind it is that we need to create some complex reports against live data, and our DW is only updated daily.
    This live model will however be partitioned with a time-variance limitation (e.g. only records which are XX old can be returned).
    Now here is the challenge. Since I am querying live data, then I believe the model must be configured in DirectQuery model. Am I right?
    The issue is that DirectQuery mode is full of formula limitations. So my concern is, if I need a calculated column or measure that I cannot make it work due to DirectQuery limitations, then what are the alternatives?
    Remember that the data source is from a live system, so it is not like I can create columns and measures in the underlying relational database.
    Please advise.
    Regards,
    P.

    Hi pmdci,
    According to your description, you want to use some functions in calculated measure which are not supported in DirectQuery mode. Right?
    In Analysis Services Tabular, since DirectQuery has the real time access and scalability, this comes with a price of restrictions on a number of DAX functions and missing Calculated Column feature. Generally the workaround for these scenarios
    is replacing those functions with other functions which are supported in DirectQuery mode, or create columns in the data source. However, as you said, your environment is not possible to create columns in the database. And a lot of those limited
    function are not replaceable, like time intelligence functions. So actually, there's no really effective workaround currently.
    For you requirement, I suggest you submit Microsoft a feature request
    at https://connect.microsoft.com/SQLServer
    so that we can try to modify and expand the product features based on your needs.
    Best Regards,  
    Simon Hou
    TechNet Community Support

  • Workarounds for searching a text field in SQL Server 2000

    Hi,
    I have a need to search within a text field in SQL Server 2000. In the
    limitations section it notes that this is not possible. Is there a
    recommended workaround for this in terms of performance? I have no way
    of knowing the length of the text field in advance, and this could be
    fairly large. Also, the number of objects that could contain the text
    can be fairly large as well.
    Thanks in advance,
    Khamsouk

    Note that some databases (or Oracle, at least) provide alternatives to
    LIKE '%foo%' that are more efficient for large text blocks, given that
    you have the appropriate indexing plugins etc. etc.
    To use one of those types of search operators, you'd have to put
    together a custom extension.
    -Fred
    Fred Lucas <[email protected]> wrote:
    I'm assuming that when you say 'a text field', you're referring to a
    SQLServer TEXT field, as opposed to just any old field that contains
    text.
    Like I said, I'm by no means a SQLServer pro, but I just ran:
    SELECT CLOBSTRINGX
    FROM LOCATORTESTOBJECTX
    WHERE CLOBSTRINGX LIKE '%o%';
    and got back my test row with 'foo' in the CLOBSTRINGX column.
    CLOBSTRINGX is a TEXT column.
    So, it is possible that our stringContains() extension will just work.
    But then again, maybe not. I'm guessing it will.
    Give it a try and, if you get an error, post the generated SQL (turn on
    SQL output by setting the com.solarmetric.kodo.Logger property to
    'stdout') and the error that you get. Also, try executing the generated
    SQL directly against your data store to see if it works there.
    -Fred
    Khamsouk Souvanlasy <[email protected]> wrote:
    Basically I just want to use kodo's extended stringContains syntax on a
    text field. Is this possible?
    Khamsouk
    Fred Lucas wrote:
    I'm not intimitely familiar with SQLServer's text searching
    capabilities, but I'm confident that you could create a query extension
    that would do what you need it to do.
    What is the SQL that you are trying to generate?
    -Fred
    Khamsouk Souvanlasy <[email protected]> wrote:
    Hi,
    I have a need to search within a text field in SQL Server 2000. In the
    limitations section it notes that this is not possible. Is there a
    recommended workaround for this in terms of performance? I have no way
    of knowing the length of the text field in advance, and this could be
    fairly large. Also, the number of objects that could contain the text
    can be fairly large as well.
    Thanks in advance,
    Khamsouk
    Fred Lucas
    SolarMetric Inc.
    202-595-2064 x1122
    http://www.solarmetric.com

  • How can I backup my iphone 4 using iTunes 9.1.1? Is there a workaround for this?

    How can I backup my iphone 4 using iTunes 9.1.1? Is there a workaround for this? I need to backup my phone for replacement but it tells me I need 10.1 or later. All software is up to date, Operating system is 10.4.11. Thanks!

    No sorry. You need to upgrade to v10.5 Leopard (minimum) in order to sync an iPhone 4.
    iPhone minimum requirements:
    Mac computer with USB 2.0 port
    Mac OS X v10.5.8 or later
    iTunes 10.1 or later
    iTunes Store account
    Internet access
    You can upgrade to Leopard if your Mac meets v10.5 requirements.
    Requirements for Mac OS X v10.5
    If your Mac is Intel, you can upgrade directly to Snow Leopard if your Mac meets 10.6 Snow Leopard - Technical Specifications

  • Workaround for non-SAP mitigating control reminders

    Dear all,
    Our business users would like to document mitigating controls in RAR 5.3 regardless of whether they are connected with an SAP report. They would also like to receive email reminders for those controls.
    Unfortunately, the frequency of the control can only be defined per connected SAP report and reminders will only be sent for controls if the SAP report has not been executed.
    Have you been exposed with a similar requirement? It seems like a natural thing to ask from a business perspective. RAR 5.3, however, is not designed in that way.
    Have you come up with any feasible workarounds for this?
    My current approach would be to create a dummy Z-report per SAP system (such as Z_MANUAL_MITCTRL) that control monitors have to call once to confirm the execution of their control.
    Cheers and best regards
    Patrick

    Hello,
    Regarding your question, in fact this is dependant on how your UME (User Management Engine) is configured on your WAS (Web Application Server). If the UME is connected to your R/3 back-end then the user need to have a R/3 account to connect to CC, otherwise if your UME is "independant" then you just need to create an account in the UME.
    Regards,
    Jérôme.

  • Aha!  Workaround for site corruption in iWeb '06 '08 updates

    I think I have found a workaround for a problem that's been plaguing me and no doubt other people who've bought iWeb '08 and used it to update an older site from iWeb '06 (skip to bottom for solution). This is relevant even after the 2.0.1 update that Apple shipped today.
    My iWeb project contains multiple sites, which I use to group photo albums. I found repeatedly that after I updated the site, made a change, and saved the project, a lot of the bitmap image files needed for pages with photo albums or other graphical embellishments were just gone from the project. Looking into the Domain.sites package (Finder: Show Package Contents) confirmed this - all the .jpg, .png files etc. just got trashed the first time I did a save (although the pages all looked ok after the upgrade but before the save!)
    At first I thought that the last site added to my multi-site project was spared at the expense of other 'sites' visible in the sidebar. Then I realized that only pages that had been viewed in iWeb after the update were spared! Generally I would view the pages in the bottom/last site as these were the ones I was currently working on - and these were spared.
    So I did an experiment - I opened (yet another) copy of my iWeb '06 backup in iWeb '08, and after the update but before saving I clicked on every page (thereby viewing it) in the whole site - and I have around 50 pages in about ten sites. Then I made a change to a single page, and saved the project. The fact that I had viewed all the pages seemed to make the problem go away! There were no missing photos or embedded bitmaps!
    *So the short version of the problem is:* any pages that have not been viewed within iWeb after updating a Domain.sites file (what I call the project) from '06 to '08 will have all associated bitmap image files deleted.
    *The solution:* immediately after updating the site, and before making any edits or saving, you must click on the sidebar entry for every page in the whole project (to view it in the editing window). In my case this meant also clicking on every entry of a blog, to display it.
    Conclusion: there must be some book-keeping of the database that supports iWeb that is not synchronized with the persistent store on disk unless a page is actually viewed.
    Hope this works for others, and that Apple gets a proper fix out ASAP. The 2.0.1 update issued today did not fix the problem for me - only the above workaround did.
    Rick

    Hi Rick,
    Sounds like my story, too. I have had some time to experiment on two different Macs (one G4 and one MacBook Pro). After losing the formatting and photos on one Mac after upgrading, I decided that I was going to test some theories on the other Mac prior to upgrading to iWeb '08. This is what I found - and what worked:
    Test 1:
    MacBookPro on iLife '06. I upgraded to iLife '08. I opened iWeb and noted that it did not recognize my original domain: iWeb '08 asked me to locate it or create a new one. I selected "choose" and selected the domain that I had created in iWeb '06 (user/library/application support/iweb). The site opened, performed the required update and opened up. I noticed immediately that some of the photos did not appear on some of the pages. Each time iWeb '08 was closed and reopened, more photos, sometimes different photos, would disappear. All that would remain was a grey placecard with a question mark in the middle (and the warning that the links were now missing). I even went as far as putting the photos back into position, saving and closing iWeb '08. But when I opened iWeb '08 again, the photos were missing...again.
    I rebuilt the entire site.
    Test 2:
    Powerbook G4 on iLife '06. BEFORE updating to iLife '08, I used the original iWeb '06 to publish the entire site to a local folder on my HD (as a security measure). Next, I created a copy of my domain (another security measure) and moved the original domain from 'user/library/application support/iweb' to my desk top. I then proceeded to upgrade to iLife '08. After upgrading, I opened iWeb '08 and received the notification that iWeb '08 needed to either create a domain or I needed to choose a domain. Since I moved my domain out of 'library/application support/iweb', I elected to create a new domain and saved it to the same location (library/application support/iweb).
    The new domain was created, iWeb '08 opened, I selected a template, then saved it and closed the program.
    Using Finder, I examined the new domain just created by iWeb '08. Using the 'get info' command, I noticed that the new domain has the extension ".sites2." The original domain created in iWeb '06 has the extension ".sites."
    I took my original iWeb '06 domain and used the finder "get info" command to manually change the extension from ".sites" to ".sites2." I got the warning asking me if I was sure I wanted to use ".sites2," and I selected yes, use ".sites2."
    Using the (original) domain just modified in the last step, now with the extension ".sites2", I inserted it into the 'user/library/application support/iweb' folder, replacing the domain file created during the start up of iWeb '08.
    I then opened iWeb '08.
    After a brief moment, iWeb '08 opened my domain revealing all four of my original web sites, complete and intact. After iWeb '08 updated the domain, I saved it, closed iWeb '08 and reopened it a few times before I was satisfied that EVERYTHING was working fine.
    In conclusion, I found that by changing the domain (created in iWeb '06) file extension to ".sites2", I was able to use iWeb '08 to successfully open it, complete and intact.
    I hope you may still have the opportunity to try this on your Mac. I also hope that you have good results.
    Cheers, Bryan

  • Suggested workaround for list itemrenderer bug?

    Can someone point me in the right direction for a workaround for the problem described as Flex bug 28191:
    https://bugs.adobe.com/jira/browse/SDK-28191
    Steps to reproduce:
    1. Populate a Tree/List with data and provide a custom itemRenderer class factory.
    2. Change the class factory and dataProvider at the same time.
    3. List.createItemRenderer() will crash during since Factory is the key and it has been changed.
                    delete freeItemRenderersByFactory[factory][renderer];
    Actual Results:
    Crash because the renderer can not be found since it does not exist on that factory dictionary since the class factory was changed and the lookup is using the new factory.
    Expected Results:
    Not crash.
    Seems like a race condition, as sometimes during this process it skips that block of code but in other cases it falls into this block and fails.
    I need to change the data provider and item renderer of a tree control at runtime. Is there one or more methods I should run to prevent this? As the bug notes state, this is an intermittent problem. The error occurs here:
    if (factory == itemRenderer)
                if (freeItemRenderers && freeItemRenderers.length)
                    renderer = freeItemRenderers.pop();
                    delete freeItemRenderersByFactory[factory][renderer];

    Thanks. Actually, I have been updating (not setting or changing) the tree's dataprovider, and then changing the classFactory like this:
    processesXML = event.result as XML;
    nodeTreeData.source = processesXML.children();
    if (treeMultiSelect)
    nodeTree.itemRenderer=new ClassFactory(renderers.TreeItemRendererV1);
    nodeTree.allowMultipleSelection = true;
    nodeTree.setStyle("selectionColor", "0xFFFFFF");
    nodeTree.setStyle("disclosureOpenIcon", MinusIcon);
    nodeTree.setStyle("disclosureClosedIcon", PlusIcon);
    else
    nodeTree.itemRenderer=new ClassFactory(mx.controls.treeClasses.TreeItemRenderer);
    nodeTree.allowMultipleSelection = false;
    nodeTree.setStyle("selectionColor", "0x7FCEFF");
    nodeTree.setStyle("disclosureOpenIcon", OpenArrowIcon);
    nodeTree.setStyle("disclosureClosedIcon", ClosedArrowIcon);
    I had tried using validateNow after changing the ClassFactory before but did get the error again. I will try it again but update the data provider after. Since it's an intermittent error I'm finding it hard to know if a fix is really working.

  • Workaround for MaxTransactionSize in db-adapter?

    Hi there,
    Is there a workaround for the option MaxTransactionSize?
    This option doesn't work for a db-adapter reading from a table in an microsoft sql2000 server.
    I tried to create an adapter using custom sql, but this results in an outboundAdapterService, not an inbound one.
    Or is there another way to edit the sql code the adapter generates?
    Kind regards,
    Nick

    update:
    i'm using the logical delete polling strategy, but hadn't set the markReservedValue.(since that did not used to work in 10.1.3.1)
    Strangely this option is also needed to get a limited set of records with the MaxTransactionSize option.
    Or maybe my assumtion was wrong in thinking that it got to many records since there was no actual error generated i assumed the memory was filling up. (the server was getting extremely slow and the table could not be read anymore.)
    anyway..
    My db adapter works fine now :)

  • Need alternative for activex print control using Crystal reports 2008

    I have created a .Net web application (2.0/3.5 .Net framework) with crystal reports 2008.
    Reports are viewed using Crystal reports 2008 activex viewer.
    On click of PRINT icon in activex viewer, activex print control download prompt will be displayed on client machine.
    I need to avoid downloading of activex print control on client machine. Is there any other alternative or option to use print functionality in viewer without downloading activex print control on client machine?
    Or Is there any other workaround for print functionality in Crystal reports 2008 Viewer without downloading activex print control?
    Note: Activex print control download prompt will not be displayed when using Crystal reprots XI Release 2 version.
    Thanks,
    Jagannath

    Does anyone know which files need to be registered for the ActiveX print control?  We occasionally have users who somehow break their Crystal ActiveX controls, and they can no longer see the print options.  In Crystal 10, I was able to fix these issues by pushing a package which registered several files on the user's computer.

  • XFI Extreme Music workaround for hanging and lock

    Well I think I found a workaround for all the problems with my new XFI XM card.
    I uninstalled it by activating a System Restore point to just before I installed the drivers with the Installation CD.
    Then I rebooted and when the Add New Hardware prompt popped up as it detected the installed XFI card I made sure my XFI install disk was in the dri've and went through the wizard. It located the drivers it needed on the install disk. Finished the installation and rebooted.
    Been running my system ever since, bout 0 hours now, also played Rise of Legends for about 2 hours straight (and if anyone knows how buggy ROL can be, thats no small feat), ran Itunes, all the normal stuff I do and not one glitch or hangup since. Even with about 50+ units duking it out in ROL I had momentary spots where the sounds seemed to bleed together but hey, with all that stuff going on and no lockup or BOOM BOOM BOOM starting up non stop, I'm a happy camper.
    Granted I didn't install any of the other fancy software from the install disk, but this is much better, at least it works with no locku
    ps.
    Hope this maybe helps anyone else who at least wants a functional system.
    Have a good one.

    Hi KokChoy, thanks for the reply. The reason I am asking is that others seem to be having the same issue with the Vista CD available online and seems to relate only to the extrememusic. Has the CD available online been updated since release It appears as though the online CD is for all XFI cards (except extreme audio). I was under the assumption that this would be the same CD which was distributed through retail with Xfi product's. The CD which I received with my extremegamer does have the drivers for the extrememusic as I pointed vista to the CD to search for drivers and it did indeed locate and install as an extrememusic.
    Not meaning to sound rude so I appologize in advance if I do but upon researching this I have found a number of posts but they all seem to contain "may not", "might", "should" or something similar. I was hoping to get some form of official response about the status of the install CD and specifically the extrememusic before ordering and paying shipping and handling for something which may end up being of no use to me.
    Thanks.

  • I need to download adobe acrobat 7. I had it on my old computer and need it for my new computer. I have the serial #. Where can I get that download?

    I need to download adobe acrobat 7. I had it on my old computer and need it for my new computer. I have the serial #. Where can I get that download?

    http://helpx.adobe.com/x-productkb/policy-pricing/creative-suite-2-activation-end-life.htm l. I think this is the link. However, you will need to use the new S/N if you need to do the activation. The Activation server for AA 7 was taken down. I am not sure this link is complete, but it might give you some idea. However, on WIn7 and newer, AA7 has problems and will only work with some workarounds, and then kind of clunky.

  • BPM : Workaround for SWWL transaction

    Hi All
    Am working on a BPM scenario...things work fine in a happy scenario...but once i get a error life becomes tough...even if the files sent after the error instance are all correct and its supposed to be a happy scenario , it gets stuck in the queue and everytime i have to go to transaction SWWL and delete it as well as the queues in SMQ2.
    I was trying to figure out a way by which I can handle this in BPM itself...I tried using fork and in its exception branch having a control step assigned to CANCEL PROCESS but it doesn't solve my problem...
    Kindly help me with some workaround for this...
    Thanks in advance!!!

    Yeah I have included the whole process in FORK itself and in exception branch kept CANCEL PROCESS .
    But my point is something different here...
    The exception branch is getting invoked and error is generated with a red flag in SXMB_MONI...but after that for proper messages also I get a waiting signal(Green Flag : Message scheduled for outbound process)...and unless I manually go to transaction SWWL and delete the instance teh files remain stuck in queue...once deleted in there everything works fine again...
    Hope am clear...
    I need a way where i need not go to SWWL atall and even if there's a error in one instance the subsequent instances should not wait for it to be cleared before getting processed...

Maybe you are looking for

  • OIM 9.1.0.2 - Weblogic JDBC Multi Data Sources for Oracle RAC

    Does OIM OIM 9.1.0.2 BP07 support Weblogic JDBC Multi Data Sources (Services>JDBC>Multi Data Sources) for Oracle RAC instead of inserting the "Oracle RAC JDBC URL" on JDBC Data Sources for xlDS and xlXADS (Services>JDBC>Data Sources> xlDS|xlXADS > Co

  • Error in pre-export methods for request

    hi... while releasing the TR we are facing  this error  msg..." Error in pre-export methods for request" it is showing lock in fornt of the TR.neither be able to delete the TR .... do reply as soon as possible..

  • Macs in a Windows world!

    I am trying to help resolve a problem we are having with getting our Macs to access our Windows2003 server. The main problem is that I am mac literate, but clueless about networking, and our IT chap is clueless about macs. We have various drives that

  • How to create a customized mappings???

    Hi ----, I am really new to JDO so I am still learning how to implement Kodo. I want to find out how to create customized mappings, like an example will be great. I have two tables with a one to one mapping relationship that I need to create an outer

  • Inputting Multiple Search Fields into Query String??

    hey guys and gals quick question...i am building a little widget that allows a user to type in keyword(s) into one input field and then a zip code into another when the user clicks submit, it plugs them into the search url i have it working for one i