Forum Replies Created

Viewing 15 posts - 511 through 525 (of 824 total)

  • RE: Import from XML to SQL Server 2000

    Convince whoever made that decision of the stupidity of using XML to move "large amounts of data."  Small messages are one thing, but the bloat of XML when transfering large...

  • RE: Arguments for using SQL server

    I will just emphasize a point that Steve made.  I have seen several projects both internal and vendors that have attempted to "port" an application from FoxPro or DBase to...

  • RE: MAPI status of sql 2000 server

    You must login to the server using the SQL Server Service account, configure the MAPI client and then configure SQL Server to select that profile in Enterprise Manager by right...

  • RE: any way to tell when a column was added to a table?

    Unfortunately, unless you had some sort of auditing application in place at the time the change was made there is only one way to find this out.  If your database...

  • RE: Failover vs replication - which is better

    The biggest con of clustering is cost.  You have to run SQL Server Enterprise Edition and have to use a SAN, both of which typically cost a bundle. 

    The biggest...

  • RE: Temp database size

    Sure you can shrink tempdb.  You can use either the dbcc shrinkdatabase or the dbcc shrinkfile commands.  If this is a production instance, I would be careful about shrinking tempdb...

  • RE: Insert the pdf file

    There are several reasons to store the file data in the database rather than just storing a link.

    First and foremost is recoverability.  What mechanisim ensures that your filesystem and the...

  • RE: Linked-Servers in a SQL clustered environment

    I think this is highly unadvisable.  Linked Servers have their place, but they tend to be rather large security holes.  First off, you would have to use SQL authentication with...

  • RE: SQL server 2000 standard or enterprise?

    To expand on what Chris said...  If your users are accessing the data through the internet you probably need to use the "Per Processor" license, this has nothing to do...

  • RE: Importing data from UNISYS RDMS

    Since you are already able to connect to the other database and query it, all you should need to do is modify your source query to include the appropriate WHERE...

  • RE: Is XML the Answer?

    Thanks for correcting the XML, but since I don't claim to be an expert in XML (as I avoid it like the plague) I pulled that example right off of...

  • RE: Is XML the Answer?

    csv = comma seperated values.  Normally it denotes an ASCII file, but not always...

  • RE: Is XML the Answer?

    ...as if XML were a universal data format, PLEASE!!!  Get real here.  Why does a data file format need to be universally agreed upon (as if XML were)?  First off...

  • RE: High CPU usage - Who?!

    See my post above...  Run Profiler to capture each statement run with its associated CPU and IO cost. 

  • RE: Disappearing Tables

    Somebody is either screwing around with you or is inadvertantly doing this.  First thing I would do is to lock down SQL Server.  Eliminate any unused logins and users.  Very...

Viewing 15 posts - 511 through 525 (of 824 total)