I have been searching the net for hours now in hopes of finding an answer to my question / problem,hope you can help.
Currently i am running accpac with a mssql backend. I am tryint to create some form of backup solution for this using veritas. Now I need to have a very granular restore option. For instance i would like to be able to restore 1 feild and only one feild leaving the rest of the database untouched. Is this possible given the software i have. If so how can i accomplish this?
I am not sure if what you say is possible. Do you want to restore a single file to a time before/after the rest of the database? If so, then this is impossible, as the recovery process will roll forward any changes to keep all datafiles at the same point in time.
You'll need to restore the entire database to a separate database name. Then using this new database, you can pull the data from it to your original server. You can do this via T-SQL between the two databases.