Test Data Manager

 View Only
  • 1.  How to create a global seedlist?

    Posted Jul 04, 2016 09:46 AM


    When I create a seedlist manually under the context of a project, the seedlist remains accessible only to that specific project and is not accessible by other projects. Does anyone know how can a seedlist be made global?



  • 2.  Re: How to create a global seedlist?
    Best Answer

    Posted Jul 04, 2016 11:28 AM

    By default the seed list added from Tools->Maintain Seed Data is set at the project level. To make the seed data global, i.e to be able to use it in all the projects, you will have to run the following query against the repository.

    1. Go to Test Data->Test Data Repository SQL Window.

    2. Run this query (the syntax given below is for a sql server repository)

    update dbo.gtrep_reference_data set rd_proj_id = 0 where rd_ref_id = '<Seedlistname>';

     

    Please let me know if the above helps

     

    Thanks,

    Aditi



  • 3.  Re: How to create a global seedlist?

    Posted Jul 05, 2016 06:54 AM

    Thanks a lot. This worked like a charm. kapad01