Viewing 15 posts - 49,201 through 49,215 (of 59,091 total)
Ummmm, so convert the result to a Bit datatype... all that is being returned are 1's and 0's... no -1's...
--Jeff Moden
Change is inevitable... Change for the better is not.
July 14, 2008 at 2:23 pm
Just curious... the SIGN method with the subtraction from the ABS seems to work just fine as a negative number detector...
DECLARE @v-2 INT
SET @v-2 = -10
SELECT...
--Jeff Moden
Change is inevitable... Change for the better is not.
July 14, 2008 at 2:17 pm
Do you still have the code for it?
--Jeff Moden
Change is inevitable... Change for the better is not.
July 14, 2008 at 1:55 pm
GilaMonster (7/14/2008)
Actually, I did suggest ISNumeric, with the warning that it's not perfect. Does your like allow for - and .?
No... but those can easily be added while excluding a...
--Jeff Moden
Change is inevitable... Change for the better is not.
July 14, 2008 at 8:00 am
You mean withing T-SQL? Sure... import the file... delete the desired rows... export the file. You could also write some VBS using the System File Object to do...
--Jeff Moden
Change is inevitable... Change for the better is not.
July 14, 2008 at 7:57 am
First, it would be a great help if you'd take a little time to post your data in a more readibly usable format so that we can actually write a...
--Jeff Moden
Change is inevitable... Change for the better is not.
July 14, 2008 at 6:51 am
... heh... and before anyone even thinks of suggesting ISNUMERIC, try this...
SELECT ISNUMERIC('$1000') UNION ALL
SELECT ISNUMERIC('1,000') UNION ALL
SELECT ISNUMERIC('3d2') UNION ALL
SELECT ISNUMERIC('2e3')
--Jeff Moden
Change is inevitable... Change for the better is not.
July 14, 2008 at 6:46 am
Obviously, that WHERE clause won't catch everything... but this will...
WHERE tblItem.strItem NOT LIKE '%[^0-9]%'
The circumflex (^) also means "NOT".
--Jeff Moden
Change is inevitable... Change for the better is not.
July 14, 2008 at 6:44 am
In other words, you will need to rewrite part of the app to use stored procedures instead of dynamic embedded SQL.
--Jeff Moden
Change is inevitable... Change for the better is not.
July 14, 2008 at 6:39 am
bodhilove (7/13/2008)
--Jeff Moden
Change is inevitable... Change for the better is not.
July 14, 2008 at 6:32 am
Instead of writing to a text file, why not write to a table where each row has a "create date"?
--Jeff Moden
Change is inevitable... Change for the better is not.
July 14, 2008 at 6:30 am
That's called a "Running Total". See the following URL for one of the better ways to do that.
http://www.sqlservercentral.com/articles/Advanced+Querying/61716/
--Jeff Moden
Change is inevitable... Change for the better is not.
July 14, 2008 at 6:27 am
I'm no DTS or SSIS "Ninja", so I can't help there. What I have done is create another spreadsheet that would open the others and export their data to...
--Jeff Moden
Change is inevitable... Change for the better is not.
July 14, 2008 at 6:18 am
Eric,
What is it that you intend to do with the VBA?
--Jeff Moden
Change is inevitable... Change for the better is not.
July 14, 2008 at 5:13 am
Heh... if you're happy with 4 hours, I'm happy. 🙂
--Jeff Moden
Change is inevitable... Change for the better is not.
July 14, 2008 at 12:00 am
Viewing 15 posts - 49,201 through 49,215 (of 59,091 total)