Viewing 15 posts - 646 through 660 (of 1,086 total)
Because these problems arise more than you would think. Once something like this gets in place, it can creep in and become part of final design. Then you have to...
August 22, 2005 at 1:38 pm
Thanks! I did agree, this should be re-designed. But my code may help do that by inserting into a Physical table rather than a #TempTable. The rest is as you...
August 22, 2005 at 1:17 pm
I did find a problem. The insert line should read:
INSERT INTO #List( Word) VALUES( RTRIM( LTRIM( @Word)))
You do need to trim leading and trailing values as you correctly...
August 22, 2005 at 1:08 pm
Here is one attempt: [Note, I have inserted the values you provided - you will want to insert your own values from your table....]
[Remi is correct. You may want...
August 22, 2005 at 12:59 pm
Excellent!
FYI: you do not have to specify the length when you convert a date choosing one of the format numbers.
For instance: SELECT CONVERT( varchar, GETDATE(), 120)
SELECT CONVERT( varchar,...
August 22, 2005 at 11:47 am
This is very down and dirty, but it gets the point across. I realized special_id could be used instead of id_intl, but there are other Business Rules, (you will note...
August 22, 2005 at 11:22 am
It is a presentation issue. But here a thread that might help.
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=169&messageid=182077
August 22, 2005 at 9:54 am
Crap! I knew I should have done that... That will take me a bit of time, (and that is where I have to make sure I do not release any real...
August 22, 2005 at 9:00 am
Very funny. I will not forgot this, but I have a bit much on plate right now to get to some type of psuedo-code to give you an idea. (Heck...
August 22, 2005 at 7:41 am
We'll see. (It's not like I haven't been wrong before...)
I'll try and set something up and make a new thread asking...
August 19, 2005 at 9:17 am
Might this be text? You may need to do an explicit convert; CONVERT( datetime, 'dd/mm/yyyy hh:mm:ss am').
Either way, this is a guess, and as Remi asked, it would be...
August 19, 2005 at 9:14 am
Mine is a bit different in that I have make the calls to find the various percents based upon the sub-areas, (or even sub-areas within different countries). So while the functions will...
August 18, 2005 at 3:23 pm
I can't, unfortunately. This stuff is not for public consumption until it is release and it would be a REAL booger for me to try and make up a bunch...
August 18, 2005 at 2:31 pm
I was talking about our conversation in general on the use of Cursors, Loops and While statements....
August 18, 2005 at 2:29 pm
Suffice to say, it is not the norm to have to use a cursor or loop. But, our system does involve multiple scientific codes and multiple dollar prorations assigned to...
August 18, 2005 at 2:25 pm
Viewing 15 posts - 646 through 660 (of 1,086 total)