Bulk data insert from one table to custom table
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-13-2023 05:45 AM
Hi Team.
I have requirements where I need to pull records of last day data from kb_use table (Filter data) and insert into custom created table.
At high level requirment is to capture self solved articles read by user's , I am aware of OOB metric table but that doesn't support our requirment to build report and create breakdowns.
Could any one suggest me best possible methods to pull and insert data into custom table.
Highly appreciated if any one could suggest.
Rajesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-13-2023 06:12 AM
Hi,
Is this a one time activity?
Thanks and Regards,
Saurabh Gupta
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-13-2023 06:32 AM
Hi @Rajesh101 ,
My approach will be like :
Write a Schedule job that runs dialy morning to retrieve last day data from the kb_use table.
Using GlideRecord, add appropriate query conditions to retrieve and then insert those records into your custom table using another GlideRecord in the code.
Thanks,
Venkatesh Nekkanti