Forum Replies Created

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

  • RE: Fuzzy Search

    While this is very useful for returning a list to be examined manually, it's not appropriate for most automated name matching. For instance, if you were running this against first...

  • RE: XML DML Delete

    I went ahead and just used dynamic sql. I was able to do all the dynamic operations in memory only for our purposes, so performance hit shouldn't be an issue.

  • RE: XML DML Delete

    I need "person" and "type" to be variable as well. It's that combination that I'm having issues with.

  • RE: Which is higher status in your company - DBA or developer?

    The DBAs are on equal footing with the developers here. It's important for the DBAs to understand what the developers are trying to accomplish (customer service, maintainable code, etc.), as...

  • RE: ''''Set @local_ariable ='''' vs. ''''Select @local_ariable =''''

    Also, remember that 'select' always returns a count ('x rows affected') unless you use SET NOCOUNT ON.

  • RE: Meta data

    This may not be at all what you're looking for, but I have been *really* impressed with the ApexSQL Documentation product - creates a helpful out of your database! Not...

  • RE: Record Usage of a Stored Procedure

    In our case, we couldn't do the memory table (table datatype) because we the procedure could be being called by another one, and it could be inside a transaction that...

  • RE: Record Usage of a Stored Procedure

    Hi there,

    We ran across the same situation - wanting to record use of a stored procedure, including its final status. Originally, we just added a line to the stored procedure...

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