What does this parameter do "Force SQLExecute" in the background.

Can anybody tell me  what does this parameter does  "Force SQLExecute" in the background?
It is in the sbo file.

Guarav,
I searched for your comment "Force SQLExecute" in the slew of BO XI R2 PDFs I have stockpiled away and found this entry in the PDF "boxir2sp2_readme_with_chf.pdf":
-quote
CHF14
ADAPT00597178 Patch ID: 39,211,515
Description:
When an SQL server ODBC connection is used, users are unable to create a Desktop Intelligence report that is based on a stored procedure that creates, populates, and then drops a temporary table.
New Behavior:
This problem is resolved.
Known Limitations:
If users want to execute a stored procedure that creates, populates, and then drops a temporary table in Free-Hand mode, they can modify the odbc.sbo file:
1. In a text editor, open the odbc.sbo file, which is in the following directory: <BOEINSTALLFOLDER>\BusinessObjects
Enterprise 11.5\win32_x86\dataAccess\connectionServer\odbc.sbo.
2. In the sections "MS SQL Server 7.x", "MS SQL Server 2000" and "MS SQL Server 2005", locate the following line:
<Parameter Name="Force SQLExecute">Procedures</Parameter>
3. Replace the line with the following:
<Parameter Name="Force SQLExecute">Always</Parameter>
-unquote
So hopefully this tidibit of information helps you to understand the parameter and usage.
Thanks,
John

