Hello all,
I am trying to migrate the attachments from one instance to another instance by following the below document.
I am trying to run the below script in MSSQL DB but I am not able to figure out the jiraschema of our system.
SELECT ( CAST('mv ' AS nvarchar(18)) + CAST(<jiraschema>.project.originalkey AS nvarchar(18)) + '' + CAST(<jiraschema>.jiraissue.issuenum AS nvarchar(18)) + '/' + CAST(<jiraschema>.fileattachment.ID asASnvarchar(18)) + ' "' + <jiraschema>.project.originalkey + '' + CAST(<jiraschema>.jiraissue.issuenum AS nvarchar(18)) + '/' + filename + '"' ) AS command FROM <jiraschema>.fileattachment JOIN <jiraschema>.jiraissue ON <jiraschema>.fileattachment.issueid = <jiraschema>.jiraissue.id JOIN <jiraschema>.project ON <jiraschema>.jiraissue.project = <jiraschema>.project.id WHERE <jiraschema>.project.pkey = 'ABC'
I need to replace jiraschema in the above Query with our system jirascheme. Can you help me to, How should I know Jiraschema of our system?
Thanks in advance,
ch
I would very strongly recommend that you move away from the database. There's an error and an incorrect assumption in your query that means you'll be getting completely the wrong thing from it.
Attachments are not saved in the DB. Good suggestion always run select statements on your DB never try anything else.
Attachment folder is in the Home Directory. Depending on your OS you should be able to migrate the folder from one server to the other.
Best,
Fadoua
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.