Forum Replies Created

Viewing 15 posts - 1,726 through 1,740 (of 2,010 total)

  • RE: How to extract dates from text string?

    Although this is most likely not the fastest code to get around something like this IT would work for the first date and you could build something like it in...

  • RE: Interesting: I would like to know your views about.

    SQBill, I figured as much, I just wasn't certain about how they represented 6.5 etc...

    Thanks.

  • RE: expertise in temp table

    How about some sample data for the columns we're dealign with?

    Like it seems there is a lot of group BYs happening in your queries... why?  Can you give me some...

  • RE: How to extract dates from text string?

    Well the string to date would be easy enough... something like the following should work, you could perhaps make it a function or something...

    SET NOCount ON

    DECLARE @MyVal VARCHAR(50

    December 6, 2006 at 8:26 am

    #676247

  • RE: expertise in temp table

    It looks like you are referencing the same table more than once and you have a few columns that you haven't defined which table they come from.  In your Group by...

  • RE: Interesting: I would like to know your views about.

    It's basically the same as this...

    convert(int,substring(convert(binary(4), @@microsoftversion),1,1))

    @@MicrosoftVersion give what versoin of the engine you are using.  for me its 8 because I use 2000. for 2005 it's 9.  Not...

  • RE: expertise in temp table

    If ClaimNumber does not exist in GE_Reserve, why would you have it in your select list? 

    Are you joining to another table so that you can insert claimnumber?  If it...

  • RE: How to extract dates from text string?

    Are the dates always surrounded by '--'  If so you could look for the -- followed by a 'by' and use that as a way to get your string date.  Convert...

  • RE: DTS insert and Update

    Any chance you could post some more info for us?  How about, your SQL statements to do you updates as well as table design for starters...  Take a look at...

  • RE: More Working with Dates

    From what I can gather he was just dropping the time portion off so that when he displayed it on the page he could just show the date.  Unfortunately, since...

  • RE: More Working with Dates

    That's exactly what I was looking for... I knew there was somethigng silly I was over looking.

  • RE: Truncating Transaction Logs

    Absolutely, for some reason I was thinking that Full backups truncated the log as well... Oh well.  That's what happens when your fingers get out in front of your brain......

  • RE: Truncating Transaction Logs

    As lynn stated, you can change the recovery level of your database, just know that if you are not using full recovery you lose the ability to do a point...

  • RE: Truncating Transaction Logs

    Here's my feeling on transaction logs and there are those out there who may disagree...

    I do full, differential and transaction log backups at regular intervals...

    If I go through the trouble...

  • RE: Truncating Transaction Logs

    Per BOL(backup)

    LOG

    Specifies a backup of the transaction log only. The log is backed up from the last successfully executed LOG backup to the current end of the log. Once...

Viewing 15 posts - 1,726 through 1,740 (of 2,010 total)