Where is the employees table in hr 10g xe database?

when i connect to oracle 10g express edition (xe) through an application called crystal reports, i see an hr with tables that include employees, jobs, countries etc.
however, when i use sqlplus from my c prompt and execute the following query:
select * from tab;
the above tables do not show up whatsoever.
how can i get to hr? where is it hiding?
thank you.

Have you executed the script that I gave you?
You could query in hr schema using crystal reports?
Check the owner name of the table usinf all_objects.
SQL> desc all_objects
Name                                      Null?    Type
OWNER                                     NOT NULL VARCHAR2(30)
OBJECT_NAME                               NOT NULL VARCHAR2(30)
SUBOBJECT_NAME                                     VARCHAR2(30)
OBJECT_ID                                 NOT NULL NUMBER
DATA_OBJECT_ID                                     NUMBER
OBJECT_TYPE                                        VARCHAR2(19)
CREATED                                   NOT NULL DATE
LAST_DDL_TIME                             NOT NULL DATE
TIMESTAMP                                          VARCHAR2(19)
STATUS                                             VARCHAR2(7)
TEMPORARY                                          VARCHAR2(1)
GENERATED                                          VARCHAR2(1)
SECONDARY                                          VARCHAR2(1)
SQL> Cheers
Sarma.

Similar Messages

  • How to find the largest and the widest tables in Oracle 10g ?

    Hi Folks,
    Environment: 10g Rel 2
    Can somebody please suggest the data dictionary view(s) that I can query to get a list of the longest (rows) and the widest (columns) tables in any schema ?
    Thanks in advance
    rogers42

    rogers42 wrote:
    Hi,
    Thanks for the replies.
    By the "longest" table, I had meant a table with most number of rows. And few people had wisely pointed out the dba_tables view.
    By the "widest table", I had meant a table with the most number of columns. Is there a view that can give me this info ?
    Thanks
    rogers42if your statistics are updated :
    SELECT D.OWNER , D.TABLE_NAME
    FROM DBA_TABLES D
    WHERE D.OWNER NOT IN ('SYSTEM', 'SYS')
    ORDER BY D.NUM_ROWS DESC
    and try this code, for the second :)
    DECLARE
    CURSOR cur_tab
    IS
    SELECT D.OWNER AS OWNER , D.TABLE_NAME AS TABLE_NAME
    FROM DBA_TABLES D
    W_TABLE VARCHAR2(30);
    W_OWNER VARCHAR2(30);
    w_count_col NUMBER;
    w_col_max NUMBER;
    BEGIN
    w_count_col := 1;
    w_col_max := 1;
    W_TABLE := 'TEST';
    W_OWNER := 'TEST';
    FOR c IN cur_tab LOOP
      SELECT COUNT(*) INTO w_count_col
      FROM DBA_TAB_COLS t
      WHERE t.owner = c.OWNER
      AND t.TABLE_NAME = c.TABLE_NAME
      IF w_count_col >= w_col_max THEN
        w_col_max := w_count_col;
        W_TABLE := c.TABLE_NAME;
        W_OWNER := c.OWNER ;
      END IF;
    END LOOP;
    dbms_output.put_line(' w_col_max : '||w_col_max) ;
    dbms_output.put_line(' W_TABLE: '||W_TABLE) ;
    dbms_output.put_line('W_OWNER : '||W_OWNER) ;
    END;

  • Where in the icx tables are price break and price break quantities stored?

    I am trying to build a query from the icx tables that will show me all the BPA line price breaks and quantities.
    I cannot seem to find any documentation on what is specifically is extracted from the BPA lines when an internal catalog build is performed. I am able to validate that in iP, the price breaks are being taken into consideration when I create Requisitions with various quantities, but I do not know where iP is storing this information. Perhaps the data isn't stored and is taken from the core app po_line_locations_all table at the time the requisition is being created?
    I have a BPA, line 27, that has multiple price break lines.
    select rt_item_id, price_type, contract_num, contract_line_num, allow_price_override_flag, not_to_exceed_price, value_basis
    from apps.icx_cat_item_prices
    where contract_num = 'xxxxxx' and contract_line_num = '27'
    and price_type = 'BLANKET';
    All I could find when running this query was the price break information for the first price break line, none of the other price break lines.
    If anybody knows where the documentation is that tells me exactly what is extracted from the core application BPA to the icx tables, I would be greatly appreciative. Even better, if someone already knows the answer to either 1) price break and quantity are not stored in icx tables or 2) they are stored and you have SQL that shows me how to find it, I would be so very appreciative to have this information.
    Edited by: user6287397 on Jan 24, 2009 6:40 AM

    I got the answer. :-)
    Price breaks details are not stored in any icx tables. iP retrieves the information based on the need by date entered on the requisition.
    Oracle support referred me to the Oracle® Purchasing Release 11i10 Open Interfaces and APIs.
    The java code - SourceDocHelper.java - is responsible to get the price information by calling the procedure po_price_break_grp.get_price_break (POXPRBKB.pls DefaultPricing ) For a given a Source Document (Quotation/Catalog), Quantity and Unit of Measure, this procedure derives the best price for the calling routine.
    The SQL used to get the price information that was sent to me is attached. Note that this SQL uses the need by date to get the right price in case of price break used at the distribution level.
    SELECT poll.price_override
    , round(poll.price_override * v_conversion_rate,
    l_base_curr_ext_precision )
    , poh.rate_date
    , poh.rate
    , poh.currency_code
    , poh.rate_type
    , poll.price_discount
    , poll.price_override
    , decode( poll.line_location_id,
    null, pol.unit_meas_lookup_code,
    poll.unit_meas_lookup_code)
    , poll.line_location_id -- SERVICES FPJ
    FROM po_headers_all poh -- FPI GA
    , po_lines_all pol -- FPI GA
    , po_line_locations_all poll -- FPI GA
    WHERE poh.po_header_id = p_source_document_header_id
    and poh.po_header_id = pol.po_header_id
    and pol.line_num = p_source_document_line_num
    and pol.po_line_id = poll.po_line_id
    and ( p_required_currency is null
    or poh.currency_code = p_required_currency )
    and ( p_required_rate_type is null
    or poh.rate_type = p_required_rate_type )
    and nvl(poll.unit_meas_lookup_code, nvl(p_unit_of_measure,
    pol.unit_meas_lookup_code))
    = nvl(p_unit_of_measure, pol.unit_meas_lookup_code)
    Change sysdate to l_pricing_date in order to use the Need By
    Date
    to determine the price.
    and (trunc(nvl(l_pricing_date, trunc(sysdate))) >= trunc(poll.
    start_date) -- FPJ Custom Price
    OR
    poll.start_date is null)
    and (trunc(nvl(l_pricing_date, trunc(sysdate))) <= trunc(poll.
    end_date) -- FPJ Custom Price
    OR
    poll.end_date is null)
    --Bug #2693408: added nvl clause to quantity check
    and nvl(poll.quantity, 0) <= nvl(p_in_quantity, 0)
    Determining the price based on ship-to-location and
    destination organization
    and ((poll.ship_to_location_id = v_ship_to_location_id OR poll.
    ship_to_location_id is null)
    AND
    (poll.ship_to_organization_id = p_destination_org_id OR poll.
    ship_to_organization_id is null))
    and poll.shipment_type in ('PRICE BREAK', 'QUOTATION')
    -- <2721775 START>: Make sure Quotation Price Breaks are Approved.
    AND ( -- ( poll.shipment_type IS NULL )
    ( poll.shipment_type = 'PRICE BREAK' )
    OR ( ( poll.shipment_type = 'QUOTATION' )
    AND ( ( poh.approval_required_flag <> 'Y' )
    OR ( EXISTS ( SELECT ('Price Break is Approved')
    FROM po_quotation_approvals pqa
    WHERE pqa.line_location_id = poll.line_location_id
    AND pqa.approval_type IN ('ALL
    ORDERS', 'REQUISITIONS')
    AND trunc(nvl(l_pricing_date,
    sysdate)) -- FPJ Custom Price
    BETWEEN
    trunc(nvl(start_date_active, sysdate-1))
    AND trunc(nvl(end_date
    _active, sysdate+1)))))))
    -- <2721775 END>
    order by poll.ship_to_organization_id ASC, poll.ship_to_location_id ASC,
    NVL(poll.quantity, 0) DESC,
    trunc(poll.creation_date) DESC, poll.price_override ASC; /*
    */

  • Creating table types for procedures at design time: Where is the "Local Table Type" tab?

    Hello,
    I want to write a stored procedure (development perspective, repository object) and need to create a table type for the result table.I am working on HANA Studio 1.80.1 and the documentation tells me that I should open the "Local Table Types" tab. However, I do not see where this tab is.
    I get an SQLScript tab nothing else. Any hints?
    Regards,
    Andreas

    Hi ,
    Have a look on this discussion:
    Table type creation via HS repository / CDS / DDl Source
    Regards,
    Krishna Tangudu

  • Where is the build table express vi located in the function table?

    I must be blind but I can't locate the build table express vi in lv8 or 8.5.  Someone slap be upside the head and point it out.  Thanks

    It's on the Controls palette. Were you looking on the Functions palette?
    Message Edited by Dennis Knutson on 04-23-2008 08:22 PM
    Attachments:
    Express XY Graph.PNG ‏17 KB

  • Load Data from a table on one server's database, to the same table structure in multiple server databases

    Hi,
    I have a situation where i have to load data from one server/database table to multiple servers/databases.
    Example:
    I need to load data from dbo.TABLE_A  (on Server: Server_A & Database: Database_A)  to the same table on the list of server databases like
    Server: Server_B , Database: Database_B
    Server: Server_C , Database: Database_C
    Server: Server_D , Database: Database_D
    Server: Server_E , Database: Database_E
    Server: Server_F , Database: Database_F
    Server: Server_G , Database: Database_G
    Server: Server_H , Database: Database_H
    so on and so forth on 250 such server database combinations.
    The table structure is the same on all the servers.
    If i make the source or destination dynamic, it throws an error while mapping ?
    I cannot get Linked server permissions and SQL Server Config thing doesn't work as well.
    Please suggest on how to load data from one source to multiple server/databases.
    Thank you.

    I just need to transfer one table's data. its like i have to use a query to pick data for
    the most recent data. So i use something like, select A, B, C, D from dbo.table where ETL_TIMESTAMP > (the max(etltimestamp) in the destination on different server). There are no foreign key relationships and the data should not be truncated. it just had
    to append the new records.

  • Where is the BPEL Instance payload stored in soa database?

    Hi all,
    Given an instance id, I need to get the payload used to invoke the BPEL.
    I searched in the soa database. Also I went through the bpel client apis. But I couldn't find any. Is there any table in the BPEL dehydration store that can give me the entire bpel instance input payload given the instance_id?
    Thanks,
    Shyamala

    Hi,
    have you tried to unzip the blob inside the xml_document table?
    the dockey is availalbe via document_ci_ref

  • Where is the em console GUI in 10g?

    I upgraded to 10.2.0.1 from 9i. Since I didn't uninstall 9i, I can still run the em console from the 9i program menu. But what about em console in 10g? I am used to using the 9i em console and look at table contents, etc.
    I did find "Database Control - SVCMGR" under 10g menu. Is that it, 10g's answer to the em console? But I have all kinds of problem getting to work and I need help, please. Here are some info:
    - The browser screen shows nothing under Database Instance, Listener status is Unavailable, and Agent Connection to Instance is Unavailable. My database application is running just fine, so I don't know why the above status'.
    - I did some reseach and ran the command "emctl status dbconsole" and it returned "h__p://SC070126.cs.myharris.net:5500/em/console/aboutApplication
    EM Daemon is not running. "
    - So I ran the command "emctl start dbconsole" and it returned with error 1. I look into the em log and it says "dbconsole may already be running. termStatus=3".
    - If I then issue "b]emctl stop dbconsole", then I got the same error as before: "h__p://SC070126.cs.myharris.net:5500/em/console/aboutApplication
    EM Daemon is not running."
    - I check the status of SYSMAN user and it's open and not locked as some google search results suggest to check.
    Help from anyone?

    OK, here's the output for recreating the repos:
    Do you wish to continue? [yes(Y)/no(N)]: y
    Apr 9, 2008 10:39:38 AM oracle.sysman.emcp.EMConfig perform
    INFO: This operation is being logged at C:\oracle\ora10gdb\cfgtoollogs\emca\svcm
    gr\emca_2008-04-09_10-38-19-AM.log.
    Apr 9, 2008 10:39:40 AM oracle.sysman.emcp.util.DBControlUtil stopOMS
    INFO: Stopping Database Control (this may take a while) ...
    Apr 9, 2008 10:39:41 AM oracle.sysman.emcp.EMReposConfig createRepository
    INFO: Creating the EM repository (this may take a while) ...
    Apr 9, 2008 10:43:59 AM oracle.sysman.emcp.EMReposConfig invoke
    INFO: Repository successfully created
    Apr 9, 2008 10:44:09 AM oracle.sysman.emcp.util.DBControlUtil startOMS
    INFO: Starting Database Control (this may take a while) ...
    Apr 9, 2008 10:49:09 AM oracle.sysman.emcp.EMConfig perform
    SEVERE: Error starting Database Control
    Refer to the log file at C:\oracle\ora10gdb\cfgtoollogs\emca\svcmgr\emca_2008-04
    -09_10-38-19-AM.log for more details.
    Could not complete the configuration. Refer to the log file at C:\oracle\ora10gd
    b\cfgtoollogs\emca\svcmgr\emca_2008-04-09_10-38-19-AM.log for more details.
    - Looking at the said log file doesn't reveal any further info. Another log file shows the output of script execution and it indicates successful creation of the repos.
    - emctl status Agent now returns some stats and the status "Agent is running and ready".
    - But emctl status dbconsole still indicate trouble. It says: "Oracle Enterprise Manager 10g is not running. "

  • RSPLAN filter - where is the data table stored

    hi
    When rsplan planning modeller saves the filter, where could I read the value from a function module or transparent table?
    thanks.

    Hi,
    Filter is an object that describes a multidimensional segment of data from a data set. Filters are used in reporting, analysis and planning, for example, to restrict data to a certain business area, certain product groups or certain time periods. You segment data in this way so that users or user groups only have access to the data that is relevant to them or so that only certain data areas are available within an application scenario.
    Within BI Integrated Planning, filters determine the selection of data upon which a planning function is executed. A planning sequence comprises a set of planning functions. A filter is assigned to each of these functions.It holds the set of data isa n underlying table accessed by system when ever this filter is called for.
    You want to revaluate the transaction data in your InfoProviders by a factor of
    10%. However, you only want to perform the revaluation for certain groups of
    customers. To do this, you create a filter that contains the group of customers
    for which you want to revaluate data.
    Filters can be reused in planning functions and in queries.
    Integration
    You can create multiple filters for an InfoProvider. You do this using the Planning Modeler or Planning Wizard or the Query Designer. In the Planning Modeler or Planning Wizard, you can only define filters on aggregation levels.
    Hope this helps
    Cheers
    Raja

  • OIM-DB - Where is the right table?

    Hi,
    i need the table in the OIM-DB (10.2) where i can find the User Data and resource information?
    WWSEC??? Which User? ORASSO...?
    Please i need your help...

    OIM 9.1.0.2 Schema there is no table with all of these information together. But SQL Statement should help you with those. If you need more details from users include in join USR table and desired columns.
    select oiu.usr_key usrkey, orc.orc_tos_instance_key toskey,obj.obj_key objkey
    from oiu , orc , ost, obj
    where orc.orc_key = oiu.orc_key
    and oiu.ost_key = ost.ost_key
    and ost.obj_key = obj.obj_key
    and obj.obj_name like 'RESOURCE%'
    join this with USR to find by name ORASSO or just get usr_key of ORASSO user.
    and oiu.usr_key usrkey = KEYOFUSER_ORASSO
    group by oiu.usr_key, orc.orc_tos_instance_key, obj.obj_key
    I hope this helps.
    Thiago L Guimaraes

  • After running sql scripts in SQL plus, where are the results(tables) stored

    Hi ,
    I am using oracleDb10g . i have used SQL plus to create a database. I have run 2 sql scripts and constructed the tables , but i dont know where the data is stored and how to make the data into a database, so that i can use it for connection through some UI.
    for example: schema.sql, data.sql script files.
    SQL> start schema.sql
    SQL> start data.sql
    The tables are created.
    Now how can i group those table into a database and name it.(i mean i can create a database using SQL plus, but how to dump the tables into the database created). Because i want to use this database name for connecting to MS SQL, so i need the name.
    Thanks
    babu.

    when you are in Rome, sing with the romans !
    Oracle is different from SQL Server.
    Time to read some basic books.
    --> http://tahiti.oracle.com

  • Where is the guide for Apache2/php5/10g/Linux install?

    http://www.oracle.com/technology/tech/opensource/php/apache/inst_php_apache_linux.html
    is now sadly outdated considering that the stable releases on all products are now:
    Apache -> 2.0.52
    Php -> 5.0.2
    Oracle -> 10.1.0.3
    I am looking to run namely these software versions on a Linux (Fedora Core and/or Debian) system, but can't find any worthwhile documentation anywhere (oracle, google etc.).
    First of all I would like to know if it is even possible to run Apache 2.0.52/Php 5.0.2 with oracle-instantclient-basic-10.1.0.2?
    I know that with Oracle 9i you had to install the whole 300MB client install to get things to work easy, but that time has surely passed?(!)
    I am running oracle 10g on a seperate installment, and would like to connect to it with Apache 2 and Php 5. What is the best way to do this?
    I don't want to sound rude, and I do not expect a full installation guide, but if somebody could tell me how to do this I would appreciate it. The apache part is easy, the tricky part is the --with-oci8 php part combined with the instantclient (installed correctly and added in ld.so.conf).
    --with-oci8=/usr/lib/oracle/10.1.0.2/client/(lib) does not even remotly work. Whats the trick, if any?
    YS
    Anders Berg

    I have been working on this issues for a few days now. I was able to get Apache 2.0.52, PHP 5.0.2 and Oracle 10g Client(Administrator option) to work. Here's my compile
    export ORACLE_BASE=/opt/oracle
    export ORACLE_HOME=/opt/oracle/OraHome_1
    export ORACLE_SID=DBRAC
    export PATH=$PATH:$HOME/bin:$ORACLE_HOME/bin
    export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/usr/lib
    ./configure with-apxs2=/apache/bin/apxs with-oci8=$ORACLE_HOME --enable-sigchild
    However, when I compile using '--with-xsl' option (I isolated the problem with this option), I cannot get a database connection. There's no error with the compile. Can anyone help me? Thanks in advance
    Here's my actual command
    ./configure with-apxs2=/apache/bin/apxs with-oci8=$ORACLE_HOME enable-sigchild enable-track-vars enable-sockets enable-wddx with-curl with-mysql with-gd with-gettext with-ldap with-xsl enable-soap enable-discard-path --enable-exif                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Where are the Files uploaded to KM stored, in database or some location

    Hi All,
    Say for example we have created a pdf file and uploaded this to KM Folder in the portal server.
    How and where this files stored in the server.
    Whether they are stored as objects in the database or in any location of the hard disk as a file system.
    If in database, please let me know the table name and how to access it.
    If in the hard disk, then please provide me the location.
    Thanks in advance,
    Ramanath

    hi,
    use th following link,
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f02b492c-7d76-2a10-86aa-e11e8388fde8
    Regards
    Jayapriya

  • Where is the primary user setting stored in CM database?

    Hi, 
    I am wondering where the primary user field is stored in the SCCM 2012 database. We are implementing new help desk software and are trying to associate the primary user field with the computer name in this Help desk software and I cannot find where that
    is stored anywhere.  Any help would be greatly appreciated. 
    Thanks

    Have a look in vUsersPrimaryMachines
    Gerry Hampson | Blog:
    www.gerryhampsoncm.blogspot.ie | LinkedIn:
    Gerry Hampson | Twitter:
    @gerryhampson

  • Where is the standby file method/property in SMO.Database

    Hello,
    I'm trying to locate the method / property in SMO.Database for StandByFile (undo backup file). I'm able to set it during a restore using SMO.Restore.StandByFile, but I'm currently building a empty DB from the properties of an exisitng DB and this is a property
    I need to at least read from if not modify directly.
    Hoping for some help.
    EDIT: Adding small part of script for context
    # Restore the database
    function Restore-Database ($srv, $dname, $src, $dst, $stby){
    try {
    $SMORestore = New-Object -TypeName Microsoft.SqlServer.Management.Smo.Restore
    if ($stby) {
    Write-Host 'Restoring' ([System.IO.Path]::GetFileName($src)) 'to' $dname 'with standby...'
    $SMORestore.StandbyFile = $tmpdir + $tmpdbname + '_standby.bak'
    } else {
    Write-Host 'Restoring' ([System.IO.Path]::GetFileName($src)) 'to' $dname 'with recovery...'
    $SMORestore.Action = "Database"
    $SMORestore.NoRecovery = $false
    $SMORestore.ReplaceDatabase = $true
    $SMORestore.Database = $dname
    $SMORestore.Devices.AddDevice($src, "File")
    $filearray = $SMORestore.ReadFileList($srv)
    foreach ($file in $filearray){
    $newfile = New-Object Microsoft.SqlServer.Management.Smo.RelocateFile
    $newfile.LogicalFileName = $file.LogicalName
    $newfile.PhysicalFileName = $dst + ([System.IO.Path]::GetFileName($file.PhysicalName))
    $SMORestore.RelocateFiles.Add($newfile) | Out-Null
    $SMORestore.SqlRestore($srv)
    Write-Host ([System.IO.Path]::GetFileName($src)) 'successfully restored to' $dname
    } catch {
    $_.Exception
    if ($Error.Count -gt 0) {
    $error[0] | fl -force
    } #Restore-Database $DSTServer $tmpdbname $bkup $tmpdir $false # - $bkup = .bak not defined | $stby = bool
    and another piece
    function New-Database ($refdb, $dstsrv, $tname, $tdir) {
    Write-Host 'Creating database' $tname 'based on settings from' $refdb.name '...'
    $dstdb = New-Object -TypeName Microsoft.SqlServer.Management.Smo.Database -ArgumentList $dstsrv, $tname
    # Loop through the original db's filegroup to grab all the settings for the new filegroup
    try {
    foreach ($group in $refdb.filegroups) {
    $fg = New-Object -TypeName Microsoft.SqlServer.Management.Smo.FileGroup -ArgumentList $dstdb, $group.name
    $dstdb.FileGroups.Add($fg)
    if ($group.IsDefault -eq $true) {
    $fgdefault = $group.Name
    # Loop through the data files in the filegroup and grab the settings for the new files
    foreach ($file in $group.Files) {
    $datafile = new-object -TypeName Microsoft.SqlServer.Management.Smo.DataFile -ArgumentList $fg, $file.name
    $fg.Files.Add($datafile)
    $file
    $datafile.FileName = $tdir + ([System.IO.Path]::GetFileName($file.FileName))
    $datafile.Size = $file.Size
    $datafile.IsPrimaryFile = $file.IsPrimaryFile
    $datafile.GrowthType = $file.GrowthType
    $datafile.Growth = $file.Growth
    $datafile.MaxSize = $file.MaxSize
    # Loop through the log files in the filegroup and grab the settings for the new files
    foreach ($file in $refdb.LogFiles) {
    $logfile = New-Object Microsoft.SqlServer.Management.Smo.LogFile -ArgumentList $dstdb, $file.name
    $dstdb.LogFiles.Add($logfile)
    $file
    $logfile.Name = $file.name
    $logfile.FileName = $tdir + ([System.IO.Path]::GetFileName($file.FileName))
    $logfile.Size = $file.Size
    $logfile.GrowthType = $file.GrowthType
    $logfile.Growth = $file.Growth
    $logfile.MaxSize = $file.MaxSize
    } catch {
    $_.Exception
    # Create the database
    try {
    $dstdb.Create()
    Write-Host 'Database' $tname 'created successfully'
    } catch {
    if ($Error.Count -gt 0) {
    $error[0] | fl -force
    break
    # Make sure the right filegroup is the default
    If ($dstdb.FileGroups[$fgdefault].IsDefault -ne $true){
    Write-Host 'Setting' $fgdefault 'filegroup as default'
    $fgdef = $dstdb.FileGroups[$fgdefault]
    $fgdef.IsDefault = $true
    $fgdef.Alter()
    $dstdb.Alter()
    } #New-Database $srcdb $DSTServer $tmpdbname $tmpdir

    How were you able to see the tuf in your ldf? Using a simple text editor i'm unable to see mine.
    if you open that file with text editor, you can't use "find" functionality because its not an ASCII text. It took some time for me to locate the text which you are seeing in image which I posted.
    Also how certain are you that it is not possible, do you have experience programming with SMO? Not that I don't believe you but I have spent some time developing a ps script that somewhat hinges on this, so not happy if it was all for not.
    I have NEVER worked with SMO and have no experience. But Since I have spent 10 years of my life working with Microsoft with SQL Server Product support team, I can tell you that it's not stored in any table in database. It's part of LDF and there is no way
    to get that without parsing the LDF file.
    Here is one of the blog written by my friend, who was working in my team.
    http://blogs.msdn.com/b/batala/archive/2011/07/21/how-to-see-the-standby-file-path-when-we-restore-the-database-in-standby-mode.aspx
    Balmukund Lakhani
    Please mark solved if I've answered your question, vote for it as helpful to help other users find a solution quicker
    This posting is provided "AS IS" with no warranties, and confers no rights.
    My Blog |
    Team Blog | @Twitter
    | Facebook
    Author: SQL Server 2012 AlwaysOn -
    Paperback, Kindle

Maybe you are looking for

  • Office 2008 and G3

    Hello, I am going to Purchase Office 2008 Student and Teacher Edition but I noticed it requires a G4, G5 or Intel based Mac. While this isn't a problem for my QS G4's and MacBook Pro, I am wondering about my Powerbook and iMacs. Is there anyway to ge

  • EA Version 4.0 - Partition high-values are not displayed (NULL)

    The partition high values are not schon in the "partitions" tab of the table. Only NULL was displayed.

  • How to use ADFContext.setMDSLogin(String)?

    As per the javadoc of ADFContext, it has a method setMDSLogin(String) and getMDSLogin(String). I am doing some user customization using MDS but the javadoc doesn't cover how and when those methods should be used. Currently, I am saving the user custo

  • Exposing properties in mxml components

    I am tring to figure out how to create a property in a component so that I can set said property in the instance via mxml. For example, I have an Group mxml component with a label and a text field.  I want to be able to set the text property of the l

  • R9 290 New Driver Freezing Problem

    Hello, I am the owner of a MSI R9 290 card. Ever since I have it it runs amazing on 13.12 AMD drivers, however when I update to anything above that my PC just freezes randomly. I have been searching the internet for such a long time now and everythin