Nearline Storage Addon

Hi Experts,
like written on following documentation on page 33 (F Setup) I need a ABAP-based ADDon for SAP Netweaver. We use NetApp Nearline Storage Systems. Where can i get this Addon?
http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/90836e30-1582-2910-03a6-86671428d994&overridelayout=true
As default i have like in help documentation described only two classes available:
CL_RSDA_DB6_CONNECTION
CL_RSDA_SDB_CONNECTION
http://help.sap.com/saphelp_tm70/helpdata/en/46/7aa4d824cb0e9ce10000000a155369/content.htm
I guess i need another class for NetApp, but don't know how to create or where i can get the ADDon
Can anyone help me?
Thank you
Best regards
Martin Schmitt

1) Do we need to do any other additional afforts for Near-line storage?
(For this 100 percent we need to buy ceartified license 3rd party tools like PBS SAND..etc)
2) Is archived data available for reporting with out any intervention of Third part tools?
(If it is ADK archiving,then you need to load the data in cubes before check the reprots,if it is NLS ,you can check the data normally with out any loading)
3) Is SAP supports accessing the archived data with out any third part software?
(Normal SAP ADK Only),but you need to load data when on required

Similar Messages

  • BI NLS (Nearline Storage) interface with Documentum?

    Hi Experts,
    I attended a presentation by SAND Technologies at SAP Tech ED07 on BI Nearline Storage.  They mentioned BI NLS will will interface to archiving technology Open Text.  Does anyone know if NLS will interface to archiving provider EMC Documentum?
    Thanks for your help!

    Missed to add the following points.
    As per the following document ( pg 20 ) it says "A typical third Party NLS Solution is required "
    http://scn.sap.com/docs/DOC-39944
    Is there anything else which lies between the db2 software and our BI system which needs to be implemented with the help of IBM /or any other certified partner

  • Can Business Objects Web Intelligency reports access NearLine Storage data Via BW Bex Query

    Hi Gurus,
    I am aware BEX queries can access NearLine Storage data for reporting but can Business Objects Web Intelligency reports access NearLine Storage data Via BICS connection ( Bex Query as a Source).
    Thanks,
    Shak.

    I would recommend to let your SAP Basis guys do a security trace on the SAP BW side and see if some authorization check for the user fails when trying to fetch data over the universe.
    Regards,
    Stratos

  • Help needed about Nearline storage in BW 3.5.

    Hi Guys,
    Can you please provide me with some documents for implementing Nearline storage scenarios in BW 3.5.
    Thanks,
    Punkuj...

    Hi Punkuj,
    We use Nearline storage to store the data that is never been user or used very rarely.For example we have data for year 1960 in the data targets and now it is 2007.So mostly the management never uses this data or they uses them very rearly.So when we retrive the data from the data targets the DB unnecessarly reads the data every time when a report is generated on those targets.So to avoid this performance issue we store that kind of data in a seperate disk and we access that data using a multi provider when we need that in Report.This data is also known as Dormat data.
    Hope this will help you.
    Thanks and Regards
    SandeepKumar.G

  • Nearline storage (read 'archive' in look up's)

    Hi all,
    we need the functionality to read the nearline objects in queries, data loading processes and in look up's. Is there any other customer, who request this functionality?
    Regards,
    Adrian

    Hi Adrian,
    At the moment there is no API available for unified access to archived and non-archived data of an InfoProvider (InfoCube or DataStore Object). But there is an API available to access the nearline part of an InfoProvider. The following code example could be used to achieve a unified access to data from the active table of a DataStore Object and its associated nearline part. This example will always return consistent results with only one exception: during the selective deletion phase of an archiving run. In this phase it could happen that a record is retrieved from nearline and from the database table as well.
    If you have further questions, please contact the us (the back office) directly.
        Cheers
          SAP NetWeaver 2004s Ramp-Up BI Back Office Team    
    TYPE-POOLS:
      rs,
      rsd.
    DATA:
      adjprov     TYPE rsadjprov,
      infoprov    TYPE rsinfoprov,
      r_cursor    TYPE REF TO if_rsda_cursor,
      r_dta       TYPE REF TO cl_rsd_dta,
      r_nlprov    TYPE REF TO cl_rsda_nearline_provider,
      r_selset    TYPE REF TO cl_rsmds_set,
      r_universe  TYPE REF TO cl_rsmds_universe,
      t_selfields TYPE if_rsdai_nearline_connection=>t_field_selections,
      t_data      TYPE STANDARD TABLE OF /bic/asbook_d00 WITH DEFAULT KEY,
      wherecond   TYPE string.
    infoprov  = 'SBOOK_D'. 
    wherecond = '/BIC/CARRID = ''LH'' AND /BIC/FLDATE IN (''19940617'',''19960617'',''19980617'',''20000617'')' .
    r_dta = cl_rsd_dta=>factory( infoprov ). "create DTA object for InfoProvider
    Check if the DS Object has a nearline archive
    IF r_dta->has_adjoint_provider( rsd_c_adjprovtype-nearline ) EQ rs_c_true.
    Create an instance of the VirtualProvider associated to the nearline archive of the DS Object
      CALL METHOD cl_rsd_dta=>build_adjprov_from_infoprov
        EXPORTING
          i_infoprov    = infoprov
          i_adjprovtype = rsd_c_adjprovtype-nearline
        IMPORTING
          e_adjprov     = adjprov.
      r_nlprov  ?= cl_rsda_nearline_provider=>factory( adjprov ).
    Prepare where condition and selection clause (field list) for the nearline access
      r_universe = r_nlprov->get_universe( ). "This method is available not until SP 8
      r_selset   = r_universe->create_set_from_string( wherecond ).
      CLEAR t_selfields. "request all fields
    Create and open a cursor for nearline access
      r_cursor = r_nlprov->open_cursor(
                   i_t_selfields = t_selfields
                   i_r_selset    = r_selset    ).
      TRY.
        Fetch a data package from the nearline table
          CALL METHOD r_cursor->fetch_next_package
            EXPORTING
              i_package_size = 0                        "fetch all data at once
            IMPORTING
              e_t_data       = t_data.
          r_cursor->close( ).
        CATCH cx_rsda_no_more_data.
      ENDTRY.
    ENDIF.
    Now select data from the active table and
    append selected records (UNION ALL) to the result set table
    SELECT * APPENDING TABLE t_data
           FROM /bic/asbook_d00
      WHERE (wherecond).

  • NearLine storage for BI 7.01

    Dear SAP Gurus
    I am BI consultant and have a query regarding implementing NLS solution for our BI system ( Netweaver 7.0 ehp1 sps7 ) , our database runs on DB2 9.7 Fixpack 7 and Operating system is AIX 6.1 . Our basis team is helping us on this and has told us thet DB2 NLS can be implemented for the solution but not sure on  whether  any new hardware or licensing cost is involved . 
    Basis team has forwarded us the notes 1405664 - DB6: Near-Line Storage Impl. (Supplementary Note) and an installation document from the service market place . we dont have any NLS experts here and have the following queries which our Basis team is rather not Sure
    1 ) Whether NLS can be implemented with no additional support from IBM . 
    2 ) Whether any special hardware or other IBM services are required for implementing the same. We are using POWER HA servers ( AIX 6.1 version )
    3 ) All our SAP servers are running under DB6 LUW 9.7 version , is it just that we install a new server with 9.7 and do the post configuration as described in the installation document
    4) Is there any specific SAP partners for implementing near line storage?
    Thanks ,
    Shakthi.

    Missed to add the following points.
    As per the following document ( pg 20 ) it says "A typical third Party NLS Solution is required "
    http://scn.sap.com/docs/DOC-39944
    Is there anything else which lies between the db2 software and our BI system which needs to be implemented with the help of IBM /or any other certified partner

  • Query on a virtual provider (nearlined) locks indexing

    Hi,
    We have a few queries that are on the virtual providers. These are nearlined (SAND) data. When a user execute this query, a lock is established in SM12 on the RSDDTREXDIRTABL table with the virtual provider name as the argument. Due to this lock, any SIDs that are part of the virtual provider are not able to index in BWA. Since the queries on the virtual providers are usually long running ones, the indexing waits and finally fails. We plan to increase the wait time settings in the RSDDTREXADMIN table.
    Why does a virtual provider query locks the SID? Is it because, the queries simulate a realtime data load from the nearline storage and in the process simulate SID generation (eventhough these SIDs are existing in BW and not yet archived).
    Anyone dealt with a similar issue? Any suggestions?
    Thanks,
    Murali

    Hello Murali,
    I don't think this scenario has been tested much. Please open a customer message so SAP support can analyze the issue.
    Regards,
    Marc
    SAP Customer Solution Adoption (CSA)

  • Near Line Storage

    Hi Experts,
       My question is regarding the near line storage archiving in SAP BI.
    Ex : PBS is one vendor which provides Nearline storage with the help of sybase IQ.
    Is there any NLS Provider which uses sequel server as the nearline storage.
    can you please share your thoughts asap.
    Thanks
    vamsi

    You do not need BIA
    for more insights on NLS  you can check this
    https://websmp103.sap-ag.de/~sapidb/011000358700000565112006E
    Hope it Helps
    Chetan
    @CP..

  • Is Near Line Storage (NLS)  ONLY for BI archiving?

    Gurus:
    Is NLS also used for data archiving in other business modules?
    At least I cannot find any info about that.
    Thanks!

    Hi,
    in the SAP context NLS is only for BI. (There are hardware solutions that also use the name NearLine Storage)
    The reason is that SAP only offers the NLS interface for BI.
    In ERP there is no standard NLS interface offered, probably because the access to the DB is hard coded in the transactions. In BI there is a central analytical engine, so here a central interface can be offered.
    For ERP, CRM, etc. there are vendors that offer a similar functionality, allowing access to archived data either in the standard transactions or similar to standard transactions.
    best regards,
    Joseph

  • Archiving in BI 7.0

    Hallo Experts.
    Well i need some help related to BI 7.0 Archiving.
    I have gone though some doc on SDN but yet not clear bout mentioned points.
    1> Preferable Method of Archiving in bi 7.0 ex- (NLS or ADK)
    2>Drawbacks of NLS or ADK.
    3> Expected ttime to Archieve around 500 gb of data.
    4> in details difference in ADK and NLS archiving or which approach is best and why ?
    Early input will be highly appereciated.
    Thanks in Advance
    AKG

    Hi,
    ->Preferable method will be as per your requirement if there is a already existing connection with SAP system such as UNIX you can go for ADK, it is very easy and simple, if you don't have any such system then you can store the data in the third party tool using the nearline storage.
    -> Expected time will depend on your server and availability, you can always schedule a background job using ADK.
    For us it has taken approx 1 hr for 1 million data records.
    Also check this links:
    Archiving In BI 7
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/409e7ce8-cbd8-2b10-c1ae-e27696c333c7
    Hope this helps...
    Rgs,
    Ravikanth.

  • Back-up SQL 2005 with NTBACKUP and Volume Shadow Copy

    Hi everybody,
    I want to make a snapshot backup of a SQL 2005 database with SAP ECC6.
    I want to use NTBACKUP to make the snapshot.
    Does the database freeze at the moment of the snapshot?
    Does anybody use this method?
    Thanks in advanche.
    Kind regards,
    Klaas van Deelen

    NTbackup uses VSS to create the copy of FILES.
    VSS is not designed to replace your current backup strategy,
    VSS will copy a data file, then another, then another etc - heres the problem sapdata1 and sapdata2 will be backed up at DIFFERENT times. if you tried to restore the DB, it would NOT be consistent.If VSS backed up the files OFFLINE - np, it will work.
    VSS cache is also on the system (default) as the original data - not really a smart idea for a backup solution.
    Use either the SQL tools to backup online to tape/external storage or get the symantec backupexec with the SQL agent to allow for online backups again to tape or nearline storage.

  • Help in BW Archiving

    We are in the process of moving data from our present BW system.
    Can anyone suggest whether to use a nearline storage or an offline storage system or both.
    If we archive data using ADK in BI, how good will be the retrieval of archived data.
    i.e. using transaction SARI in BI only displays data, but no reporting can be done on it.
    Please Help.

    Hi Hari,
    So if i have to do reporting on the archived data, then I will have to reload that data right.
    Also the user will have to ask which data has to be reloaded. eg. 193-001 archived session would be containing that required data. Will it be the duty of the archive administrator to fetch that data for the user, or does ADK has some functionality to do that automatically.
    Please reply, Points will surely be given.

  • Xsan and NetVault Backups?

    Hello All,
    Current setup:
    17 Xserves
    5 X RAIDs
    1 Promise RAID
    ADIC Scalar 100 (using BakBone NetVault)
    Nothing Xsan'd yet
    I am curious how you, if anyone, are backing up your Xsan to tape, specifically with NetVault or some similar backup solution. I would imagine that you can backup all of your Xsan data via the main Xsan node. I guess I am not totally familiar with Xsan setup at this point but are all of the RAIDs actually mounted on the main Xsan node, so that they can be accessed by NetVault's main server via ethernet? Or would I install Xsan on my NetVault's main server and pipe it into the Xsan fibre switch, backing up via fibre directly?
    I will be creating an Xsan in the future and I am looking for any recommendations having to do with NetVault and Xsan.
    Thx!

    I admin a StorNext Storage Manager setup. We have a Scalar i500 with 120 slots for LTO-3 to cover a 27TB StorNext SAN with Xsan clients. It keeps a copy of all managed files and does not require dedicated nightly activity to keep us backed up. It also allows for nearline storage. It can be tricky though, and you need to be careful about how you implement it. I like the HSM approach better since it backs up everything on the fly in the background as a function of the filesystem instead of requiring long stretches of time to do full and incremental traditional backups. It is more expensive though. You really need to need it to justify the cost.
    I used an Atempo Time Navigator backup server in the past with an Xsan. Similar to your BakBone in structure. You just need to have your backup controller as a client of the SAN. At that point the software just thinks the SAN volume is local and can back it up like anything else. The nasty part is bandwidth and time, but only because SAN volumes tend to be so large and nights and weekends are only so long. You can put the Scalar on the FC fabric, but you will need to zone it away from the SAN and have the BakBone box straddle the zones. That does not really offer a bandwidth advantage over directly attaching the Scalar to the BakBone box though (as long as your HBA has the port count to do that).

  • Final Cut Server on Apples Promise or Isilon

    Two questions:
    One: Where can I go to learn about these two types of drives and comparisons?
    Two: Does anyone have any insight as to which system is better/more dependable?
    I work with one arm of a very large organization that edits various material. We currently work in SD but are planning to be all HD by January. We have purchased the Final Cut Server to replace Artbox which we currently use. We are trying to decide between Apple's Promise Xsan drives and Isilon. I am hearing that Isilon might be a bit slower????
    Any advise, thoughts would be much appreciated. Better yet, if you know a place where I can go and get some good unbiased information - so I can educate myself, that would be great!!
    Thanks in advance,
    Ken

    It's true that both solutions are not very well documented online with respect to more than their basic specs. What you need is some contextual advice that will weigh the pros and cons of each solution against your business requirements. You need a good consultant that is not trying to sell you either solution. A tall order, I know.
    Maybe if I share the considerations I used to chose between the two it will help:
    I chose Xsan/StorNext because I knew I wanted to take advantage of its ability to span disk and tape. LTO is still unmatched for price and performance for nearline storage. Disk is catching up, but you can't take a disk out of an array and put it in a vault like you can with an LTO. The reason I was so focused on having tape as well as disk is because I knew that eventually we'd fill our disk and still want to keep mot or all of the data somehow. You can't just add disk forever, so having a tape tier to migrate data onto is key. Bandwidth is also very good for the disk side of Xsan, but you still need to make sure you have enough disk aggregated to support however many editors cutting however many streams of whatever format. An Apple sales engineer can help you figure that. Fibrechannel storage like Xsan is unmatched for video editing due to its extremely low latency and high bandwidth.
    The downside of Xsan/StorNext when you start using Storage Manager for backup and tiered storage is the support requirements. You simply must have a good admin on staff. The system is like a racecar- it is very sophisticated and finely tuned so it needs constant attention from the mechanics. But look how fast it goes!
    If you only want disk and don't need to keep your data forever, Isilon is a less-fussy solution. It is truly redundant disk (unlike Xsan) and it expands more easily than Xsan. You also don't need to buy client licenses to connect to it. Even laptop and iMac users could get at it (unlike Xsan). It can provide enough bandwidth for all but the most grueling applications, but it is a lot more expensive per TB than Xsan. Several major cable networks use Isilon for editing and play-to-air storage. It is no slouch. Just make sure your format fits though a 1 Gb pipe because that's the maximum bandwidth to each client (Xsan can do 4 Gb).
    So the bottom line in comparing the two really depends on your workload, format, number of clients, budget, and data management priorities. Both will work just fine with Final Cut Server.

  • Archiving to Lacie External Drive

    Would someone please give me a step by step description of how to store GB songs on a Lacie Ext Drive? When I plug the the drive into the computer, the device icon will appear on my desktop automatically, true? There is an empty
    folder on the drive that bears the title of the group of songs I want to put there.
    My other question is: if I add new tracks to a certain song that I have already stored on the ext drive, how do I store the new version of the song. Does it just replace the old version or do I need to store a the new version separately?

    Asset management systems to handle data and projects over their lifetime can be any number of things. One popular method would be disk-to-disk-to-tape or D2D2T.
    All data is stored on real fast, real expensive drives when it's being constantly used. These systems can have dozens of terabytes or more, but the drives are mainly used for online, active projects. Like fast, fiber-channel SCSI or SAS drives.
    If a project or file hasn't been used in awhile, it automatically gets migrated to nearline storage...slower, cheaper disks. These might be arrays of SATA drives, and usually has much more storage available than the faster disks. A complete asset management system can migrate the data in the background, and the user doesn't even notice. The files still appear to be on the same location in their volume or mount.
    After even longer, unused projects get moved (again, automatically) to data tapes. These files can sit in a tape library...and the system is able to recover them if they're ever needed again.
    For an example, I might want 5 or 10TBs available as fast, online storage. Then, I'd have another 50TBs as nearline storage to keep 6 months to 1 year worth of projects. And after that, everything gets archived to tape.
    There's a growing trend to have everything always stored on disk, and keep growing and growing your storage. It's fast and effective, but for really important things...you don't want just one copy. You'd want at least two...in different locations. So, you may keep a giant disk system for all your long-term storage on site, and then also make tape copies to send off-site for permanent storage.
    All of these options are enterprise-class solutions, and they've been used in the business world for quite a while. They're expensive, but give you the most options for recovery and storing data which you may need to recover at any point in time as quickly as possible.
    --Tex

