Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. MarkInCA

    VB6 SQL-DMO how backup to remote hard drive

    Hello, all! If anyone needs this for future reference, here is the solution I created: Set reference to "Active DS Type Library" Private sub BackupToShare Dim psCompId As String Dim psBackupPath As String Dim psDirPath As String Dim psInfo As New ADSystemInfo Dim pb As...
  2. MarkInCA

    VB6 SQL-DMO how backup to remote hard drive

    Hello, all! I'm successfully using SQL DMO to create backups of my SQL database on my local machine. I can connect to our local network and manipulate server databases. Is there a way to create a .bak on my local disk of the server database? my abbreviated code: Dim poBackup As...
  3. MarkInCA

    Document SQL db

    CCLINT - Good question. I almost automatically said yes since I cut and pasted. But I double checked to be sure that I had: CBool(catTbl.Tables(i).Columns(k).Attributes And adFldIsNullable) (Which was just cut and pasted from code). I had similar results with adFldMayBeNull. Perhaps to...
  4. MarkInCA

    Document SQL db

    Thanks paulbent! Sorry, should have explained. I am using VB6 and ADO to document a SQL database. This is a very good lead, although I received 'False' back on every column (which is untrue). I'll start pursuing 'adFldIsNullable'. Thanks!
  5. MarkInCA

    Document SQL db

    Greetings! I'm new to a company and will be doing some dataconversions. To get familiar with the data structure (and to dump it into rs) I've come up with: 'Loop through tables in Source to populate Result catTbl.ActiveConnection = cn j = catTbl.Tables.Count For i = 1 To j If...

Part and Inventory Search

Back
Top