Forum Replies Created

Viewing 15 posts - 20,941 through 20,955 (of 22,202 total)

  • RE: Is sys.sql_dependencies important?

    Jack's right.

    The table you asked about is where SQL Server tries to maintain the dependency chain between objects (although it doesn't do a great job at it). It's important...

  • RE: Update Query?

    wtipton (3/3/2008)


    Howdy. I have a customer table rm00101 that has a field userdef2 that needs to be updated with the data in a response code field from a credit card...

  • RE: Sql Server Error Handling

    I was just going to post the exact same link. Cool!

  • RE: Index Usage

    Oh come on, it'll have an effect. You're inserts will be faster because you're not maintaining a useless index.

    😀

  • RE: Valid Sql table name

    As everyone else has already pointed out, if you pass in brackets, you can make a table named almost anything, including [].

    But, if we assume you either strip the brackets...

  • RE: How to do this query using sql server

    I definately recommend you NOT use a function for this type of query. It's a straight select statement. It should be done within a stored procedure or a parameterized query....

  • RE: Selectivity Ratio - using Index

    The function is probably presenting itself as (doing this from memory, so forgive me if I'm slightly off) a table scan or an external operation, but I think if you...

  • RE: Selectivity Ratio - using Index

    What does the execution plan look like?

    I suspect, but this is a guess, you're getting an index scan and then a bookmark lookup to get to the data and then...

  • RE: I got burned today at a SQL Server Interview!

    Again? Damn!

  • RE: I got burned today at a SQL Server Interview!

    Me too. I haven't a clue where to begin with SSAS. I have done some SSIS, but I'm just barely functional, not competent. SSRS is probably going to become a...

  • RE: Selectivity Ratio - using Index

    A covering index is one in which all the columns needed by the query are contained within the index.

    When you listed the row count and distinct value count, was that...

  • RE: How to do this query using sql server

    create (3/3/2008)


    Thanks Grant

    I didn't mention that I was working in vbscript so that was my mistake.

    I must be missing something though because I am still not sure how we...

  • RE: How to do this query using sql server

    Sorry, I wasn't clear. I showed how to build the SQL string in TSQL. You're correct. To build an execution string in VB, you'd use the &.

    However, as Roy mentioned...

  • RE: My developer never listens to me

    You're preaching to the choir now. I have a name plate (made by my boss as a joke/award) that says "The Scary DBA" because I've lifted scalps in the past....

  • RE: My developer never listens to me

    Oh, I just thought of another one you can do. When you suggest some change to schema or process that will improve up time or performanc and the developers baulk,...

Viewing 15 posts - 20,941 through 20,955 (of 22,202 total)