Viewing 15 posts - 19,306 through 19,320 (of 26,484 total)
Also, could still use an explaination of what the function is attempting to accomplish.
August 10, 2009 at 12:31 pm
Fixing the math should be the easy part. I didn't really look at what the calculation was doing, I just wanted to be sure I returned results close (and...
August 10, 2009 at 12:30 pm
Without the DDL (including the collation for character fields) a little hard to determine where the problem is with the code.
August 10, 2009 at 12:29 pm
What is portnumber? This column isn't defined in the table variable and isn't used in a subsequent query of the table variable.
August 10, 2009 at 12:17 pm
GSquared (8/10/2009)
John Rowan (8/10/2009)
August 10, 2009 at 12:04 pm
In addition, could you explain what this function is attempting to do?
August 10, 2009 at 12:03 pm
I have a problem with your code. The following table variable has two columns with the same name.
declare @lTable TABLE
(
ID numeric(10) identity,
ID varchar(50),
area_Code varchar(50),
country_Code...
August 10, 2009 at 11:50 am
Could you provide the DDL for the table and put the sample data into a format that can be readily consummed to load the table? Please read the first...
August 10, 2009 at 10:52 am
The only problem with the WHILE LOOP solution is scalability. Test it against a one million row table and you'll see what I'm mean.
August 10, 2009 at 10:48 am
Tim Walker (8/10/2009)
Lynn Pettis (8/10/2009)
oli (8/10/2009)
Paul White (8/10/2009)
Gail's first post expresses it best, and in milder language terms than I might have used. ...
August 10, 2009 at 10:45 am
oli (8/10/2009)
Paul White (8/10/2009)
Gail's first post expresses it best, and in milder language terms than I might have used. I would encourage everyone...
August 10, 2009 at 8:46 am
Not having Standard Edition available I'd say to do some testing. It is possible that table partitioning created in Enterprise Edition my be supported in Standard Edition, just that...
August 10, 2009 at 8:03 am
GSquared (8/10/2009)
Lynn Pettis (8/8/2009)
sjsubscribe (8/7/2009)
August 10, 2009 at 8:00 am
Okay, I'm close. I think the difference I see in my nummay be due to rounding because of the small size of the decimal fields. The following code...
August 9, 2009 at 8:42 pm
Gabriel P (8/9/2009)
create table t1
(
record_id int identity(1,1),
...
August 9, 2009 at 8:26 pm
Viewing 15 posts - 19,306 through 19,320 (of 26,484 total)