Forum Replies Created

Viewing 15 posts - 481 through 495 (of 717 total)

  • RE: SQL Server randomly hangs

    What brand of server are you using? Did you install SP3 about the time the lockups started?

    If you are running an HP server you are likely running into a conflict...

  • RE: problem with date column in ssis package

    srilu_bannu (9/27/2010)


    The SSIS package is converting the dates like ex: 12-nov-11 to 2011-11-12 which is correct according to oracle database..

    but it is converting the dates like ex:30-DEC-99 to...

  • RE: OPTION (MAXDOP #) inside a view?

    I'm not sure you can. If you have the Enterprise version of SQL Server you could use the resource governor to set the MAXDOP for the users connection, but that...

  • RE: grouping based on parameter selected

    Thanks Steve, I think that will come in very helpful for me in the future too...

  • RE: migrating from sql 2000 to sql 2008

    Drikus Roux (9/26/2010)


    If you are thorough in your test cycles, which requires a full end-to-end integration test cycle (with load) in a mission critical environment, you should catch most of...

  • RE: Design

    Robert Frasca (9/27/2010)


    Well, I suppose you could do that but that defeats the purpose of using the identity attribute.

    No, not if your purpose is just to get a sequential set...

  • RE: sql 2008 r2 32 bit management studio

    Yes, as far as I know the SQL Server 2008 R2 media contains both the 32-bit and 64-bit versions.

  • RE: Are the posted questions getting worse?

    Jeff Moden (9/26/2010)


    On that very note, I've recently been doing a whole lot of research for a little project I'm on concerning different methods to do certain things in T-SQL.

    What...

  • RE: Are the posted questions getting worse?

    Jeff Moden (9/26/2010)


    I knew the problem of asinine articles, bad blogs, cruddy code, dumb demonstrations, extreme egos, and flippant flawed followers was pretty bad before I started the research but...

  • RE: Upgrade Advisor Reports Remote Database

    I take it from the lack of responses that nobody has run this error message before... figure, just my luck.

  • RE: SQL Server's implementation of Window Functions

    Phil,

    Thanks for the editorial and bringing this back to peoples attention.

    I like how a number of the connect items have comments from Microsoft in 2007 saying that they couldn't get...

  • RE: Query Dount

    You can do almost anything, and there are usually multiple ways to solve a given problem.

    Here is some code that I think will do what you want:

    SELECT

    Dupes.amount,

    ...

  • RE: Query Dount

    It can be done, but it can get complicated depending on how many duplicates it needs to support. Would there ever be more than 5 duplicates for a set of...

  • RE: Query Dount

    Does this give you the results you were looking for? (You weren't really specific about the results you wanted to get.)

    SELECT

    Dupes.amount,

    Dupes.number,

    Dupes.duplicates,

    DupePeople.name

    FROM (SELECT...

  • RE: SSC Forum RSS Feed Permission Denied

    I'm having the same problem, I can subscribe to some SSC RSS feeds in Google Reader without a problem, but others just show up as 'Permission Denied."

    The only difference I...

Viewing 15 posts - 481 through 495 (of 717 total)