Forum Replies Created

Viewing 15 posts - 3,376 through 3,390 (of 3,605 total)

  • RE: Match firstname lastname

    How are you going to cater for Rob, Bob, Robert, Robin, Bert. They could all be the same person or they could be all different.

    Speaking as someone who has...

  • RE: Simple Enough..

    Try this instead

    CREATE Procedure p_get_customerdetails

    /* Param List */

    @Customer_ID int,

    @view Int =0 AS

    Set NOCOUNT ON

    /*

        0 = CustMain

        1 = Devices

        2 = Setup

        3 = trxHist

    */

    IF @view = 0

        BEGIN

            SELECT * FROM vw_CUSTOMER...

  • RE: SQL Server Considerations

    Visual Studio has a tool called "Application Performance Explorer". I have to admit that I've never used it, but it is there.

    I've heard of a tool called SQL HAMMER,...

  • RE: Best practice when to use an index

    Hans,

    If you use Full Text Search facilities then you must have a primary key because SQL Server saves various status flags and other bits and bobs in the primary key.

    I...

  • RE: SQL Server Considerations

    quote:


    Can I host all the SQL Servers on one powerful machine under windows 2000?


    Yes...

  • RE: Best practice when to use an index

    quote:


    I don't understand your point? Why do you so forcefully express that your Identity column HAVE to be your primary key?
  • RE: SQL Agent Problem

    I've had this sort of problem with a number of applications. Message boxes that appear behind modal forms are a good one!

    I've also seen it happen when someone has...

  • RE: Image Insert

    One of the content management systems I use is called OBTREE and all binary files are stored within the database. One client has over 8,000 binary files stored in...

  • RE: PetCo.com Vulnerable to SQL Injection

    My company works with many CMS vendors. The attitudes of two of them show up the stark contrasts between vendors.

    Vendor A

    • Denies that problems exist.
    • Deletes any unfavourable...
  • RE: PetCo.com Vulnerable to SQL Injection

    I've been looking at e-commerce and one of the options open to me as a developer is to route the payment method through a known credit card provider. In...

  • RE: Best practice when to use an index

    My identity column is ALWAYS my primary key, otherwise there would be no point in having it. It tends to be my clustered index but won't necessarily be so.

    If I...

  • RE: In Trouble - Access with SQL Server (ODBC)

    I've also had problems where Access is referencing a VIEW and there is no primary key.

    Unless Access has a primary key, virtual or otherwise, it doesn't like editing records.

  • RE: Sorting, what would you do?

    Thanks for that both of you.

    The other trade-off I have to consider is that I will be handing over the database and stored procedure list to other developers so that...

  • RE: Best practice when to use an index

    quote:


    David, quick question. When you select from this table are you joining to it or from it? When you join...

  • RE: re: Reporting off your database

    It depends on your user's abilities. If they are surviving brain donors then you will need something expensive to allow them to write their own reports.

    For the reasonably literate...

Viewing 15 posts - 3,376 through 3,390 (of 3,605 total)