Query can't be executed in parallel after seting one parameter

Hi all,
Got answer from metalink.
best regards,
Leon
Edited by: user12064076 on Jan 29, 2011 7:26 PM
Edited by: user12064076 on Jan 29, 2011 9:54 PM

I am waiting on your answers as well.
can you please give a brief description about it?
don`t put a metalink link, many of us don`t have access to it.
Thanks

Similar Messages

  • Can't find wireless at home after just one day

    The first day back home, everything was fine, I can find the wireless name in the airport list and use it normally.
    then I just folded the MBP as usual (I bought it last Fall, and use it normally)
    the next morning I couldn't find the wireless at home but only could find the neighbors', even we both use TP-LINK router.
    Till today it's more than 3 weeks that I couldn't do anything with my MBP.
    I deleted all the old wireless record in the preference list and add my home wireless usr name and passwrd but nothing happened, still can't connect to it/
    I can connect to internet normally at a coffee bar or starbucks.
    all the other devices at home ,like my iphone and ipad , and my 27inch imac can connect to my home wireless normally, but sometimes the imac will lose the connection.
    I read the discussion about the similar problem in this forum, but I decide to ask it again because the most strange part is , my MBP connected to it normally at the first day!!!!
    I bought my MBP last year through online shop in CANADA. I don't think it will be a channel problem since I did can connect to it in the first day.
    I didn't add any software for the airport or internet connection, either.
    If somebody could have any idea that will be so helpful. Thank you.

    Location services based on wi-fi is dependent on the Wi-Fi access point database having a known location. It is also not dependent on your own wireless AP, it uses all the APs it can see. It is possible your AP was never in the database, but a neighbor's was. If the neighbor's AP can't be seen or has been removed, you would lose "your" location information.
    SkyHook wireless maintains a database that Apple used at one point (or still uses). You can try adding your AP (Time Capsule) to their database and see if that generates a location after a few days.  http://www.skyhookwireless.com/howitworks/submit_ap.php
    My understanding is Apple is collecting locations based on iPhone/iPad location data tied with visible Wi-Fi APs, but I don't have any solid source. So, I don't know if they still uses SkyHook data. I submitted mine years ago and was "located" shortly thereafter.

  • How to re-execute the error items at one time in SMQ2(t-code)

    Hi Experts,
    today i went to check the Inbound Queues using SMQ2, there are so many error queues, how can i re-execute these error queues at one time?
    Thanks&Regards,
    Su

    Hi Su,
    While you are inside a particular error queue, choose 'Unlock' and in the popup give CF* (or whatever queue prefix you have) and run. It will execute all the error queues / LUWs starting with CF*, for example.
    Regards,
    biplab

  • How can I execute a command after kernel-upgrade/mkinitcpio

    Because of the archlinux specific kernelnaming-policy there's a problem when using grub2. The created menu looks nasty because grub-mkconfig can't find the proper kernel-version. (Bugreport: https://bugs.archlinux.org/task/25453)
    Even if this is fixed we need to recreate the grubconfig always when a new kernel-version is installed.
    What I want now is executing grub-mkconfig after each kernel-installation/mkinitcpio, without repackaging the kernel. Is such a hook possible?
    Last edited by fsckd (2012-02-21 17:36:20)

    Rorschach wrote:
    Because of the archlinux specific kernelnaming-policy there's a problem when using grub2. The created menu looks nasty because grub-mkconfig can't find the proper kernel-version. (Bugreport: https://bugs.archlinux.org/task/25453)
    Even if this is fixed we need to recreate the grubconfig always when a new kernel-version is installed.
    What I want now is executing grub-mkconfig after each kernel-installation/mkinitcpio, without repackaging the kernel. Is such a hook possible?
    This is not necessary unless Versioned Kernel Installs are supported by pacman. I have added a new patch to https://www.dropbox.com/sh/jth3mchm3hob … src.tar.gz that solves the issue. No need for pacman or mkinitcpio hooks (for now).

  • After I run a query can I get it to return the number of files matched and each individual file name?

    After I run a query can I get it to return the number of files matched and each individual file name?  I am trying to do a data mining routine and this would be helpful. 
    BBANACKI

    Hi bbanacki,
    Please have a look at the following code:
    Define your queries and then:
    oAdvancedQuery.ReturnType=eSearchFile
    oMyDataFinder.Results.MaxCount = iMaxNumberOfReturndElements
    Call oMyDataFinder.Search(oAdvancedQuery)
    Set oMyResults  = oMyDataFinder.Results
    If oMyResults.IsIncomplete Then
      msgbox "The first " & str(oMyResults.Count) & " files found"
    Else
      msgbox str(oMyResults.Count) & "  files found"
    End If
    for iLoop = 1 to oMyResults.Count
      Cell.Text = oMyResults(iLoop).Properties("Name").Value
      Cell.Text = oMyResults(iLoop).Properties("fullpath").Value
    next
    Greetings
    Walter

  • SQL query can be executed through TOAD but not through Discoverer

    Hallo, everybody:
    Got another problem. A SQL query can be executed through TOAD, but when I want to execute it by a worksheet of Discoverer Plus, it always shows there is no data.
    PS: I copied this query from Discoverer Plus to TOAD, which means, this query is generated through the Discoverer. Does anybody know about how could it be?
    Thank you.
    Geng

    Hi,
    If you are able to get data in TOAD with the same user credential as that of Discoverer Plus then it will implies an issue with Discoverer.
    Else it is privilege issue , your TOAD user has select privilege to the base objects (tables/views etc) where as your Disoverer used does not.
    Compare the privileges granted to these 2 users and you can narrow done to the issue .
    Thanks,
    Sutirtha

  • How can I communicat​e betwen parallel asynchrono​us VIs?

    Howdy all,
    Here's my situation:
    - I have some task that needs to be executed in parallel to the currently running VI. In fact, this task needs to executed in parallel to a number of VIs,
    so I've decided to build a sub-vi to handle this task.
    - This task involves performing some processes every X number of milliseconds (usually in multiples of 1000). This task will be performed until it receives a stop-command (the user generates this signal - so I have no way of knowing when it will be)
    - I still need to be able to handle user interaction with this main VI while the task is executing, so my task must execute asynchronously.
    - I want to be able to send a termination command to my asynchronously executing task, and have it respond IMMEDIATELY (polling a global variable is unnacceptable).
    The only way that I am aware of running a VI asynchronously is to start it with the VI Server (either the Call by Reference Node, or the Invoke Node).
    Originally I planned on using notifiers to send commands to the asynchronous VI. Notifiers would have been perfect, because I could break out of the waiting portion of the task as soon as I received the command (this isn't really possible when polling a global). Later I found out that notifiers are not supposed to work with VIs loaded with the VI Server. My notifier approach worked fine during testing, but wouldn't work when I compiled the program as an executable (which is what the end product will be, so I need a new solution).
    I'm about to change my implementation to use Queues instead of notifiers, because I think I can achieve the same "Wait on Notification" functionality with a queue, except I don't think there is a restriction on using a Queue across the VI Server.
    My Questions are:
    Is there another way to get VIs to execute asynchronously OTHER than the VI Server?
    Is there a better way to communicate between them? (I considered using a User Event control, and generating the commands using that, however I can't poll the status of the User Event without an Event structure, preventing me from terminating my task once the user generates the "end-task" request.
    Does anybody else find the LabVIEW documentation to be frustratingly lacking at times?
    Any help, comments, or stories of similar situations would be appreciated.

    tmh,
    No, I'm pretty sure you understand perfectly, as that's exactly what I wanted to do. I knew that if you had two loops on a block diagram, they would execute in parallel, but I assumed that if you had a loop and a SubVI on a block diagram, that whichever one started executing first would have to terminate first. I was making the problem much more difficult then it needs to be, as that method would allow me to use notifiers to achieve the intended effect.
    As far as notifiers 'not working with the VI Server' as I must have put it, I got that straight from the LabVIEW help files. Under the topic "Notifier Operation Functions" I read that "You cannot use notifiers to communicate with VIs on other computers. For example, you cannot use notifiers to communicate across a network or the VI Server."
    Originally, I was using a named notifier. So, my "master" vi would create a notifier to send commands with, then it would launch the "slave" vi asynchronously with an invoke node, and send commands when necessary. The Slave obtained the notifier by using the "Obtain Notifier" vi, supplying the same name as the Master did for the name parameter. This worked fine when I was testing - however once I built my program to be an executable, the Slave created a new notifier, rather than obtaining the same one being used by the Master. (I'm not 100% sure that's the exact reason - it may just not have received commands [it was a while ago that I was playing with that approach]. But I do know that that method works fine in an uncompiled program, but once it's compiled, it stops working. Who knows - there may exist actual ways to pass the notifier, like a global variable or something like that).
    According to the *fabulous* LabVIEW documentation, Queues don't have this limitation, so I rewrote my VI to use a queue of length one, rather than the notifier.
    -----------------sidebar------------------------
    (does anyone find that the LabVIEW documentation can be frustratingly lacking at times? Like, why can't I use notifiers across the VI server? And why can I use queues? I'm not asking for them to show me the guts of LabVIEW, I just think that it would give developpers more control and confidence when coding that they know what's going on, and have at least a general idea of how things work)
    --------------end of sidebar--------------------
    However, somewhere in my switch between Queues and Notifiers, I must have messed up something, as after that worked fine during the testing phase, after a compilation, I received an error (1013 I believe) whenever I tried to load my slave saying "Front Panel Heap Dump" - which is strange because the front panel of my slave should not have been loading, and was supposed to have been removed from the executable.
    Not that that last bit is super relevent to the original topic of discussion, but it might be useful to someone later on.
    In any event, thank you for your help. I suspect that that will be the perfect solution for my needs, and when I get back to that chunk I was working on and get it working, I'll let you know.
    Thanks again.

  • How can spwan out parallel HBR in one single batch file?

    We have several Hyperion business rules to be executed at night batch. To ease the control and management, we put all business rules under one single batch file. However how can we spawn out different business rules so that these rules can be executed in parallel?
    We are using Windows Server 2003, Scheduled Tasks with Essbase ver 11.1
    Thanks!

    CL wrote:
    R1 and R2 can in parallel and but must finish before R3 and R4?
    Can you START /WAIT a batch that then spawns two more START sessions without a /WAIT?
    Do that twice and you will get rough parallelism.
    Failing that, why not just use an OS scheduler? Have the first processes write completion logs. Time the second so that the first should be done, but put in a loop that looks for FILEEXIST.
    Lots of ways to approach this. Scripting this stuff is always fun.
    Regards,
    Camerin LackpourThanks! Yes there are lots of ways to handle with batch scripts. Windows default Scheduled Tasks does not have dependency checking function and needs to write scripts to check something e.g. the log file.

  • 'You can post in new year only after closing the previous year

    Hello Experts,
    I am also getting same error while executing depreciation run AFAB ''You can post in new year only after closing the previous year''.
    I found one OSS Note 18800 and it is saying solution as below ...
    At the first depreciation posting in the new fiscal year after a shortened fiscal year, the fiscal year variants must, in all cases, still be entered in asset customizing and in FI customizing for the affected company code. If necessary, all periods for the following fiscal year must be maintained with the variant of the shortened fiscal year.
    Up to 2.2D the following correction must also be installed:
    Please carry out the syntax check only in main program SAPLAFAR.
    But in my case there is no shortended fiscal year.
    Can I apply this OSS note correction instructions ?
    Please suggest me.

    Hi
    I don't think so. Moreover that is applicable till 2.2D.
    Moreover depreciation is to be run for all periods you have not run earlier. Please check upto which period dep run has happened. Thereafter close the fiscal years in order thro AJAB.
    S Jayaram

  • Can't get icloud to restore after crash from ios 8.1 update, says server not avaible, any suggestions?

    Had ipad2 crash during ios 8.1 update, tried different things to make it work, ended up booting as new.  Tried on a couple different days to restore from clould and it says server  not avaible, would love to get the info back, any suggestions?

    Can someone tell me the implications of using the command RESET DATABASE on my system days after I did the open reset logs? I opened the database with the ALTER DATABASE OPEN RESETLOGS in SQL not RMAN and I see the below note.....
    Re: Can't get dataguard to recover after SAN crash.
    To reset the incarnation of the target database in the RMAN repository, which means to do either of the following actions:
    •Inform RMAN that the SQL statement ALTER DATABASE OPEN RESETLOGS has been executed and that a new incarnation of the target database has been created. Note that if you run the RMAN command ALTER DATABASE OPEN RESETLOGS (not the SQL statement with the same keywords), then RMAN resets the target database automatically so that you do not have to run RESET DATABASE. By resetting the database, RMAN considers the new incarnation as the current incarnation of the database.

  • The workbook report no authorization, but related query can show part data

    Dear All,
    We meet an error, The workbook report no authorization, but related query can show part data.
    We have a workbook, it have 1 queries, and when we key in condition to run it, in one field we put on one more condition(Z3XXX = ' WZO'  & ' WZA")(User didn't have authorization for this condition),  and workbook report no authorization.
    Then we checked  authorization check log and it show "You do not have sufficient authorization on Z3XXX = ' WCO'.
    But when we execute the related query with same condition. the query can open and show WZA's data.
    I'd like to know the reason.
    thanks & Best Regards,
    Kent Yu

    Dear All,
    We meet an error, The workbook report no authorization, but related query can show part data.
    We have a workbook, it have 1 queries, and when we key in condition to run it, in one field we put on one more condition(Z3XXX = ' WZO'  & ' WZA")(User didn't have authorization for this condition),  and workbook report no authorization.
    Then we checked  authorization check log and it show "You do not have sufficient authorization on Z3XXX = ' WCO'.
    But when we execute the related query with same condition. the query can open and show WZA's data.
    I'd like to know the reason.
    thanks & Best Regards,
    Kent Yu

  • (HELP~) Most applications can not be executed

    Hi, after updating my OSX 10.6.4, most applications (such as iTunes, iPhoto, Pages, Firefox... etc.) can not be executed. They always shows that the application can not be executed on this OS, even I had checked my MAC HD.
    However, when I swith to bootcamp OS (Windows XP sp3), everything goes fine.
    How can I fix it?
    Thank you all.

    Create a new User go to System Preferences > Accounts > "+" (make it an admin acct) and test the apps in this new account, if they work the problem is isolated to your User and not systemwide.
    If the issue is limited to your user account try starting up Safe Mode (It will take more time to startup in Safe Mode because it runs a directory check.)
    If your apps functions correctly that way, go to System Preferences >> Accounts >> Login Items, and remove them. Boot normally and test. If not go to/Users/yourname/Library/Contextual Menu Items and move whatever is there to the desktop. Then do the same with /Library/Contextual Menu Items. Lastly, try moving/Users/yourname/Library/Fonts to your desktop and restarting.
    Log out/in or restart, if that sorts it start putting items back one at a time until you find the culprit.
    If the issue is systemwide then, you may be able to repair this with the The 10.6.4 Combo Update This is a fuller install, as opposed to an incremental "delta" update so it should overwrite any files that are damaged or missing. It does not matter if you have applied it before.
    Remember to Verify Disk before update and repair permissions after update from /Applications/Utilities/Disk Utility.
    -mj

  • Query takes time to execute

    I am creating a jsp application . . . .I am retreiving some values from my database oracle 10g..my query taking time to execute even in isql plus..am uisng tomcat5 and oracle 10gR2..can anyone pls tell me why it happens...my query fetches data from four tables...i dont know exactly why its taking so muc time say 50seconds...when i run the application in my local host it retrievs fast when i do that in server it creates a problem..
    Actually it works fine when i deployed in my client server it takes time sometimes it takes atmost one minute
    1.pls tell me how can i test my query about the performance
    2.is der any command in oracle to test
    3.how much bytes it takes

    Look at this thread...
    When your query takes too long ...

  • Asynch controls not executing in parallel

    Can a control or JPD have more then one thread running thru it at a time?
    The workshop docs states controls can be asynch but test seem to indicate that asynch controls do not really run in parallel. They seem to be serialized (I think). The only exception I can find so far is a design using web services as demonstrated by the sample provided with the WebLogic install. The example is Conversation.jws which demonstrated conversations and polling.
    Is it possible, without using web services, to have both the parent process and the asynch custom control execute in parallel. That is, have them run in parallel threads?
    My goal is to create a JPD that calls a control to build a report and as the control is building the report, the JPD performs other actions in parallel. The JPD will monitor the progress of the report control by either a callback or by polling it to see if the report has been completed in between tasks.
    Can somebody tell me if this is possible?
    Is it possible for the parent process and the asynch custom control to run in parallel?
    Any comments would be appreciated.
    Thanks…

    Hi,
    If the activities are all PL/SQL, then the Workflow Engine doesn't run anything in parallel - there is only one engine processing the activities. The theory is that it runs so quickly it will look like it's in parallel with no real effect.
    So what you are getting is expected behaviour - it's just that because you have deferred it to the background engine, you have a greater opportunity to see how the engine works.
    HTH,
    Matt
    Alpha review chapters from my book "Developing With Oracle Workflow" are available on my website:
    http://www.workflowfaq.com
    http://forum.workflowfaq.com
    NEW! - WorkflowFAQ Blog at http://thoughts.workflowfaq.com

  • Execute a function after event

    Hi experts,
    i want to execute a function after a event. I give you an example:
    Zprogram1call function zfct1.
    While execution of function zfct1is running, zprogram2 call function same function zfct1.
    But it's possible that function execution  from zprogram2 to run only after function execution from zprogram1 is finished? I mean , function execution from zprogram2 to sart delayed...only when zfct1 is available,when it's not running in other process.
    Many thanks.
    Dan M.

    you can go for
    CALL FUNCTION func STARTING NEW TASK task
    and in the task id pass the same task name(any char variable of length max 8 chars).
    so, what happens here is :
    prog1 calls fct1 with task T1. (keeps running)
    prog2 calls fct1 with task T1.(same T1, so the second call can also access the global variables from first call).
    hence, you can have a global variable set to X in the fct1 before the update lines... and at the beginning of fct1 you can check that this global variable NE X. then only continue. else wait until that becomes blank
    i have never tried this, but giving you a theory. try implementing it..

Maybe you are looking for

  • How can I get an audio file to autoplay in slideshow ??

    Cheers all, I have created a photo gallery as one of my web pages promoting my wedding images. I think it would be very effective if the slide show button on my photo gallery page would magically run an audio file of my choosing from my iTunes librar

  • ITunes 10.5.3 for Windows crashes when loading Library

    I am running iTunes 10.5.3 for Windows 7 and somehow my library has been corrupted and will not load..i tried using a previous library loading in safe mode, and it appears to work until it gets the the Genius update, when it crashes..has anyone had a

  • Cameras and Formats

    I know this is not strictly a discussion group for Cameras and Formats so I apolgise in advance for posting, but my options for advice are drying up and I figure that subscribers of the Final Cut Pro group will perhaps be able to assist. We're a musi

  • Java Runtime will not uninstall!

    I just tried to install sun's java vm (v.1.4.1_02), but nearing the end of the installation, the install would not go any further so I had to cancel. Now my system says that the runtime environment is installed, but if I try to uninstall it in the co

  • Cannot select iTunes Audio Track 2 / Dolby Digital

    Hello, I have a sound card (from Maplin, CMI-8738) with digital optical output configured to use SPDIF output and connected to a Denon Surround Receiver. The sound card is outputting dolby digital fine, when I play a test Dolby Digital encoded file o