Similar Messages

  • What does " this code must be redeemed in the Australian storefront " mean? And how can I fix it?

    What does " this code must be redeemed in the Australian storefront " mean? And can I fix it?

    All iTunes gifts and gift cards are country-specific, they can only be redeemed and used in their country of issue. Are you in Australia with an Australian billing address on your account ? If you are then try going to the bottom of the Featured tab in the App Store app on your iPad and tap on your account id, tap on 'View Apple ID' on the popup and log into your account, and then select the Country/Region section and select Australia.
    If you are not in Australia then you won't be able to use it.

  • What does this message mean on my PC " the procedure entry point sqlite3_wal_checkpoint could not be located in dynamic link library SQlite3.dll.

    Why does this message pop up on my PC after i start up " (AppleSyncNotifier.exe-Entry Point Not Found ) the procedure entry point sqlite3_wal_checkpoint could not be located in dynamic link library SQlite3.dll. ? What can I do to fix this problem ?

    Found this several months ago when I updated ITunes. I don't know why they still haven't fixed this, but I had to do this again yesterday 10/13/2011 when I updated.
    With Windows Explorer, navigate to your C:\Program Files\Common Files\Apple\Apple Application Support folder.
    Copy the SQLite3.dll that you should find there, navigate to the nearby Mobile Device Support folder, and Paste it in there also.
    Reboot and see if all is well
    In case that your OS is Windows 7 (64 bit)
    1. Open windows explorer, go to location C:\Program Files (x86)\Common Files\Apple\Apple Application Support
    2. Copy file "SQLite3.dll"
    3. Open new windows explorer, to to location C:\Program Files (x86)\Common Files\Apple\Mobile Device Support
    4. Paste file "SQLite3.dll" to the location.
    5. Reboot your computer, it should not display that message, it should be clear.

  • To install firefox 5.0, message says avast1web rep20110101 will be disabled. What does this mean? Will it disable the avast antivirus installed on my computer?

    What more can I tell you? Firefox recommends 5.0 be installed. When I try to do so, I get a message that says some addons are not compatible. specifically avast web rep 20110101. I have no idea what avast web rep 20110101 is and am concerned that it refers to the avast antivirus protection installed on my computer. I need to know if that is what the message means & that if I install 5.0, I will disable the antivirus protection.

    Does this mean that Avast will continue to scan for viruses and protect my computer from harmful or malicious internet diseases?

  • What does this mean? Is my battery the problem or is the software an issue??

    As you can see.....it is plugged in. It shows the top right battery icon at full, but you can clearly see it's not. This is one of the problems I've been trying to get sorted out. Holding the home and power buttons are not going to help me fix this. I don't want to restore. I did that a million times. Does this mean I need a completely new battery? It won't charge, it won't turn on without it being plugged in, and when I turn the phone off...the charging screen doesn't appear. When I plug it in, the phone just boots up. Are there others who have had this same problem? I doubt updating to the lastest ios would have caused this. Please help. Thanks.

    Ok, so I turned on the battery percentage indicator. It said the battery is at 3%. I also unplugged the charger and for some reason it hasn't shut off like it usually does. Now, I am trying to drain the battery. I put on a video and it still hasn't went down to 2%.........this all seems very strange to me.

  • What does this parameter do ?

    Hi there,
    I'm working on some d&d code. When I drag, I want to see an image and not only the drag cursor.
    There is a parameter in DragGestureEvent where I can put an Image. Is this the image that'll be visually dragged on screen ?? My code:
        e.startDrag(DragSource.DefaultCopyDrop,dragImage, new Point(10,10), new StringSelection("ARF!!"), this); dragImage is an instance of image.
    This doesn't show the image. Is there something wrong ?

    Too bad. :(
    But the image parameter is the correct parameter to add a custom image ? (perhaps if I want to run this on a macintosh, I will see the picture there?)
    Saddly, in windows there is no way to change the drag
    and drop cursor. On any other OS, a simple search
    should provide the answer.

  • What does this parameter do ? (d&d)

    Hi there,
    I'm working on some d&d code. When I drag, I want to see an image and not only the drag cursor.
    There is a parameter in DragGestureEvent where I can put an Image. Is this the image that'll be visually dragged on screen ?? My code:
        e.startDrag(DragSource.DefaultCopyDrop,dragImage, new Point(10,10), new StringSelection("ARF!!"), this); dragImage is an instance of image.
    This doesn't show the image. Is there something wrong ?

    On Windows, if you want to simulate the drag of the selected image, you have to do it in the DropTargetListener like this :
    It is an inner class of the component you want to drag in (Called here MyDraggableComponent : in most cases it's a JTree).
    In this component there is an attribute like this :
    BufferedImage buffImage;
         final class MyDropTargetListener implements DropTargetListener {
              private Rectangle rect2D = new Rectangle();
              public void dragEnter(DropTargetDragEvent dtde) {
                   Point pt = dtde.getLocation();
                   paintImmediately(rect2D.getBounds());
                   rect2D.setRect((int) pt.getX(),(int) pt.getY(),buffImage.getWidth(),buffImage.getHeight());
                   ((Graphics2D) getGraphics()).drawImage(buffImage,(int) pt.getX(),(int) pt.getY(),MyDraggableComponent.this);
              public void dragExit(DropTargetEvent dte) {
                   paintImmediately(rect2D.getBounds());
              public void dragOver(DropTargetDragEvent dtde) {
                   Point pt = dtde.getLocation();
                   paintImmediately(rect2D.getBounds());
                   rect2D.setRect((int) pt.getX(),(int) pt.getY(),buffImage.getWidth(),buffImage.getHeight());
                   ((Graphics2D) getGraphics()).drawImage(buffImage,(int) pt.getX(),(int) pt.getY(),MyDraggableComponent.this);
              public void dropActionChanged(DropTargetDragEvent dtde) {
                   Point pt = dtde.getLocation();
                   paintImmediately(rect2D.getBounds());
                   rect2D.setRect((int) pt.getX(),(int) pt.getY(),buffImage.getWidth(),buffImage.getHeight());
                   ((Graphics2D) getGraphics()).drawImage(buffImage,(int) pt.getX(),(int) pt.getY(),MyDraggableComponent.this);
              public void drop(DropTargetDropEvent dtde) {
                   Point pt = dtde.getLocation();
                   paintImmediately(rect2D.getBounds());
                   rect2D.setRect((int) pt.getX(),(int) pt.getY(),buffImage.getWidth(),buffImage.getHeight());
                   ((Graphics2D) getGraphics()).drawImage(buffImage,(int) pt.getX(),(int) pt.getY(),MyDraggableComponent.this);
         }You have to create the buffered image in the method dragGestureRecognized od the DragGestureListener.
    For example a DragGestureListener in a JTree called MyDraggableComponent :
         final class TreeDragGestureListener implements DragGestureListener {
              DragSourceListener tdsl;
              public TreeDragGestureListener(DragSourceListener dsl) {
                   this.dsl = dsl;
              public void dragGestureRecognized(DragGestureEvent dge) {
                   TreePath path = getSelectionPath(); // getselectionpath
                   if (path != null) {
                        DefaultMutableTreeNode selectednode = (DefaultMutableTreeNode)path.getLastPathComponent();
                        Rectangle pathBounds = getPathBounds(path); //getpathbounds of selectionpath
                        JLabel lbl = (JLabel)getCellRenderer().getTreeCellRendererComponent(MyDraggableComponent.this, selectednode, false , isExpanded(path),((DefaultTreeModel)getModel()).isLeaf(path.getLastPathComponent()), 0,false);//returning the label
                        lbl.setBounds(pathBounds);//setting bounds to lbl
                        buffImage = new BufferedImage(lbl.getWidth(), lbl.getHeight(), BufferedImage.TYPE_INT_ARGB_PRE);//buffered image reference passing the label's ht and width
                        Graphics2D graphics = buffImage.createGraphics();//creating the graphics for buffered image
                        graphics.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_OVER, 0.5f));     //Sets the Composite for the Graphics2D context
                        lbl.setOpaque(false);
                        lbl.paint(graphics); //painting the label on the graphics of the buffered image
                        graphics.dispose();
                        dragSource.startDrag(dge, DragSource.DefaultMoveNoDrop , buffImage, new Point(0,0), new TransferableNode(selectednode), dsl);               
         }I hope this helps,
    Denis

  • What does this parameter do _disable_logging

    Please explain me about disablelogging parameter. so i can use in my import for speed up import

    Understand, No Problem bec it's test database.
    As u say “ setting disablelogging=true will stop the dbwr process writing redo information to the redo logs. “ done the same.
    i am using oracle 10.2.3, But when i am seeing in my alert log file I am getting following entry.
    Thread 1 advanced to log sequence 38
    Current log# 6 seq# 38 mem# 0: /u01/redo/testdb/redo06.log
    Tue Jan 29 18:43:31 2008
    Thread 1 advanced to log sequence 39
    Current log# 7 seq# 39 mem# 0: /u01/redo/testdb/redo07.log
    Tue Jan 29 18:46:14 2008
    Thread 1 advanced to log sequence 40
    Current log# 8 seq# 40 mem# 0: /u01/redo/testdb/redo08.log
    Tue Jan 29 18:52:27 2008
    Thread 1 advanced to log sequence 41
    Current log# 1 seq# 41 mem# 0: /u01/redo/testdb/redo01.log
    Tue Jan 29 19:00:34 2008
    Thread 1 advanced to log sequence 42
    Current log# 2 seq# 42 mem# 0: /u01/redo/testdb/redo02.log
    Tue Jan 29 19:03:22 2008
    Thread 1 advanced to log sequence 43
    Current log# 3 seq# 43 mem# 0: /u01/redo/testdb/redo03.log
    Tue Jan 29 19:06:25 2008
    Thread 1 advanced to log sequence 44
    Current log# 4 seq# 44 mem# 0: /u01/redo/testdb/redo04.log
    Tue Jan 29 19:09:41 2008
    Thread 1 advanced to log sequence 45
    Current log# 5 seq# 45 mem# 0: /u01/redo/testdb/redo05.log

  • In iphoto I get the mesage "The volume for [picture] cannot be found"  What does this mean?  I can see the pictures

    iphoto message is "The volume for this photo cannot be found."  I can see the pictures but cannot move them?

    The "volume" is referring to the picture's location, i.e. hard drive, etc. In any case there is an iPhoto forum where those experts are. Post there.

  • HT3669 What does this mean?  Can't install the software for the HP Photosmart A510 series because it is not currently available from the Software Update server."  My Imac finds the printer b ut when I go to install it, I get this error.  Please help.

    Can't install the software for the HP Photosmart A510 series because it is not currently available from the Software Update server.

    That means you go here:
    http://support.apple.com/kb/DL907?viewlocale=en_US&locale=en_US
    to get the latest HP drivers.

  • Backup failed . Make sure your computer and backup drive are on the same network. What does this mean?

    Backup Failed.  Comment is "Make sure your computer and backup disc are on the sme network and the backup disc is turned on".  What does this mean?

    Just back from the dentist.
    Did a hard reset and when i asked time capsule to do a backup it tells
    me
    "Time Machine could not complete the backup. The backup disk image is already in use"
    I think I misunderstand how this back up device works.
    Is it to be plugged into the back of the router with an ethernet cable?
    I have the Time capsule sitting beside my Imac.
    The cable modem and router are in another room
    I am new at this stuff.  Thank you for patience and help

  • Error Code: U44M1I200. What does this mean?

    I have the Error Code: U44M1I200 when trying to update various Adobe programs.  The programs failed to update.  What does this mean?

    > Download and Install the latest version of Adobe Application Manager from the below link :
    Windows: http://www.adobe.com/support/downloads/detail.jsp?ftpID=4773
    Mac: http://www.adobe.com/support/downloads/detail.jsp?ftpID=4774
    > Try to install the update now and check.
    >If error still persists, Rename the OOBE folder to OOBE OLD from
    Mac: MAC HD/Library/Application Support/Adobe
    Win: C:\Program Files (x86)\Common Files\Adobe\
    > Install AAM again and try to launch.

  • My sons ipod touch has a lock with a arrow circle around it (next to the battery life) what does this mean

    my sons ipod toucj has a lock with a circle arrow around it (next to the battery life) what does this mean?

    that would be the rotation lock
    it can be activated and deactivated by double clicking the home button (round button at the base of the ipod)
    and if you swipe along the bottom from left to right 
    you should see the same symbol on the left.
    Message was edited by: david from Brisbane

  • What does it mean when an iphone sends an imessage to an ipad but it doesnt say delivered?what does this mean?, what does it mean when an iphone sends an imessage to an ipad but it doesnt say delivered?what does this mean?

    why doesn't it say delivered when you send an imessage from and iphone to an ipad?what does this mean?

    It means that the device the message was sent to did not reply that it had been received by the device.

  • HT1338 I have plugged in a external drive and i get the following error message 'mount - t-ntfs-3g-o force/dev/rdisk3s1' help what does this mean?

    I have plugged in a external drive and i get the following error message 'mount - t-ntfs-3g-o force/dev/rdisk3s1' help what does this mean?

    You may be infected with malware.
    See: [[/questions/860893]]

Maybe you are looking for

  • Possible to check total incoming/outgoing size per domain?

    Hello :), Is it possible to see the top incoming or outgoing emails by total size? The intention is to determine which domain or emails may be eating the network bandwidth. Also, is there a Report to check the Incoming email graph/statistics a listen

  • X11 and moving windows/Spaces

    Hi! After upgrading (actually clean install) to Leopard, I have some weird X11 behaviour: When I use the DVI to external screen for dual head, X11 seems to only want to inhabit the main display/screen, and I am not able to drag the window(s) to the o

  • Template tables shifting when editing editible regions

    Hi there everyone, Have made a template. When making ne pages from the template, and then editing the editible regions, the tables are shifing and not going back to original place, even when I click here and there to see if they will go back. Sometim

  • Can I upload a Captivate course to Connect AFTER embedding Edge animations through App Packager?

    I would like to include animations I've created in Edge Animate and the App Packager makes this pretty easy. However, afterward I have an HTML course that I can't seem to upload to Connect. When I ZIP it up I'm told by Connect that it's an invalid fo

  • Procedure entry point - dvaui.dll

    Hi guys, I installed Premiere Elements 10 last night in order to edit some Quicktime files. I have the old CS2 Pro Version on my machine, but editing HD Quicktimes is just a nightmare. So I thought I give Elements a try and see how well it works. Dow