Hi,
I have written a script to delete the database during uninstallation of the product.
OSQL -E -S .\SQLExpress -d MASTER -w 200 -n -b -Q "DROP DATABASE Sample" -o "DeleteDb.txt"
But before the deletion I would like to ask the confirmation. How do I do that?
-Vidhya