Forum Replies Created

Viewing 15 posts - 20,326 through 20,340 (of 22,202 total)

  • RE: Slow Running Query

    Lots of null columns. Lots. Without the query it's hard to comment, but I'll bet it's doing a table scan. Have you looked at the execution plan for the query?

  • RE: Database Design for 100GB DB

    You have an index, but is it being used properly? What do the execution plans look like? What's the selectivity of the data in that index, meanin, how unique is...

  • RE: sql server certification

    akeelm_uk (5/22/2008)


    If you didn't know something didn't exist, how could you ever learn about it?

    That is one area where I feel certification can be good, it encourages you to...

  • RE: sql server certification

    I'm not actively against certifications, but I sure don't care about them. I'm much more interested in what you know and how you show it than that you passed a...

  • RE: Writing

    Also, while lots of people may have one piece of knowledge or another, maybe a full set of the knowledge has never been put in one place before. I wrote...

  • RE: Query Timeout Problems, How To Open SQL Files As Database Engine Query?

    Sorry I wasn't helpful. It's just not inherent in the tool. We have a large number of developers & dba's hitting a large number of servers. I sometimes wish we...

  • RE: Views bug?

    What he said. Sorry I didn't fully understand the problem. The key point is a view is just a mask on top of a table (or tables). It doesn't actually...

  • RE: Views bug?

    I'm not entirely sure what your problem is. The example code won't compile. I ran this:

    CREATE VIEW MyView

    AS SELECT Col1

    FROM MyTable

    ...

  • RE: Query Timeout Problems, How To Open SQL Files As Database Engine Query?

    If your query execution timeout is set to zero ("0") in Management Studio, you shouldn't be seeing a 30 second timeout. Are these queries crossing servers in some way that...

  • RE: same query same database different performance in 64bit and 32bit

    I'm not entirely sure, but three things come to mind. First, the engine & optimizer behave differently enough that in this situaion 32 is just better than 64. Second, differences...

  • RE: Difficult Table Query

    As others have already pointed out, to really answer the question you need to post some structures and some sample code.

    But, taking a stab at it, it sure sounds like...

  • RE: TOP vs ROW_NUMBER

    Now, now... we're stepping outside the bounds of the experiment.

    I'll have to see what I can do with a materialized view though. That's a good idea just to try out.

  • RE: exporting specific fields from my MS SQL database tables

    Or just use good ole' fashioned bcp.

    BCP Utility

  • RE: TOP vs ROW_NUMBER

    Yeah. I'm actually working on comparing MAX, TOP and ROW_NUMBER. I was hoping to outline which might be better when.

  • RE: TOP vs ROW_NUMBER

    Ah, partition by... crud. I was bouncing all around it and I just couldn't figure it out. That looks great. I tested it against the single row and large set...

Viewing 15 posts - 20,326 through 20,340 (of 22,202 total)