Results 1 to 4 of 4
Thread: Recover deleted survey?
-
05-31-2011, 07:19 PM #1BonnieHellevig Guest
Recover deleted survey?
A survey was accidentally deleted. Can it be recovered? How?
Thanks,
Bonnie
-
06-01-2011, 08:49 AM #2
Junior Member
- Join Date
- Dec 2008
- Posts
- 18
This happened at our first last year. After some back and forth with Checkbox support, I was given the following SQL script to run - and it worked!
You will need to know the survey GUID. Replace the "xxxxxxxxx" in the last line with that GUID.
UPDATE
ckbx_Template
SET
Deleted = 0
FROM
ckbx_Template t
INNER JOIN ckbx_ResponseTemplate rt ON rt.ResponseTemplateId = t.TemplateId
WHERE
REPLACE(rt.[GUID], '-', '') = ‘xxxxxxxxxxxxxxxxxxxxx’
Stephen Meisner,
Deloitte Canada
-
04-03-2012, 10:16 AM #3
Junior Member
- Join Date
- Apr 2012
- Posts
- 1
Hello Stephen,
I have the same issue. Can you please explain two things:
1) What is the GUID and how can I get it for the deleted survey?
2) Where do I enter the above script?
Thanks!
-
04-03-2012, 10:53 AM #4
Junior Member
- Join Date
- Dec 2008
- Posts
- 18
The GUID is the unique identifier for the survey. It can be found in any email sent to users to respond to the survey (as long as you are not using Invitations) or in Checkbox itself. It occurs at the end of the URL after "?s=". For example - If the original Activation link for the survey was http://mycheckboxsurvey.aspx?s=123456789 then the GUID is 123456789.
The script is to be run on the SQL server holding your Checkbox data. Ask your IT group to execute the SQL code on the SQL server where Checkbox data resides and to advise you when complete.
It works like a charm. Good luck!
Stephen


LinkBack URL
About LinkBacks
Reply With Quote
