Viewing 15 posts - 11,281 through 11,295 (of 13,877 total)
Citiinvestor (6/29/2011)
lets suppose if...
June 29, 2011 at 7:30 am
glen.wass (6/29/2011)
Do you have any representative data we can...
June 29, 2011 at 4:40 am
If the source data is in SQL, a simple query will do this.
June 29, 2011 at 3:51 am
I don't think you'll get any better, in terms of the number of digits returned to the right of the decimal point, than FLOAT. I am interested to know why...
June 29, 2011 at 3:49 am
How do you know that Excel file 1 and FTP file 1 belong together? Is there some sort of file-naming convention?
June 29, 2011 at 1:41 am
You could try returning the columns from a stored proc and using that as the source for your data.
You'll need to include a dummy select as the first line of...
June 28, 2011 at 11:28 am
calvo (6/28/2011)
DDL scripts, sample data, and expected output would be helpful.
Would be useful. But a quick look at your query suggests that this
Select RandomCol from TableA where UserID = @user-id...
June 28, 2011 at 8:12 am
Then the CAST solution is probably the best for you, eg:
DECLARE @Int1 INT
SET @int1 = 454638
SELECT @Int1, LEFT(CAST(@int1 AS VARCHAR(20)),3)
June 28, 2011 at 5:23 am
You have stated your problem and received a solution - if the solution is not what you require, please describe why, so that the next solution can give you what...
June 28, 2011 at 4:41 am
Although you may have solved this problem in the short term, you may be storing up problems for yourself in the medium term. If two or three more code/description pairs...
June 28, 2011 at 2:21 am
Do you have a question?
June 27, 2011 at 11:12 pm
thava (6/27/2011)
for give me phil i think sscrazy is your name, i said that statement to jayanth
Haha, no problem. SSCrazy would frequently be a better name for me than Phil...
June 27, 2011 at 5:21 am
thava (6/27/2011)
hi SSCit is the same thing what i did but in a different way
--
It is not. Your method would allow invalid ranges to be inserted, mine would not.
But...
June 27, 2011 at 4:58 am
Jayanth_Kurup (6/27/2011)
Phil Parkin (6/27/2011)
Something like this:
declare @MaxToPoint Intselect @MaxToPoint = max(ToPoint) from PLevel
If @frmPoint <= @MaxToPoint then --> error
Hi
This would remove scope for inserting a range between 1 and...
June 27, 2011 at 4:48 am
Something like this:
declare @MaxToPoint Int
select @MaxToPoint = max(ToPoint) from PLevel
If @frmPoint <= @MaxToPoint then --> error
June 27, 2011 at 4:22 am
Viewing 15 posts - 11,281 through 11,295 (of 13,877 total)