DBAsupport.com Forums - Powered by vBulletin
Results 1 to 2 of 2

Thread: DBV output to 1 file

  1. #1
    Join Date
    Oct 2006
    Posts
    11

    DBV output to 1 file

    Hi all,
    I'm trying to get the dbv output to go to 1 file. Apparently I can't use the logfile parameter because it will not add on to an existing file. I tried running it thru SQL and spooling the output to a file, but that doesn't seem to work either, the output just shows me logging into sql and exiting (although the dbv output does display on the terminal). I tried running the various dbv statements as a bat file and piping the output to a logfile, but that doesn't work either. I am running this script on a Windows system. Any suggestions?
    thanks

  2. #2
    Join Date
    Oct 2005
    Location
    Indianapolis
    Posts
    100
    It writes to stderr instead of stdout

    dbv FILE=users.dbf 2>verify.txt

    or try variations on the FOR command:

    for %c in (*.dbf) do dbv FILE=%c 2>>verify.txt
    "False data can act only as a distraction. Therefore. I shall refuse to perceive you." - Bomb #20

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width