Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-24-2020 03:17 AM
Hi All, I just want to know that is it possible to clone one PDI with another PDI. I tried to set the "glide.db.clone.allow_clone_target" property to true, but it is not allowing me to do that. It is showing
"This item is read-only based on its protection policy."
Solved! Go to Solution.
1 ACCEPTED SOLUTION
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-24-2020 03:25 AM
HI,
You cant do that. Cloning is part of the instance maintenance for commercially used instances, while the Idea of having a PDI is purely to learn and experiment on things.
That is why PDI have options wo wipe instance and refresh but you can clone it.
-Anurag
-Anurag
5 REPLIES 5
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-16-2023 07:50 AM
I could set this parameter to "true" by script.
var v_gr = new GlideRecord('sys_properties');
v_gr.addQuery('name=glide.db.clone.allow_clone_target');
v_gr.query();
while(v_gr.next())
{gs.info(v_gr.name);
v_gr.value=true;
v_gr.update();
}
But when I try to configure the target.