Viewing 15 posts - 1,726 through 1,740 (of 2,010 total)
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...
December 6, 2006 at 9:20 am
SQBill, I figured as much, I just wasn't certain about how they represented 6.5 etc...
Thanks.
December 6, 2006 at 8:58 am
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...
December 6, 2006 at 8:37 am
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
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...
December 6, 2006 at 7:48 am
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...
December 6, 2006 at 7:14 am
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...
December 6, 2006 at 6:52 am
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...
December 6, 2006 at 6:42 am
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...
November 29, 2006 at 7:23 am
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...
November 22, 2006 at 6:13 am
That's exactly what I was looking for... I knew there was somethigng silly I was over looking.
November 21, 2006 at 2:26 pm
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......
November 16, 2006 at 1:04 pm
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...
November 16, 2006 at 12:45 pm
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...
November 16, 2006 at 12:43 pm
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...
November 16, 2006 at 12:14 pm
Viewing 15 posts - 1,726 through 1,740 (of 2,010 total)