Forum Replies Created

Viewing 15 posts - 20,926 through 20,940 (of 22,184 total)

  • 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,...

  • RE: My developer never listens to me

    My developers don't listen to me either.

    From the sounds of things, I'd do three things. First, when they have an issue with something that you propose, gather all the statistics...

  • RE: CPU 100%...

    You are very likely not going to solve the problem. If the two processes are fighting for resources you have to put severe limits on one or both which is...

  • RE: Selectivity Ratio - using Index

    vishnu.swamynathan (3/3/2008)


    Dear friends,

    Anybody can tell me deeply, about normalization (All types) with simple examples?

    Vishnu S

    mail : Vishnu.swamynathan@yahoo.co.in

    Since this is a completely different topic from the one under discussion, you should...

Viewing 15 posts - 20,926 through 20,940 (of 22,184 total)