Forum Replies Created

Viewing 15 posts - 406 through 420 (of 484 total)

  • RE: Log Utility recommendations?

    I looked at it (at their site), but their licensing is by server, and you cannot transfer it to another server.  I am looking for something like "client licensing", where...

  • RE: Screen scraping software

    You can do that yourself using a browser control and getting the html from the control and extracting the data.  You can either get the data using string parsing techniques...

  • RE: little help plz?

    The SQL Server directory you see may have been installed with any number of programs/products that use MSDE (Microsoft's free version of SQL Server).  If so, there will not be...

  • RE: Why thinks Vb-script my object is a column

    The Value of GNavn is always an Object...

    SQL Server can only handle text in a query. It cannot serialize an object to collect and store its data in a column...

  • RE: msde RELa

    By default, MSDE Release A installs with all network protocols off (DISABLENETWORKPROTOCOLS in the setup.ini file).  As long as you are using it for your own local machine, this is...

  • RE: SQL Server Developer Edition

    Yes.  Developer edition is just like Enterprise, but limited to 10 connections (you can even cluster with Developer edition).  I assume you are a developer, and this database will be...

  • RE: Why thinks Vb-script my object is a column

    You are not enclosing your Where clause criteria in quotes for the query. When SQL Server get your query, it looks like "... WHERE dbo.gruppe.navn like Multigroove ".  You need...

  • RE: MSDE problem

    By default, when installing MSDE Revision A or SP3, all network protocols for connecting to MSDE are turned off, except for shared memory protocol.  Try specifying in the connection string...

  • RE: The Case for GUIDs

    Mike;

    Check your facts.

    Winters Group: http://www.wintercorp.com/vldb/2003_TopTen_Survey/TopTenWinners.asp

    SQL Server runs 4 of the world's top 10 largest transaction processing databases by rows, across All Environments.  SQL Server runs the world's sixth...

  • RE: Updating from ADO recordSet

    Assumming that you really mean the following:

    1. Flash - Request Specific Query
    2. Object -Create ADO.recordSet from SQL and disconnect
    3. Flash - pickup disconnected RecordSet
    4....
  • RE: beta 2 YUKON INFO

    According to Paul Flessner, senior vice-president of Microsoft's server platform division, at  the partners conference last week, Beta 2 will be released by the end of July to a larger group of...

  • RE: SQL Server Type Identification

    Of course, you are not going to be able to run @@version from SMS.  I dug out how to do this once, but it was quite awhile ago, do not...

  • RE: Simple recovery?

    You may want to consider:

    • Changing the Recovery Model to Bulk-Logged,
    • Use Select Into to move the data you want to keep to another new table,
    • Truncate the original table, then drop the table.
    • Rename...
  • RE: Formatting text output

    Look at using Reporting Services.  This can be added onto your existing SQL Server license for no cost, and is designed to handle what you are trying to do.  I...

  • RE: SAN Drive configuration for best performance

    We have setup configurations similar to yours, with the following exceptions:

    • SQL Data on Raid 10.  On a stress test, having SQL databases on raid 10 will perform 10-15% than raid...

Viewing 15 posts - 406 through 420 (of 484 total)