Forum Replies Created

Viewing 15 posts - 7,621 through 7,635 (of 18,923 total)

  • RE: More efficient way

    This may help a little bit to decipher the code.

    DECLARE @Start_Date As Datetime

    DECLARE @End_Date As Datetime

    SET @Start_Date = '04/01/2010'

    SET @End_Date = '07/01/2010'

    SELECT

    '1to18' AS 'AgeGroup'

    ,...

  • RE: When Times are Tough, Do You Rise to the Occasion?

    Gary Varga (10/19/2010)


    Ninja's_RGR'us (10/18/2010)


    Matt Miller (#4) (10/18/2010)


    Ninja's_RGR'us (10/18/2010)


    How would you guys react? I still have full access to all source codes and their backups. I have no intent...

  • RE: When Times are Tough, Do You Rise to the Occasion?

    Matt Miller (#4) (10/18/2010)


    Ninja's_RGR'us (10/18/2010)


    How would you guys react? I still have full access to all source codes and their backups. I have no intent to destroy there...

  • RE: When Times are Tough, Do You Rise to the Occasion?

    And yes for all of you wondering, I'm available for work as of pretty much now.

    Resume :

    I know a little bit a SQL :w00t:.

    SQL 7, 2000, 2005, 2008

    Access, Office,...

  • RE: When Times are Tough, Do You Rise to the Occasion?

    Ninja's_RGR'us (10/18/2010)


    GSquared (10/18/2010)


    Ninja's_RGR'us (10/18/2010)


    mike.hartman (10/18/2010)


    There is a proper time and procedure for every matter, though a man's misery weighs heavily on him (Ecclesiates). Each of the options listed in...

  • RE: When Times are Tough, Do You Rise to the Occasion?

    GSquared (10/18/2010)


    Ninja's_RGR'us (10/18/2010)


    mike.hartman (10/18/2010)


    There is a proper time and procedure for every matter, though a man's misery weighs heavily on him (Ecclesiates). Each of the options listed in the...

  • RE: When Times are Tough, Do You Rise to the Occasion?

    mike.hartman (10/18/2010)


    There is a proper time and procedure for every matter, though a man's misery weighs heavily on him (Ecclesiates). Each of the options listed in the original post...

  • RE: When Times are Tough, Do You Rise to the Occasion?

    GSquared (10/18/2010)


    These scenarios don't sound like disasters to me. They sound like challenges that would be fun at best and interesting at worst.

    Games have a goal (or multiple goals),...

  • RE: Date Gap Problem

    How about using ROW_NUMBER(PARTITION BY Member_ID, ORDER BY EndDate)

    Then self join on ROWNumber = Rownumber + 1 and member_id= member_id

    where dateadd(D, 30, tbl1.enddate) <= tbl2.stardate

    I'm sure you'll figure out the...

  • RE: delete running slow

    LutzM (10/15/2010)


    WayneS (10/15/2010)


    Michael Valentine Jones (10/15/2010)


    Do tables that reference table konten have indexes on their foreign key columns?

    Specifically, Do ALL tables that reference table konten have indexes on their foreign...

  • RE: Recreating Indexes

    vky3 (10/15/2010)


    If you already have indexes and are looking to drop and recreate those indexes ,then from a performance point of view, the best way to do it is to...

  • RE: Refreshing views

    Grant Fritchey (10/15/2010)


    Views aren't compiled. If you want to know which views are dependent on a table that you've modified, you can use sys.dm_sql_referencing_entities. If, on the other hand, you're...

  • RE: The need to back up system databases?

    RichardDouglas (10/15/2010)


    For the sake of a few MB's of diskspace, is it really worth the risk not backing it up?

    I'm with you on this one... at 3 mb a piece...

  • RE: Parallelism deadlock

    Yup, here's where to start and be done in 1-2 hours TOPS :

    http://www.simple-talk.com/author/gail-shaw/

  • RE: optimising makes it 10 times worse?

    Gianluca Sartori (10/15/2010)


    Ninja's_RGR'us (10/14/2010)


    optimising makes it 10 times worse?

    Then I would suggest that someone sucks at optimizing :hehe:

    I'm glad you got this figured out.

    :hehe::hehe::hehe::hehe: This is defintely the case with...

Viewing 15 posts - 7,621 through 7,635 (of 18,923 total)