Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)

  • RE: Importing XML Files Into SQL Server

    Why not just write an XQuery to import the data. It works fine

  • RE: Help! OpenSchema is very slow

    Instead of using 'OpenSchema' use the SQL statement

    select name from sysobjects where xtype = 'U' or xtype = 'S'

    if you want both system tables and user tables or

    select name from...

  • RE: Executing a DTS using Visual Basic

    You didn't say which version of Visual Basic that you were using. If you are using Visual Basic .NET, the problem is a "rights" issue. The user that is logging...

  • RE: Calculating I/O

    I don't know your business, but if we limit the calls to 8 hours per day / 5 days a week, thats 175,000 calls an hour. It depends on what...

Viewing 4 posts - 1 through 4 (of 4 total)