Comments on: Mass Delete Members in OneStream XF https://blogs.perficient.com/2020/06/10/mass-delete-members-in-onestream-xf/ Expert Digital Insights Tue, 08 Sep 2020 15:08:48 +0000 hourly 1 By: Terry Ledet https://blogs.perficient.com/2020/06/10/mass-delete-members-in-onestream-xf/#comment-26803 Tue, 08 Sep 2020 15:08:48 +0000 https://blogs.perficient.com/?p=275718#comment-26803 In reply to Daniel Hopson.

Daniel

Thank you for the contribution which is appreciated.

Terry

]]>
By: Daniel Hopson https://blogs.perficient.com/2020/06/10/mass-delete-members-in-onestream-xf/#comment-26801 Tue, 08 Sep 2020 13:52:14 +0000 https://blogs.perficient.com/?p=275718#comment-26801 For all those that don’t have access to create a table on a database there is another method that may be helpful. Using the table values function to build the list.

Select
MemberName as [@Name]
,’Delete’ as [@Action]
From (
select *
from (values
(‘A10001’)
,(‘A10002’)
,(‘A10003’)
,(‘A10004’)
,(‘A10005’)
) T1 (MemberName)
) Members
for xml path (‘member’), root(‘members’)

]]>