IBot results in Shared location is over writing  with no results (OBIEE 10g

Hi Dudes,
We are saving iBot results in shared location using java script at 8.am in morning everyday and files looks good. but the same file is overwriting in afternoon time with no results.
actually we are not overwriting file in shared location but it is happening automatically.
please suggest me.
Thank,
Raji.

Thank you very much for your detailed inputs regarding Point #2 Prakash.
You are right in saying that I've this requirement to improve performance and users don't need to execute the reports again and again by hitting database or from cache. Because data per day is bit large to store in the table or to caching the data.
Regaring point #3 I want to use BFILE datatype to store the location of the file so that I'm planning to display hyperlink of the files to the users in OBIEE dashboard accordingly users will download the required report data.
Files I can store anywhere by using Ibots as suggested. Could you please suggest any approach in OBIEE to highlight a link to the files in a report or dashboard to download the required files data?
I found that I couldn't able to select BFILE data type column in Physical layer to see the data. and also its throwing error when I select this presentaion column in the report.
Below error message I'm getting:
View Display Error
Odbc driver returned an error (SQLExecDirectW).
Error Details
Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 46036] Internal Assertion: Condition m_CountFields == static_cast<int32>(m_ColumnNameVector.size()), file .\Src\SQCSCacheStorageListStream.cpp, line 222. (HY000)
SQL Issued: SELECT "IBOT_DATA#1".IBOT_FILE saw_0 FROM IBOT_DATA ORDER BY saw_0
Please advice solution if you come across this issue eralier to resolve.
Kind Regards
Murali.
Edited by: Muralidhar b on Oct 29, 2009 5:16 PM

