Viewing 15 posts - 5,431 through 5,445 (of 10,144 total)
Skanda (10/8/2012)
I need to write a SQL query to print the following aphanumberic sequence in SQL 2008.
0001, 0002, ... , 0009, 000A, ... , 000Z, ... , 0010, 0011, ......
October 8, 2012 at 6:20 am
mubarak.a (10/8/2012)
I'm new in SQL Server, i want the working process of STUFF & ISNULL. How it works & how it concatenate the row level data into a single data?...
October 8, 2012 at 6:02 am
Use table constructor to generate your primary sequence, within a CTE. Then run a select from it, joined to itself 3 times (giving 4 references total in the FROM list)....
October 8, 2012 at 5:59 am
Forgive me if I'm mistaken, but all of your posts look like homework. What have you tried so far?
October 8, 2012 at 5:45 am
Is it anything to do with this connect entry?
Can you post the full query which causes the error?
October 8, 2012 at 5:40 am
Is this query generated by Crystal Reports?
You need to know what the relationships are between the tables. If you don't have an ERD (Entity Relationship Diagram), request one from your...
October 8, 2012 at 5:20 am
dwain.c (10/8/2012)
ChrisM@Work (10/8/2012)
dwain.c (10/8/2012)
Nagaram's is the fastest so far - it's a good 20% faster than mine. I'm having a look to find out why - probably the tally-table generation....
October 8, 2012 at 5:05 am
dwain.c (10/8/2012)
ChrisM@Work (10/8/2012)
dwain.c (10/8/2012)
I like your:
VALUES ($)
Wonder where you got that from... 😛
I know you like them - so I put in lots.
I like Euros better, just don't have that...
October 8, 2012 at 4:58 am
dwain.c (10/8/2012)
I like your:
VALUES ($)
Wonder where you got that from... 😛
I know you like them - so I put in lots.
October 8, 2012 at 4:21 am
RichardDouglas (10/8/2012)
18:00 - 18:30 - Registration, Intro, Round Table discussion, Nuggets etc.
18:30 - 19:30 - Increasing Business and IT...
October 8, 2012 at 3:33 am
neellotus07 (10/8/2012)
I want to show data from four tables on the basis of left outer join.All tables contain common column "a_code" on which i want to apply left outer...
October 8, 2012 at 3:30 am
zahid_7777 (10/8/2012)
I like to copy rows containing a specific company_code and from accounts_code = 1...
October 8, 2012 at 3:11 am
hoseam (10/8/2012)
HiI have this code:
SELECT
[Policy_Id] = SNAP.POLICY_ID
,[Mex_Id] = FR.INV_PTF_NAME
,[Rebate_Amount_Gross] = ISNULL(CONVERT(DECIMAL(6,2),((FR.REBATE_RATE * SNAP.TOTAL_UNITS)/100)), 0.00)
and I get this error:
Arithmetic overflow error converting numeric to data type numeric.
please help.
Examine...
October 8, 2012 at 2:58 am
lm_hamilton (10/7/2012)
WinXP through Win7, very few on Vista. 32-bit & 64-bit.
The issue is an old application bug...
October 8, 2012 at 2:52 am
dilipd006 (9/27/2012)
I written a procedure to search hotel based on particular hotel name or based on a cityID. The procedure returns 10 tables.The procedure work fine...executing in 1 milisecond...
October 8, 2012 at 2:39 am
Viewing 15 posts - 5,431 through 5,445 (of 10,144 total)