Forum Replies Created

Viewing 15 posts - 25,876 through 25,890 (of 26,484 total)

  • RE: output variables

    How about we form a company so we all can benefit.

  • RE: Correlated joins

     I think you need to post what you have, the DDL for the tables, some sample data, and what the results of the query should return.  with that, there are...

  • RE: First and/or Last Item different in Select

    Took a minute, but that little change makes sense.  Something I can add to my little tool box.

    Thanks Sergiy!

  • RE: Function help please

    Notice it is always the shortimers who seem to jump right in and help?

  • RE: Burnt Out

    For about 20 weeks out of the year (10 weeks in fall and 10 weeks in spring) I get out of the office and do something totally different, I am...

  • RE: Is there a better way to calculate median values, other than using cursors?

    I am assuming (bad habit) that the data in this case is numeric.  This actually sounds like a good use for using CLR integration and write some procedures/functions in VB.NET...

  • RE: Remove Files Older Than...

    Had this problem with maintenance plans at my previous employer.  We had to delete and recreate the maintenance plans to get it to work properly.  If we had to make...

  • RE: Same Query Same Database Different Servers

    Unfortunately, we also had other issues to deal with as a result of the upgrade from SQL Server 2000 to SQL Server 2005 besides this particular query running slower on...

  • RE: Question of the Day for 30 May 2007

    From what I can tell, the mirrored backups isn't supposed to protect from a failure during the backup, but from the media failing after the backup is completed.  I am...

  • RE: Statistics Explained

    Based on that, would you say it is worth learning more about statistics?  I am just curious how much time and effort I should put into some of this or...

  • RE: Same Query Same Database Different Servers

    Hard to say anymore.  Having created new indexes and statistics, I don't have the origianl plan available to compare it to.  All I can say is that based on the...

  • RE: insert

    I am more than willing to help, but I am not the only one who is start to question helping you.  I have yet to see you put anything up...

  • RE: First and/or Last Item different in Select

    Not really sure what you are asking, but if you are trying to make a comma seperated list of names try this:

    declare @NameList varchar(8000)

    select @NameList = isnull(@NameList,'') + Name +...

  • RE: insert

    Curious, Best, but when are you going to start doing your OWN work insterad of relying on the good nature of the people who use this site?

    If you would take...

  • RE: Statistics Explained

    I think I have a pretty good understanding about building and tuning queries, and the use and creating of indexes.  What I am not sure about is statistics.  In working...

Viewing 15 posts - 25,876 through 25,890 (of 26,484 total)