Maybe you are looking for

  • Is it possible to change the user status of a TECO Order

    Hello Folks Is it possible to changes the user status of a TECO Order? I have tried to change it using the FM 'STATUS_CHANGE_EXTERN'. Its working fine for NON TECO Orders but not for TECO Orders. On the other hand I was able to manually change the us

  • Display total cost in interactive report

    Hello, I have created one interactive report, on which i have applied control break on one of the column say department. there is one column on my report which is showing price, so,I want to add one more row at the bottom of report showing total of o

  • OFM 11gr1 and php 5.2.13 on a sun sparc platform

    Hello, I have a sun sparc 64 platform. Currently upgrading to 11g and have most things up and running. I need to upgrade my version of php to 5.x. Wanted to upgrade to 5.3 but apparently it is not available for my platform. But, php 5.2.13 for the sp

  • Java SE 6 Runtime unavailable on Mountain Lion

    I bought OS X Mountain Lion from the App Store today (previously on Lion 10.7.4) and it downloaded and installed itself apparently without issue. However, when I checked back on my machine (Mid 2011 MacBook Pro) after letting it boot up properly I ha

  • Error C3861: '__resumable_traits': identifier not found

    Hi! I am trying the following (simplified) code with VS2015 Preview: #include <future> using namespace std; future<void> WriteHistoricalValuesAsync(vector<int> values)   vector<int> v;   for (int i = 0; i < values.size(); i++)     v.push_back(values[