Forum Replies Created

Viewing 15 posts - 3,151 through 3,165 (of 3,606 total)

  • RE: i want to execute a stored procedure

    The signature is allegedly the marriage proposal that the actor, Robert Mitchum, made to an actress whose name escapes me.  I think she accepted.

  • RE: i want to execute a stored procedure

    Yes,

    I have a stored procedure that has a @choice argument.  Depending on the value of that argument I execute various stored procedures.

    The other thing that is possible is to create...

  • RE: Gotchas with MSDE vs SQL-Server?

    A common mistake is to confuse connections with users.

    One connection is automatically taken up with  by SQL Server itself.

    If you have EM and QA open then you've just used another...

  • RE: Gotchas with MSDE vs SQL-Server?

    I think the point at which the "throttle" become noticeable depends on what you are doing with the database.

    I've had over 25 users on bog standard Access 2.0 but all...

  • RE: Divide By Zero Error in WHERE Clause

    If you are going to use a case statement in your WHERE clause, I would put one in your SELECT as well to warn you that field2 is zero.

  • RE: Sound like matching

    I did consider writing some matching functions for SQL Server having written a number of deduplication programs.

    In the end I shyed away from it because it involves heavy string manipulation...

  • RE: MS kettle pot black

     I know you don't have to specify the owner, but MS made a big song and dance about it being best practice.

  • RE: Sound like matching

    I am also a fan of Metaphone.  The guy who wrote it (Lawrence Phillips) went on to work for Verity, the search engine people so that should tell you something.

    Unfortunately...

  • RE: What is your experience with outsourcing.

    I have to admit outsourcing scares me witless.

    In the States it may have been the case of someone working for US$7/hour instead of US$10/hour but outsourcing to India means competing...

  • RE: Sound like matching

    Try full text indexing

  • RE: What is the difference between PRIMARY KEY and UNIQUE CLUSTERED index?

    A primary key defaults to a clustered index, but you can choose explicitly not to cluster it.

    I'm pretty sure that a a primary key is needed for certain types of replication.

    I'm...

  • RE: How can the tempdb transaction log be full?

    How many Mb does 9 Million records represent?

    If you run the following query

    SELECT SUM(Length)

    FROM SysColumns

    WHERE ID=Object_Id('dbo.<<your table name>>')

    You will get a very crude idea of your record length.

    Multiply this by...

  • RE: How can the tempdb transaction log be full?

    How big is the phsical TEMPDB log file?

    Is it set to autogrow?

     

  • RE: Index Creation Guidelines

    Good article!

    One thing I'm not sure of is where you would use CREATE STATISTICS.

    I know indices maintain their own statistics but if you do a query using an ORDER BY,...

  • RE: OS Disk Defrag on SQL Server

    I seem to remember on of the Brians posting something to the affect that physical file defrag was of limited use if you database was on a RAID 5 array...

Viewing 15 posts - 3,151 through 3,165 (of 3,606 total)