- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2023 02:29 PM
Hi, I am new to the Sys Admin career journey. Asides from the Knowledge Check Tasks that accompanies the modules in Now Learning, is there some way I can load Demo Data into my PDI for practice, and maybe even find more practice tasks to try my hands on?
Any useful pointers will be appreciated.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2023 08:43 PM
Hi please see below point help you
ServiceNow provides free developer instances (PDI - Personal Developer Instance) for learning and testing purposes
For practice
>
Now Learning:
- Explore the "Now Learning" platform for additional learning tasks and challenges. It's a great resource provided by ServiceNow with guided learning paths.
ServiceNow Community:
- IT is a valuable resource where you can interact with other ServiceNow professionals. Look for discussion threads related to practice tasks, challenges, or sample scenarios.
YouTube Tutorials:
- Many individuals and organizations create ServiceNow tutorials on YouTube. Search for tutorials that cover specific topics you're interested in and follow along with the examples.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2023 03:13 PM
Hi @Jmyekn1123 ,
Yep, go to plugins:
Find the plugin you're looking for to have demo data in (in my example - incidents).
Find the right plugin ID:
In quick actions to the right - chose load demo data:
If my answer has helped with your question, please mark my answer as accepted solution and give a thumb up.
best regards
Anders
If my answer has helped with your question, please mark my answer as the accepted solution and give a thumbs up.
Best regards
Anders
Rising star 2024
MVP 2025
linkedIn: https://www.linkedin.com/in/andersskovbjerg/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-10-2023 11:14 PM
Hi @Jmyekn1123
If my answer has helped with your question, please mark my answer as accepted solution.
Best regards
Anders
If my answer has helped with your question, please mark my answer as the accepted solution and give a thumbs up.
Best regards
Anders
Rising star 2024
MVP 2025
linkedIn: https://www.linkedin.com/in/andersskovbjerg/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2023 11:29 PM
Hi @Jmyekn1123
If you have create PDI account , You will receive the Demo data for all tables like (Incident, Problem, change etc..) .While installing the plugin for new configuration , Please select Load Demo data check box .
Mark Correct if this solves your issue and also hit Like and Helpful if you find my response helpful.
Thanks ,
Sandeep
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2023 04:10 AM
Hi @Jmyekn1123
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.
Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]
****************************************************************************************************************
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2023 06:05 AM
I am commenting for the training
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2023 06:40 AM
Hi @Jmyekn1123 ,
ServiceNow OOTB provide demo data in all the important tables for practice, But if you need extra data in any table for your extra practice to get more experience.
you can create demo data from background scripts in your PDI,
you can use below script to create records in the table were you require demo data.
//Insert() method // I am using Incident table for demo, you can select any table as per your requirement.
var gr =new GlideRecord("incident");
for(i=1;i<=n;i++) // n = 100 here, n is the number of records you want to create in that particular table @Jmyekn1123
{
gr.newRecord();
gr.short_description='demo data';
gr.insert();
}
if my answer helps in resolving your query, please mark it as helpful/ accepted solution @Jmyekn1123.
Thanks & Regards,
S. Lakshmikanth Gupta.