Similar Messages

  • Saving an iBot on a shared location

    Hello,
    Can anyone please tell me how I can save an iBot to a shared folder?
    Thank you!

    Hi hendrti ,
    Unless you check Publish for subscription check box you can't save the iBot in Shared Folder...
    Do this,
    1). Go to Recipient tab, select check Publish for subscription and Specify who can subscribe by selecting the Select button.
    2). Now go to General tab, select Data Visibility to Not personalized ... as you are publishing to other users..
    Now you able to see the Shared Folder with Common folder while saving your iBot
    Please mark as Correct if you fell this is correct and close the thread...
    Thanks & Regards
    Kishore Guggilla

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

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

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

  • How to automate storing ibot results in a directory

    Hello,
    I have a requirement of
    1. scheduling couple of reports which runs every day
    2. Automating storing the results of the scheduled reports (Alerts) in a directory in the server (with date sufix to the files or in a new directory for date).
    My development environment is in Windows which I'm working currently and production environment would be in UNIX. Please suggest solution in both cases.
    3. Finally to create a dashoboard for end users with a date prompt to access these files depending on the date filter.
    My approach for the point # 1 and 3 are as below
    1. Scheduling set of reports by using Ibots which I configured successfully to run the reports on daily basis.
    3. I want to create a table with column1 to store date, column2 to store file name and column3 with BFILE data type to store the link to the files in a directory. This part I would like to automate in a unix script in production. And want to create a request with date filter and display file content from column3.
    Please correct me if I'm wrong in my above approach and Advice for the point number 2 to automate downloding of the scheduled report results in a file.
    Regarding point #2 Is it something to do with GO URL?? I executed the URL (http://XXXXX:XXX/analytics/saw.dll?GO&NQUser=Administrator&NQPassword=Administrator&Path=/shared/transactions/Sales+By+Month&Action=download&Options=md) from Internet Explorer and its prompting to save the results in a location. Can we give file location like C:\DOWNLOAD also in the URL? And how can I call this URL inside a shell script or from windows command prompt?
    Thanks in advance
    Muralidhar B
    Edited by: Muralidhar b on Oct 28, 2009 9:48 PM

    Thank you very much for your detailed inputs regarding Point #2 Prakash.
    You are right in saying that I've this requirement to improve performance and users don't need to execute the reports again and again by hitting database or from cache. Because data per day is bit large to store in the table or to caching the data.
    Regaring point #3 I want to use BFILE datatype to store the location of the file so that I'm planning to display hyperlink of the files to the users in OBIEE dashboard accordingly users will download the required report data.
    Files I can store anywhere by using Ibots as suggested. Could you please suggest any approach in OBIEE to highlight a link to the files in a report or dashboard to download the required files data?
    I found that I couldn't able to select BFILE data type column in Physical layer to see the data. and also its throwing error when I select this presentaion column in the report.
    Below error message I'm getting:
    View Display Error
    Odbc driver returned an error (SQLExecDirectW).
    Error Details
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 46036] Internal Assertion: Condition m_CountFields == static_cast<int32>(m_ColumnNameVector.size()), file .\Src\SQCSCacheStorageListStream.cpp, line 222. (HY000)
    SQL Issued: SELECT "IBOT_DATA#1".IBOT_FILE saw_0 FROM IBOT_DATA ORDER BY saw_0
    Please advice solution if you come across this issue eralier to resolve.
    Kind Regards
    Murali.
    Edited by: Muralidhar b on Oct 29, 2009 5:16 PM

  • Can you mode Address Book database to a shared location?

    I'd like to move my address book DB to a shared location. Dropbox in particular, but it would be the same thing using an iDrive.
    The idea being that my Mac & my laptop would both use one shared db so they are always in sync. A change made on one would be the same on the other.
    Anyone know if this is possible?
    I know you can sync contacts with MobileMe but Dropbox is free and I have no need/want for wasting $99/yr on MobileMe just to sync my contacts. This is more of a "wouldn't it be nice" than a necessity/
    Thanks

    you can try it but I would advise against it. the results might be unpredictable.
    here is what you can try. quit address book on both computers. on the computer with the full address book database move the address book folder /users/username/library/application support/address book to the dropbox folder. leave a symbolic link to the new location in the old place. that's done with the following terminal command assuming you are using the default location for your dropbox.
    ln -s ~/Dropbox/AddressBook ~/Library/Application Support
    wait for Dropbox to finish syncing so both computers have the new folder in place. that's very important. then on the second computer delete the address book folder /users/username/library/application support/address book and run the above command too. now the AB folder sits in the dropbox and you have sym links pointing to it on both computers. however, I suspect you might have issues if you try to run address book simultaneously on both computers. if you feel brave you can try it out. but back up the address book folder first.

  • 11.1.2.3 multiple node install, not using a shared location for HTTP config files

    I finished, as best as I could a three server install of 11.1.2.3; foundation server with Workspace, R&A, EPMA, Essbase tools, an Essbase only server, and a Planning server.  I did not use a 'sharedlocation (Advanced link in HTTP screen) for the servers.  My question is; 'What needs to be done to complete the configuration, as Planning Administration does not show up in Workspace?'  It is possible to re-configure HTTP to a 'sharedLocation' after the install and config tasks are done?
    Thanks,

    You can configure the OHS shared location at any point
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Help required in reading a file from Shared location on Network

    Hi,
    I need help in reading a file from a shared location. Can you kindly tell me the pattern for inputting the shared location path. I am using fileUtilService>Exists
    "\\Shiva\test\shared\eForms\temp.xlsx" is the actual location of the file. How should i input the location in the INPUT variable of EXISTS.

    readResource content operation will fetch documents from Adobe Repository. Unless you checkin the required file into repository, the above error will remain.
    From a shared folder, you should able to read the files using readDocument (using FileUtils) without any issues. Perhaps, the access rights prevent the execution.
    If you are running JBoss as a windows service (turnkey will create a windows service for the JBoss instance), try the following:
    Run -> services.msc -> Right click on JBoss service for Adobe LiveCycle -> Properties
    Check the value given under logon tab. The User Account mentioned there should have appropriate access to the shared folder you are attempting read.
    Nith

  • Sharing internet connection over bluetooth

    i have 2 computers less than 10 metres apart, one of which is connected to the internet broadband. the solution for sharing the connection wirelessly with this particular setup is rather expensive.
    i was wondering if it would be possible to share the internet connection on the computer that has it over bluetooth with the other computer.
    i read an archived response suggesting that it was. can someone confirm?
    just to be clear:
    i hoping to have 2 computers bluetooth connected the second of which will be able to connect to the internet via the 1st computers connection.

    While it is not explicitly supported by OS X, both machines can be configured to do this. For lots of reasons, I don't think that this is a good idea. Your Bluetooth link is so slow compared to either a wireless—or even much faster terrestrial—ethernet link, that it's not worth the effort to enable this service.
    Save yourself a great deal of grief and disappointment, and get ahold of a relatively inexpensive ethernet gateway [wired or wireless] and set up a small local area network. You will be far more secure, and enjoy a far better level of performance than you would see if you attempted to create a Bluetooth LAN.
    That said, here is a set of instructions for enabling internet sharing using Terminal commands. It's paraphrased from…
    http://www.macgeekery.com/hacks/pppoverbluetooth
    In the Bluetooth preference pane's sharing tab, make a new Serial Port Service and name it bt-ppp and make it an RS-232 device. If it's on, disable internet sharing in the Sharing prefpane. Then create the following script [shown below.]
    The script starts pppd on the new Bluetooth serial device you've created, then sets up IP forwarding, NAT, and the like. The en0 can be replaced with en1 if your primary net connection is AirPort. You can change the IP listed to something appropriate for your network, as well. If you put it in the range of IPs you're already using for your home network, natd is smart enough to work as a router instead of a gateway. Run as root, but—for the love of all that is holy and just—use sudo instead of su.
    This is the script you must run in terminal:
    /usr/sbin/pppd /dev/tty.bt-ppp 115200 noauth local passive proxyarp asyncmap 0 silent persist :10.1.1.25 &
    /usr/sbin/sysctl -w net.inet.ip.forwarding=1
    /usr/sbin/natd -same_ports -use_sockets -log -deny_incoming -interface en0
    /sbin/ipfw add divert natd ip from any to any via en0
    If you are unfamiliar with issuing commands from the Terminal or are not familiar with what these unix commands mean, I would suggest that you proceed very cautiously, and do more research before attempting this.

  • Using safari web pages have writing over writing hard to read

    I do a lot of surfing from web page to web page.  Lately it is very hard to read many of the pages as there is writing over writing.  Sometimes a section on the page is too small and I cannot read to entire content.

    Two main things you can try are to reset Safari, which can be selected under the Safari menu item and try deleting the .plist.
    You need to look in your user Library/Preferences for the .plist. Hold down the option key while using the Finder "Go To Folder" command. Enter ~/Library. Delete the .plist(s) for the application.
    If you prefer to make your user library permanently visible, use the Terminal command found below.
    http://osxdaily.com/2011/07/04/show-library-directory-in-mac-os-x-lion/
    You might want to bookmark the command. I had to use it again after I installed 10.8.2. I have also been informed that if you drag the user library to Finder it will remain visible.
    The article below contains other things to try:
    Speeding up Safari

  • Sharing Quicken Files Over a Mac and PC Network

    I've been sharing Quicken files over a PC network for years without any problems.
    Now that I have a Mac, I want to move Quicken to the iMac, but still be able to access and update the files using a PC.
    I know that Quicken for the PC and Quicken for the Mac are 2 different programs and the data files are incompatible. I do have VMWare Fusion, but have yet to install it.
    If I run Quicken 2007 (PC Version) on the Mac using Fusion, can I also access the files using a separate PC? If so, what do I need to do to set this up?
    The PC is running XP Pro. I've got a wireless home network and will probably install XP home edition on the Mac, though I have not fully decided on the Windows OS I'm going to install.
    Thanks in advance.

    No offense, but you are not being helpful.
    I have tried the Quicken forums with no help. I have also tried searching this forum and have not been able to find the answer I need.
    From what it sounds like, you don't know the answer either. But somebody else might and I would appreciate it if you didn't discourage others from answering.

  • I have intenosmb shared location in finder. What is it?

    I find intenosmb location in shared locations in finders list. In info it says that it is PC. Is it some kind of a threat?

    If you have a networked printer, they sometimes have SD Card slots, USB thumbdrive slots, etc... and the printer offers to be a file server to share the contents of those removable camera storage devices.
    It is possible your home WiFi router can also act as a printer server, or with a USB disk (or thumb drive) attached, a file server.
    You could use a utility such as Bonjour Browser which will give you more information about the devices it sees on your home network
    <http://www.macupdate.com/app/mac/13388/bonjour-browser>

  • Does Home Sharing only work over wi-fi?

    This may seem like an odd question, but I think it may be the root of my problem. I have a network that uses three Devolo mains network extenders in various rooms (the house has very thick walls). All three Devolo mains plugs connect (via the ring main) to the router. An iMac, laptops, an Apple TV, iPhones, etc each connect wirelessly to these very happily.
    However, no two computers (say an MBA and an iMac) in the same room, or different rooms, can 'see' the other in the normal way - i.e. by having the other device appear in the left hand pane of the finder window. They can, however, if I enter the IP address of the other machine manually. So this is irritating but not insurmountable.
    What does appear insurountable though is that, in a similar way, iTunes cannot 'see' any shared libraries across the network. Because of the issue described above, I had assumed that both problems were probably being caused by some sort of issue with the way the Devolo boxes are configured. But then I realised that, even though each device is connecting wirelessly to the Devolo boxes, I don't actually have a wi-fi network in the same sense that I would if I had an Airport-based system...and if Home Sharing only works over wi-fi, this might explain why it doesn't work for me.
    Apologies for the rambling question, but given the increasing popularity of these mains network-extender boxes, I feel I can't be alone in experiencing these issues. Can anyone shed any light?

    The quick answer to your question is no, for example Home Sharing works over Ethernet as well. Strictly speaking Wi-Fi is not required and iTunes doesn't care either way.
    However, I understand that the Devolo mains adapters have problems coping with this. If I had to guess, the problem might be an inability to carry the required bandwidth. The reason for this is that Airtunes is fairly demanding of bandwidth and if your wireless network's performance is degraded due to any number of variables, Airtunes is the first to suffer.
    You didn't say what kind of computer or OS you are using but Home Sharing uses TCP port 3689 and UDP ports 123 and 5353 to communicate with shared iTunes libraries. Those ports need to be configured in whatever firewall or security settings you may be using. If you are certain you have those ports open on your shared computers then concentrate on the Devolo adapters. Perhaps they are in need of a firmware update or modification of some configuration setting.

  • Extract Query Data to a Shared Location

    Hi,
    I need to extrcat BW query data to a shared location (e.g.,
    server\folder\file) in the form of a flat file. I know how to extract the query data till application server. I can also do it directly using an APD. But I need to extract it on a daily basis and APD is not allowing to schedule it in the background. It allows only direct execution. Can anyone know how to do this.
    Regards,
    Bharat

    Hi,
    Use RSCRM_BAPI and then schedule the job...I'm following the same method.
    Check the threads in SDN
    Re: Extract BW data
    Re: To Load data from APD to Tables
    Re: Running Quaries automatically and saving them in as a Excel file in Server
    Thanks
    Reddy
    Edited by: Surendra Reddy on Feb 18, 2009 5:59 AM

  • Getting the user name who has accessed a file available in Shared Location

    Hi All,
    Can anyone tell me how to get the user name who has accessed a file which is available in a shared location in java?
    Thanks in advance
    Regards
    Senthil Kumar.S

    You can't do it in pure Java.

  • Shared ExFAT drive over SMB failing

    I am running a VM of Server 2012R2  (Hosted by 10.7.5) and I put up a drive formatted as ExFAT so that both bootcamp Windows and the MacOS could work with the data without issues. There are some System Center  tools I want to load onto the server VM, but I can't access that specific share across the network. Grrrr!
    I can connect to the MiniServer which has the drive with the macadmin credentials, but loading the shared folders is an absolute pain.
    I can move the data to another drive, but still, it's a problem to do it the way that normally should work.
    My Mavericks Mac also can't connect to it over SMB, but the twist is that I can access the drive without any problem over AFP with the same credentials.
    The permissions look fine, however the creation date is a bit off...

    Yes I did. I will try it again in the morning (my friend is asleep now in the same room as his computer).
    Does Sharepoints need to be running for me to connect to his external drive, or do I simply need to set it up as a Share and use it as I was hoping to in the first place?
    Max

