Viewing 15 posts - 58,216 through 58,230 (of 59,070 total)
You bet... and to confirm, yes, CHAR(9) is the tab character. You might be able to simplify things if you used the tabl character as a delimiter in the import...
May 22, 2006 at 5:50 pm
Yep... that too. For the record, there is no TRIM function in SQL Server 7 or 2000... just LTRIM and RTRIM. Dunno about 2005.
May 22, 2006 at 6:56 am
Nicely done. Obviously, we can't get away from a looping structure but this eliminates the cursor that so many dislike and has a couple of tricks in it that you...
May 22, 2006 at 6:42 am
Yep, you're right on the setting of the variable... but hopefully every one realizes that was just to demo. The rest shouldn't be a problem as I used fixed formats...
May 22, 2006 at 4:30 am
I like "simple" when I can get away with it
... here's my take on the date part thingy...
--===== Create a...
May 20, 2006 at 2:50 pm
By using some "JBM PFM"... this is actually a programable converter in that you can program the number of significant digits just by changing the contents of a single variable......
May 20, 2006 at 1:47 pm
You can find out if they are spaces or characters that look like spaces (assuming that all the rows for a given column have leading spaces)...
SELECT ACSII(LEFT(columnname,1))
FROM yourtable
If the come...
May 20, 2006 at 11:13 am
| For that query, we will need a calendar table with a search condition like... |
Senthil,
Joe is absolutely correct about...
May 19, 2006 at 11:51 pm
Using Noeld's example, the EXEC statement might look like this...
EXEC (@str1+@Str2)
Yeah... I know about xp_executeSQL...
May 19, 2006 at 5:57 pm
| Ok... let's hope Business Objects has a cross-tab function |
If it doesn't, post back 'cause...
May 17, 2006 at 7:06 am
I guess that means you may have more or less than the 4 parts you mentioned in your first post, eh?
Ok... let's hope Business Objects has a cross-tab function (or not,...
May 17, 2006 at 6:53 am
Thanks for the compliment but I'm no God of SQL
... even after 11 years with SQL Server, I still make some really...
May 16, 2006 at 4:28 pm
Dionisis,
I'd say your function has a bit of a bug in it...
SELECT dbo.fn_GetNumber('123-456')
It choked on that pretty hard, I'd say. The problem is that ISNUMERIC allows the "+", "-",...
May 16, 2006 at 7:01 am
>>Thank you for your input. parse name does not work because the values are not as concistent as we want to have
Ummm... post some real data and let us...
May 15, 2006 at 9:50 pm
| Finally, so data trolls still use o-sql...great to know there is still a hard-core... |
May 15, 2006 at 9:06 pm
Viewing 15 posts - 58,216 through 58,230 (of 59,070 total)