-1
dtexec /SQL "\Export table" /SERVER svr1 /USER User1 /PASSWORD "*******" /CHECKPOINTING OFF /REPORTING E

I also added this part

"/Par "$ServerOption::SYNCHRONIZED(Boolean)";True"

but it throws an error:

Correct the script and reschedule the job. The error information returned by PowerShell is: 'The term 'True' is not recognized as the name of a cmdlet"

Hadi
  • 36,233
  • 13
  • 65
  • 124
Shabir
  • 21
  • 1

1 Answers1

0

I think the syntax provided is incorrect since there are some additional quotations. Try the following syntax:

 /Par "$ServerOption::SYNCHRONIZED(Boolean)";True

Reference

Hadi
  • 36,233
  • 13
  • 65
  • 124