<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Question Re: dbvalid giving different errors? in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/dbvalid-giving-different-errors/qaa-p/13843716#M4874559</link>
    <description>&lt;P&gt;After quite some time, we finally managed to figure out the issue.&lt;/P&gt;
&lt;P&gt;Due to the infrastructure the customer has, dbvalid has to be run on the same Machine as the production database.&lt;/P&gt;
&lt;P&gt;Let me expand (again, names and file locations have been changed to protect the innocent):&lt;/P&gt;
&lt;P&gt;Firstly this is how the Production database is set up (I've removed some cache control and logging parameters):&lt;/P&gt;
&lt;DIV class="codehilite"&gt;&lt;PRE&gt;&lt;SPAN class="o"&gt;-&lt;/SPAN&gt;&lt;SPAN class="n"&gt;xTCPIP&lt;/SPAN&gt;&lt;SPAN class="p"&gt;(&lt;/SPAN&gt;&lt;SPAN class="n"&gt;Port&lt;/SPAN&gt;&lt;SPAN class="o"&gt;=&lt;/SPAN&gt;&lt;SPAN class="mi"&gt;2638&lt;/SPAN&gt;&lt;SPAN class="p"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="o"&gt;-&lt;/SPAN&gt;&lt;SPAN class="n"&gt;nDatabase&lt;/SPAN&gt;
&lt;SPAN class="n"&gt;&lt;span class="lia-unicode-emoji" title=":anguished_face:"&gt;😧&lt;/span&gt;&lt;/SPAN&gt;&lt;SPAN class="o"&gt;\\&lt;/SPAN&gt;&lt;SPAN class="n"&gt;Databases&lt;/SPAN&gt;&lt;SPAN class="o"&gt;\\&lt;/SPAN&gt;&lt;SPAN class="n"&gt;db&lt;/SPAN&gt;&lt;SPAN class="o"&gt;\\&lt;/SPAN&gt;&lt;SPAN class="n"&gt;database&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;db&lt;/SPAN&gt;
&lt;SPAN class="o"&gt;-&lt;/SPAN&gt;&lt;SPAN class="n"&gt;nDatabase&lt;/SPAN&gt;
&lt;/PRE&gt;&lt;/DIV&gt;


&lt;P&gt;We now go ahead and run the dbvalid command on the same Machine using:&lt;/P&gt;
&lt;DIV class="codehilite"&gt;&lt;PRE&gt;&lt;SPAN class="s"&gt;"%SQLANY11%\\bin64\\dbvalid.exe"&lt;/SPAN&gt; &lt;SPAN class="o"&gt;-&lt;/SPAN&gt;&lt;SPAN class="n"&gt;c&lt;/SPAN&gt; &lt;SPAN class="s"&gt;"dbf=E:\\backups\\db\\database.db;uid=validator;pwd=validator;dbs=-ds E:\\backups\\db"&lt;/SPAN&gt;
&lt;/PRE&gt;&lt;/DIV&gt;


&lt;P&gt;Now even though we had specified that dbvalid should be run against E:backupsdbdatabase.db (DBF=E:backupsdbdatabase.db) dbvalid was connecting to the Running Production Database and not the backup.  This is due to SQL Anywhere determining that the Server Name and Database Name for the dbvalid should be "Database" and then finding that there is already a Server and Database running with that same name, thus causing it to connect to that Server and Database combination instead of starting a new Database (or throwing an error).&lt;/P&gt;
&lt;P&gt;Thus as this was a running database with CRUD operations being performed, dbvalid would end up throwing errors for invalid pages even though in reality there wasn't.&lt;/P&gt;
&lt;P&gt;So after all that, we've now changed the dbvalid command to be:&lt;/P&gt;
&lt;DIV class="codehilite"&gt;&lt;PRE&gt;&lt;SPAN class="s"&gt;"%SQLANY11%\\bin64\\dbvalid.exe"&lt;/SPAN&gt; &lt;SPAN class="o"&gt;-&lt;/SPAN&gt;&lt;SPAN class="n"&gt;c&lt;/SPAN&gt; &lt;SPAN class="s"&gt;"START=dbsrv11 -x NONE -xd -ch 1g;DBF=E:\\backups\\db\\database.db;uid=validator;pwd=validator;ServerName=validatedb;dbs=-r -ds E:\\backups\\db"&lt;/SPAN&gt;
&lt;/PRE&gt;&lt;/DIV&gt;


&lt;P&gt;Lesson learnt - Read the documentation with a fine toothcomb and then double-check everything.&lt;/P&gt;
&lt;P&gt;Update - I've created a &lt;A href="http://sqlanywhere-forum.sap.com/questions/15116/suggestion-error-if-dbf-is-defined-when-server-and-database-already-are-running"&gt;suggestion for SQL Anywhere&lt;/A&gt; to try and solve or at least help the user discover this problem.&lt;/P&gt;</description>
    <pubDate>Wed, 09 Jan 2013 20:24:20 GMT</pubDate>
    <dc:creator>former_SQLA_member1694882</dc:creator>
    <dc:date>2013-01-09T20:24:20Z</dc:date>
    <item>
      <title>dbvalid giving different errors?</title>
      <link>https://community.sap.com/t5/technology-q-a/dbvalid-giving-different-errors/qaq-p/13843715</link>
      <description>&lt;P&gt;SQL Anywhere 11.0.1.2837 (Windows 2008 R1 64bit)&lt;/P&gt;
&lt;P&gt;We run dbvalid on a backup of a database.  The database has two dbspaces, total size is 26GB.&lt;/P&gt;
&lt;P&gt;Backup is performed using:&lt;/P&gt;
&lt;DIV class="codehilite"&gt;&lt;PRE&gt;&lt;SPAN class="s"&gt;"%SQLANY11%\\bin64\\dbbackup.exe"&lt;/SPAN&gt; &lt;SPAN class="o"&gt;-&lt;/SPAN&gt;&lt;SPAN class="n"&gt;k&lt;/SPAN&gt; &lt;SPAN class="n"&gt;recover&lt;/SPAN&gt; &lt;SPAN class="o"&gt;-&lt;/SPAN&gt;&lt;SPAN class="n"&gt;s&lt;/SPAN&gt; &lt;SPAN class="o"&gt;-&lt;/SPAN&gt;&lt;SPAN class="n"&gt;c&lt;/SPAN&gt; &lt;SPAN class="s"&gt;"links=tcpip;dsn=dbbackup"&lt;/SPAN&gt; &lt;SPAN class="n"&gt;E:&lt;/SPAN&gt;&lt;SPAN class="o"&gt;\\&lt;/SPAN&gt;&lt;SPAN class="n"&gt;backups&lt;/SPAN&gt;&lt;SPAN class="o"&gt;\\&lt;/SPAN&gt;&lt;SPAN class="n"&gt;db&lt;/SPAN&gt; &lt;SPAN class="o"&gt;-&lt;/SPAN&gt;&lt;SPAN class="n"&gt;y&lt;/SPAN&gt; &lt;SPAN class="o"&gt;-&lt;/SPAN&gt;&lt;SPAN class="n"&gt;r&lt;/SPAN&gt;
&lt;/PRE&gt;&lt;/DIV&gt;


&lt;P&gt;Database validation is performed using:&lt;/P&gt;
&lt;DIV class="codehilite"&gt;&lt;PRE&gt;&lt;SPAN class="s"&gt;"%SQLANY11%\\bin64\\dbvalid.exe"&lt;/SPAN&gt; &lt;SPAN class="o"&gt;-&lt;/SPAN&gt;&lt;SPAN class="n"&gt;c&lt;/SPAN&gt; &lt;SPAN class="s"&gt;"dbf=E:\\backups\\db\\database.db;uid=validator;pwd=validator;dbs=-ds E:\\backups\\db"&lt;/SPAN&gt;
&lt;/PRE&gt;&lt;/DIV&gt;


&lt;P&gt;A recent backup that was validated raised some errors like so:&lt;/P&gt;
&lt;DIV class="codehilite"&gt;&lt;PRE&gt;&lt;SPAN class="n"&gt;Database&lt;/SPAN&gt; &lt;SPAN class="n"&gt;validation&lt;/SPAN&gt; &lt;SPAN class="n"&gt;failed&lt;/SPAN&gt; &lt;SPAN class="k"&gt;for&lt;/SPAN&gt; &lt;SPAN class="n"&gt;page&lt;/SPAN&gt; &lt;SPAN class="mo"&gt;0046&lt;/SPAN&gt;&lt;SPAN class="n"&gt;df32&lt;/SPAN&gt; &lt;SPAN class="n"&gt;of&lt;/SPAN&gt; &lt;SPAN class="n"&gt;database&lt;/SPAN&gt; &lt;SPAN class="n"&gt;file&lt;/SPAN&gt; &lt;SPAN class="s"&gt;"E:\\backups\\db\\databaseLogs.db"&lt;/SPAN&gt;
&lt;SPAN class="n"&gt;Database&lt;/SPAN&gt; &lt;SPAN class="n"&gt;validation&lt;/SPAN&gt; &lt;SPAN class="n"&gt;failed&lt;/SPAN&gt; &lt;SPAN class="k"&gt;for&lt;/SPAN&gt; &lt;SPAN class="n"&gt;page&lt;/SPAN&gt; &lt;SPAN class="mo"&gt;0046&lt;/SPAN&gt;&lt;SPAN class="n"&gt;df33&lt;/SPAN&gt; &lt;SPAN class="n"&gt;of&lt;/SPAN&gt; &lt;SPAN class="n"&gt;database&lt;/SPAN&gt; &lt;SPAN class="n"&gt;file&lt;/SPAN&gt; &lt;SPAN class="s"&gt;"E:\\backups\\db\\databaseLogs.db"&lt;/SPAN&gt;
&lt;/PRE&gt;&lt;/DIV&gt;


&lt;P&gt;When running the exact same dbvalid command a second time on the exact same database files, it still produced errors but for different pages.  Like so:&lt;/P&gt;
&lt;DIV class="codehilite"&gt;&lt;PRE&gt;&lt;SPAN class="n"&gt;Database&lt;/SPAN&gt; &lt;SPAN class="n"&gt;validation&lt;/SPAN&gt; &lt;SPAN class="n"&gt;failed&lt;/SPAN&gt; &lt;SPAN class="k"&gt;for&lt;/SPAN&gt; &lt;SPAN class="n"&gt;page&lt;/SPAN&gt; &lt;SPAN class="mo"&gt;0046&lt;/SPAN&gt;&lt;SPAN class="n"&gt;e141&lt;/SPAN&gt; &lt;SPAN class="n"&gt;of&lt;/SPAN&gt; &lt;SPAN class="n"&gt;database&lt;/SPAN&gt; &lt;SPAN class="n"&gt;file&lt;/SPAN&gt; &lt;SPAN class="s"&gt;"E:\\backups\\db\\databaseLogs.db"&lt;/SPAN&gt;
&lt;SPAN class="n"&gt;Database&lt;/SPAN&gt; &lt;SPAN class="n"&gt;validation&lt;/SPAN&gt; &lt;SPAN class="n"&gt;failed&lt;/SPAN&gt; &lt;SPAN class="k"&gt;for&lt;/SPAN&gt; &lt;SPAN class="n"&gt;page&lt;/SPAN&gt; &lt;SPAN class="mo"&gt;0046&lt;/SPAN&gt;&lt;SPAN class="n"&gt;e142&lt;/SPAN&gt; &lt;SPAN class="n"&gt;of&lt;/SPAN&gt; &lt;SPAN class="n"&gt;database&lt;/SPAN&gt; &lt;SPAN class="n"&gt;file&lt;/SPAN&gt; &lt;SPAN class="s"&gt;"E:\\backups\\db\\databaseLogs.db"&lt;/SPAN&gt;
&lt;/PRE&gt;&lt;/DIV&gt;


&lt;P&gt;But then also produced the following:&lt;/P&gt;
&lt;DIV class="codehilite"&gt;&lt;PRE&gt;&lt;SPAN class="n"&gt;VALIDATE&lt;/SPAN&gt; &lt;SPAN class="n"&gt;TABLE&lt;/SPAN&gt; &lt;SPAN class="s"&gt;"Database"&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="s"&gt;"ExampleTable"&lt;/SPAN&gt;
&lt;SPAN class="n"&gt;Primary&lt;/SPAN&gt; &lt;SPAN class="n"&gt;key&lt;/SPAN&gt; &lt;SPAN class="k"&gt;for&lt;/SPAN&gt; &lt;SPAN class="s"&gt;"ExampleTable"&lt;/SPAN&gt; &lt;SPAN class="n"&gt;has&lt;/SPAN&gt; &lt;SPAN class="n"&gt;invalid&lt;/SPAN&gt; &lt;SPAN class="ow"&gt;or&lt;/SPAN&gt; &lt;SPAN class="n"&gt;duplicate&lt;/SPAN&gt; &lt;SPAN class="nb"&gt;index&lt;/SPAN&gt; &lt;SPAN class="n"&gt;entries&lt;/SPAN&gt;
&lt;/PRE&gt;&lt;/DIV&gt;


&lt;P&gt;Does that sound correct?  I would've assumed that dbvalid would've returned the exact same errors in both runs?&lt;/P&gt;
&lt;P&gt;(note - I've changed db names, uids, pwds and table names to protect the innocent)&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jan 2013 23:42:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/dbvalid-giving-different-errors/qaq-p/13843715</guid>
      <dc:creator>former_SQLA_member1694882</dc:creator>
      <dc:date>2013-01-07T23:42:11Z</dc:date>
    </item>
    <item>
      <title>Re: dbvalid giving different errors?</title>
      <link>https://community.sap.com/t5/technology-q-a/dbvalid-giving-different-errors/qaa-p/13843717#M4874560</link>
      <description>&lt;P&gt;Some questions:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;I do assume the database is just started by DBVALID and is used exclusively, so that influences by other connections are excluded, right?&lt;/LI&gt;
&lt;LI&gt;Is there a "DBF=" missing at the start of your connection string?&lt;/LI&gt;
&lt;LI&gt;What does running "call sa_validate()" via ISQL against the backup tell? Does it also reveal that behaviour?&lt;/LI&gt;
&lt;LI&gt;Is that the whole output of DBVALID in both cases? - AFAIK, at least with v12, validation may use several internal connections running concurrently, which might result in a different order of checks for different runs, but I would assume that this should still result in the same diagnostic messages.  (Note: I'm wild-guessing here...)&lt;/LI&gt;
&lt;/UL&gt;
&lt;HR /&gt;
&lt;P&gt;Besides that: no, I don't have a clue. Seems puzzling.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jan 2013 06:59:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/dbvalid-giving-different-errors/qaa-p/13843717#M4874560</guid>
      <dc:creator>VolkerBarth</dc:creator>
      <dc:date>2013-01-08T06:59:15Z</dc:date>
    </item>
    <item>
      <title>Re: dbvalid giving different errors?</title>
      <link>https://community.sap.com/t5/technology-q-a/dbvalid-giving-different-errors/qaa-p/13843718#M4874561</link>
      <description>&lt;P&gt;&lt;A href="https://sqlanywhere-forum.sap.com/users/26/volker-barth/"&gt;@Volker&lt;/A&gt;:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Yes that is correct.&lt;/LI&gt;
&lt;LI&gt;Yes was missing DBF - corrected.&lt;/LI&gt;
&lt;LI&gt;Don't know yet - as this is on the production box, we're busy copying a backup down to a lower region to start up (we don't want to impact on production peformance too much).&lt;/LI&gt;
&lt;LI&gt;Its not the complete output, however when the outputs are compared in beyondcompare the only differences are the errors (i.e. all other messages are the same and in the same order).&lt;/LI&gt;
&lt;/OL&gt;</description>
      <pubDate>Tue, 08 Jan 2013 15:15:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/dbvalid-giving-different-errors/qaa-p/13843718#M4874561</guid>
      <dc:creator>former_SQLA_member1694882</dc:creator>
      <dc:date>2013-01-08T15:15:01Z</dc:date>
    </item>
    <item>
      <title>Re: dbvalid giving different errors?</title>
      <link>https://community.sap.com/t5/technology-q-a/dbvalid-giving-different-errors/qaa-p/13843719#M4874562</link>
      <description>&lt;P&gt;Check the RAM... bad RAM can masquerade as bad data, and at different times different good data can be loaded into the same bad RAM, thus giving the impression that the errors are nomadic (moving from place to place).&lt;/P&gt;
&lt;P&gt;If you suspect bad RAM, stop using the suspect computer altogether... bogus errors can turn into real errors if the data is written back to disk.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jan 2013 15:53:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/dbvalid-giving-different-errors/qaa-p/13843719#M4874562</guid>
      <dc:creator>Breck_Carter</dc:creator>
      <dc:date>2013-01-08T15:53:27Z</dc:date>
    </item>
    <item>
      <title>Re: dbvalid giving different errors?</title>
      <link>https://community.sap.com/t5/technology-q-a/dbvalid-giving-different-errors/qaa-p/13843716#M4874559</link>
      <description>&lt;P&gt;After quite some time, we finally managed to figure out the issue.&lt;/P&gt;
&lt;P&gt;Due to the infrastructure the customer has, dbvalid has to be run on the same Machine as the production database.&lt;/P&gt;
&lt;P&gt;Let me expand (again, names and file locations have been changed to protect the innocent):&lt;/P&gt;
&lt;P&gt;Firstly this is how the Production database is set up (I've removed some cache control and logging parameters):&lt;/P&gt;
&lt;DIV class="codehilite"&gt;&lt;PRE&gt;&lt;SPAN class="o"&gt;-&lt;/SPAN&gt;&lt;SPAN class="n"&gt;xTCPIP&lt;/SPAN&gt;&lt;SPAN class="p"&gt;(&lt;/SPAN&gt;&lt;SPAN class="n"&gt;Port&lt;/SPAN&gt;&lt;SPAN class="o"&gt;=&lt;/SPAN&gt;&lt;SPAN class="mi"&gt;2638&lt;/SPAN&gt;&lt;SPAN class="p"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="o"&gt;-&lt;/SPAN&gt;&lt;SPAN class="n"&gt;nDatabase&lt;/SPAN&gt;
&lt;SPAN class="n"&gt;&lt;span class="lia-unicode-emoji" title=":anguished_face:"&gt;😧&lt;/span&gt;&lt;/SPAN&gt;&lt;SPAN class="o"&gt;\\&lt;/SPAN&gt;&lt;SPAN class="n"&gt;Databases&lt;/SPAN&gt;&lt;SPAN class="o"&gt;\\&lt;/SPAN&gt;&lt;SPAN class="n"&gt;db&lt;/SPAN&gt;&lt;SPAN class="o"&gt;\\&lt;/SPAN&gt;&lt;SPAN class="n"&gt;database&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;db&lt;/SPAN&gt;
&lt;SPAN class="o"&gt;-&lt;/SPAN&gt;&lt;SPAN class="n"&gt;nDatabase&lt;/SPAN&gt;
&lt;/PRE&gt;&lt;/DIV&gt;


&lt;P&gt;We now go ahead and run the dbvalid command on the same Machine using:&lt;/P&gt;
&lt;DIV class="codehilite"&gt;&lt;PRE&gt;&lt;SPAN class="s"&gt;"%SQLANY11%\\bin64\\dbvalid.exe"&lt;/SPAN&gt; &lt;SPAN class="o"&gt;-&lt;/SPAN&gt;&lt;SPAN class="n"&gt;c&lt;/SPAN&gt; &lt;SPAN class="s"&gt;"dbf=E:\\backups\\db\\database.db;uid=validator;pwd=validator;dbs=-ds E:\\backups\\db"&lt;/SPAN&gt;
&lt;/PRE&gt;&lt;/DIV&gt;


&lt;P&gt;Now even though we had specified that dbvalid should be run against E:backupsdbdatabase.db (DBF=E:backupsdbdatabase.db) dbvalid was connecting to the Running Production Database and not the backup.  This is due to SQL Anywhere determining that the Server Name and Database Name for the dbvalid should be "Database" and then finding that there is already a Server and Database running with that same name, thus causing it to connect to that Server and Database combination instead of starting a new Database (or throwing an error).&lt;/P&gt;
&lt;P&gt;Thus as this was a running database with CRUD operations being performed, dbvalid would end up throwing errors for invalid pages even though in reality there wasn't.&lt;/P&gt;
&lt;P&gt;So after all that, we've now changed the dbvalid command to be:&lt;/P&gt;
&lt;DIV class="codehilite"&gt;&lt;PRE&gt;&lt;SPAN class="s"&gt;"%SQLANY11%\\bin64\\dbvalid.exe"&lt;/SPAN&gt; &lt;SPAN class="o"&gt;-&lt;/SPAN&gt;&lt;SPAN class="n"&gt;c&lt;/SPAN&gt; &lt;SPAN class="s"&gt;"START=dbsrv11 -x NONE -xd -ch 1g;DBF=E:\\backups\\db\\database.db;uid=validator;pwd=validator;ServerName=validatedb;dbs=-r -ds E:\\backups\\db"&lt;/SPAN&gt;
&lt;/PRE&gt;&lt;/DIV&gt;


&lt;P&gt;Lesson learnt - Read the documentation with a fine toothcomb and then double-check everything.&lt;/P&gt;
&lt;P&gt;Update - I've created a &lt;A href="http://sqlanywhere-forum.sap.com/questions/15116/suggestion-error-if-dbf-is-defined-when-server-and-database-already-are-running"&gt;suggestion for SQL Anywhere&lt;/A&gt; to try and solve or at least help the user discover this problem.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jan 2013 20:24:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/dbvalid-giving-different-errors/qaa-p/13843716#M4874559</guid>
      <dc:creator>former_SQLA_member1694882</dc:creator>
      <dc:date>2013-01-09T20:24:20Z</dc:date>
    </item>
    <item>
      <title>Re: dbvalid giving different errors?</title>
      <link>https://community.sap.com/t5/technology-q-a/dbvalid-giving-different-errors/qaa-p/13843720#M4874563</link>
      <description>&lt;P&gt;Would you share with us how the following could happen?&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;even though we had specified that dbvalid should be run against E:backupsdbdatabase.db (DBF=E:backupsdbdatabase.db) dbvalid was connecting to the Running Production Database and not the backup&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I'm asking since this kind of "lesson learnt" is usually very helpful for others - confine the reactions on &lt;A href="http://sqlanywhere-forum.sap.com/questions/9757"&gt;my (possible similar) FAQ&lt;/A&gt; where I missed an ENG parameter in a particular call...&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jan 2013 04:08:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/dbvalid-giving-different-errors/qaa-p/13843720#M4874563</guid>
      <dc:creator>VolkerBarth</dc:creator>
      <dc:date>2013-01-10T04:08:22Z</dc:date>
    </item>
    <item>
      <title>Re: dbvalid giving different errors?</title>
      <link>https://community.sap.com/t5/technology-q-a/dbvalid-giving-different-errors/qaa-p/13843721#M4874564</link>
      <description>&lt;P&gt;I support Volker's suggestion. My 2 cents just in case ... &lt;BR /&gt;&lt;BR /&gt; Presumably the DBN parameter was not specified, so the engine chose the already running database with the same (file) name. I've had to learn that the hard way, so now I either specify a different database name or use another engine to start the backup database.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jan 2013 04:58:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/dbvalid-giving-different-errors/qaa-p/13843721#M4874564</guid>
      <dc:creator>reimer_pods</dc:creator>
      <dc:date>2013-01-10T04:58:41Z</dc:date>
    </item>
    <item>
      <title>Re: dbvalid giving different errors?</title>
      <link>https://community.sap.com/t5/technology-q-a/dbvalid-giving-different-errors/qaa-p/13843722#M4874565</link>
      <description>&lt;P&gt;&lt;A href="https://sqlanywhere-forum.sap.com/users/26/volker-barth/"&gt;@Volker&lt;/A&gt; and &lt;A href="https://sqlanywhere-forum.sap.com/users/9/reimer-pods/"&gt;@Reimer&lt;/A&gt; - expanded answer to hopefully answer your questions.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jan 2013 19:20:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/dbvalid-giving-different-errors/qaa-p/13843722#M4874565</guid>
      <dc:creator>former_SQLA_member1694882</dc:creator>
      <dc:date>2013-01-10T19:20:06Z</dc:date>
    </item>
    <item>
      <title>Re: dbvalid giving different errors?</title>
      <link>https://community.sap.com/t5/technology-q-a/dbvalid-giving-different-errors/qaa-p/13843723#M4874566</link>
      <description>&lt;P&gt;Ah, yes, what a subtle pitfall:) - And I second your suggestion to handle DBF differently - though I'd suggest to ask for that in a separate question...&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jan 2013 03:25:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/dbvalid-giving-different-errors/qaa-p/13843723#M4874566</guid>
      <dc:creator>VolkerBarth</dc:creator>
      <dc:date>2013-01-11T03:25:39Z</dc:date>
    </item>
  </channel>
</rss>

