Options

Visualizing Snapshot content

lfagettilfagetti Posts: 15 Bronze 2
edited May 25, 2006 8:27AM in SQL Toolkit Previous Versions
Hi,
I'd like to know if there is a way to visualize the content of a Snapshot without going thru the comparison with an empty DB.

Thanks

Comments

  • Options
    Brian DonahueBrian Donahue Posts: 6,590 Bronze 1
    Hello,

    I don't see anything stopping you from using the properties of the database object on their own, for instance:
    db1.Register()...
    foreach (RedGate.SQLCompare.Engine.Table t in db1.Tables) {
    Console.WriteLine(t.FullyQualifiedName);
    }
    
  • Options
    lfagettilfagetti Posts: 15 Bronze 2
    Thank you for the tip, but I hoped it didn't need coding in VB or C; more like "SQLCompare /DisplaySnapshot:<filename>"
  • Options
    Brian DonahueBrian Donahue Posts: 6,590 Bronze 1
    Doesn't look like this is possible using the command line tool.
Sign In or Register to comment.