Viewing 15 posts - 9,361 through 9,375 (of 10,144 total)
Here's another way, similar. Quite quick.
[font="Courier New"]ALTER FUNCTION dbo.ToWords(@TheNumber DECIMAL (15,2), @CurrencyName VARCHAR(20), @JoinWord VARCHAR(20), @CentsName VARCHAR(20))
RETURNS VARCHAR(200)
-- USAGE: SELECT dbo.ToWords(1.01, 'dollar(s)', 'and', 'cent(s)')
-- MAX. VALUE: 999999999999.99 (twelve nines...
November 26, 2008 at 10:00 am
Try using UNION on its own rather than UNION ALL, which ensures that duplicates are retained in the output.
November 25, 2008 at 8:31 am
Patrick Ige (11/25/2008)
select COUNT(*)
from companies where
code=@code and openedy=@openedyr and openedmonth=@openedmont
would return 2 rows?
If i send the paramters 01,2007,12 i do get a single...
November 25, 2008 at 5:36 am
Patrick
What do you expect the following statement to do:
select
@company
from companies where
code=@code and openedy=@openedyr and openedmonth=@openedmont
Without testing it, I reckon it will return one column with the pre-assigned value of...
November 25, 2008 at 4:33 am
eddy (11/21/2008)
I one would say,
for each BASISREL ROW where BASISREL.ART_ID = 5 (example)
...
November 21, 2008 at 1:49 am
How many rows in DEELREL and BASISREL?
November 20, 2008 at 9:34 am
Identity columns uniquely identify individual rows in a table and exist for the benefit of the database, not the business. It doesn't matter to the database if there are gaps...
November 20, 2008 at 8:51 am
How many rows are returned by this...
[font="Courier New"]SELECT DISTINCT
b.BRL_ID, b.OFF_ID, b.MRL_ID, b.PAR_ID_FIRMA, b.PAR_ID_TYPE, b.PAR_ID_DISC, b.BRL_REGDATUM, b.BRL_BEGDATUM, b.BRL_ENDDATUM,
b.BRL_REMOVED, b.BRL_REMOVED_LISA, b.BRL_BASISNR, b.ADR_ID_KLANT, b.ARG_ID, b.ART_ID, b.ADR_ID_LAADNR, b.ADR_ID_LOSNR,
b.PAR_ID_EENHEID, b.PAR_ID_MUNT, b.PLS_ID_LADEN, b.PLS_ID_LOSSEN,...
November 20, 2008 at 8:33 am
Hi
It works like this. For two equal strings, say @mcode= '0011246';
Split c.TheValues into chunks (tokens), and test each one to see if it appears anywhere in @mcode. The tokens in...
November 20, 2008 at 7:47 am
Hello
Here's an excellent article which describes various solutions to your problem.
http://www.sqlservercentral.com/articles/T-SQL/63681/
Cheers
ChrisM
November 20, 2008 at 4:10 am
karthikeyan (11/20/2008)
Sorry ! a little late here..
Heh... "Inputs are welcome!"
🙂
Actually this query is scheduled as night job...what it will do ...it will run on every night...
November 20, 2008 at 2:40 am
yisaaacs (11/20/2008)
yip. got it to compile.but i found a better way, as my previous post.
thanks guys
[font="Courier New"]SET @user-id = (SELECT [UserID] FROM [AppUsers] WHERE [Username] = @OldUsername)
SET @OldMerchant = (SELECT Merchant FROM...
November 20, 2008 at 2:35 am
yisaaacs (11/19/2008)
Msg 137, Level 15, State 2, Line 28
Must declare the scalar variable "@NewUserName".
Msg 137, Level 15, State 2, Line 41
Must declare the scalar...
November 20, 2008 at 2:24 am
Hi Michael
SELECT TOP (@RowCount) won't run (or let you create a function/sp etc) as it stands because TOP n is part of the statement. You would have to set this...
November 20, 2008 at 2:21 am
Like this, you mean?
[font="Courier New"]SELECT TOP 1 vom100.vst_int_id
,vom107.chi_evt_dtm
,vom107.order_code_ext_id
,vom200.order_code_desc1
FROM VOM107_CHILD_ORDER vom107 (nolock)
,VOM100_ORDER_HEADER vom100 (nolock)
,VOM200_ORDER_CODE vom200 (nolock)
WHERE vom107.ord_int_id = vom100.ord_int_id
AND vom107.order_code_int_id = vom200.order_code_int_id
--sample internal id
AND vom100.vst_int_id = 936738
--3=Lab, 4=microbiology, 18=lab dept use, 19=histology/path
--40=lab pathology...
November 19, 2008 at 10:01 am
Viewing 15 posts - 9,361 through 9,375 (of 10,144 total)