Maybe you are looking for

  • Itunes on my pc will not open or do anything.

    I have been trying to open Itunes on my desktop pc for days and nothing happens, everytime I click on it nothing happens, nothing comes up, no error messages or anything, tried to open in safemode and nothing happened. My computer and all my other pr

  • Where is Upgrade script Solaris 9iAS 1.0.2.0.1 - 1.0.2.1 ?

    The document "Migrating from Oracle9 i Application Server 1.0.2.0" Part No. A88779-01 says: "Upgrading the Oracle9 iAS Portal Repository Oracle9iAS Portal uses an upgrade script for migration. The script and further migration instructions are availab

  • BD64 issue having ECC + BI on the same client

    Hi there, We do have a small instance having ECC and BI in the same System. The ABAP RFC connection is fine and when Replicated in RSA1 Datasources from SourceSystem R3 went fine. But I think we have an issue with the Idoc settings. Went through the

  • Smartform print out problem : urgent

    Hi, I have developed a smartform to take the printout of the Sales Order created in VA01. I am facing a problem while taking the printout only if the line item in the sales order are more than 25. I the line items are less than 25 then I am able to s

  • Outlook Contacts Issue after Edited on iPhone

    When I edit a contact (or add a new contact) on my iPhone, it appears with all information in my Outlook "Contacts" folder. This is good. BUT - when I am creating a new email in Outlook and press the "TO" button to open up the Contacts folder, all co