Question

AS400/SQL procedure - CHAR Function question - how to convert decimal to character

Asked by: Jeanniem

I am trying to create a stored procedure using SQL/400.  I need to compare a date that I have converted to a character using the character function: CHAR(YEST2,ISO) (character version of yesterdays date) to an AS400 Date defined as DEC(8,0) also converted to Character.  My reference book says that I should be able to use the CHAR function to convert my decimal date to character, but when I try to do that I get a 'MSGSQL0312' error.  I have also tried defining my AS400 date variable as NUMERIC and then trying to use the CHAR function.  I still get the same error when I try to compile the SQL procedure using the RUNSQLSTM command.  My SQL procedure is listed below.
Please help.  Thank you!!

 CREATE PROCEDURE NAME_CHG5                    
 LANGUAGE SQL                                  
 MODIFIES SQL DATA                            
 BEGIN                                        
 DECLARE YEST  CHAR(8);                        
 DECLARE HOSP DEC(3,0);                        
 DECLARE SPID  CHAR(20);                      
 DECLARE PREVLN CHAR(35);                      
 DECLARE NEWLN CHAR(35);                      
 DECLARE PREVFN CHAR(35);                      
 DECLARE PREVMN CHAR(35);                      
 DECLARE NEWFN CHAR(35);                      
 DECLARE NEWMN CHAR(35);                      
 DECLARE CHGDATE NUMERIC(8,0);                
 DECLARE CCHGDATE CHAR(8);                    
 DECLARE CHGBY CHAR(4);                        
 DECLARE YEST2 DATE;                          
 DECLARE CPNNMDT NUMERIC(10);                  
 DECLARE DYEST2 DEC(8,0);                      
 CREATE PROCEDURE NAME_CHG5                    
 LANGUAGE SQL                                  
 MODIFIES SQL DATA                            
 BEGIN                                        
 DECLARE YEST  CHAR(8);                        
 DECLARE HOSP DEC(3,0);                        
 DECLARE SPID  CHAR(20);                      
 DECLARE PREVLN CHAR(35);                      
 DECLARE NEWLN CHAR(35);                      
 DECLARE PREVFN CHAR(35);                      
 DECLARE PREVMN CHAR(35);                      
 DECLARE NEWFN CHAR(35);                      
 DECLARE NEWMN CHAR(35);                      
 DECLARE CHGDATE NUMERIC(8,0);                
 DECLARE CCHGDATE CHAR(8);                    
 DECLARE CHGBY CHAR(4);                        
 DECLARE YEST2 DATE;                          
 DECLARE CPNNMDT NUMERIC(10);                  
 DECLARE DYEST2 DEC(8,0);                      
DECLARE NOT_FOUND CONDITION FOR SQLSTATE '02000';          
DECLARE EOF_COND CHAR(1) DEFAULT '0';                      
DECLARE CSR1 CURSOR FOR                                    
    SELECT PNHSP, PNSPID, PNLSTN,                          
    PNFSTN,  PNMIDN, PELSTN,                                
         PEFSTN, PNNMDT, PNLMBY                            
    FROM BADMPNU, BADMPEU                                  
 WHERE PNHSP = PEHSP AND PNSPID = PESPID AND PNNMDT <> 0    
 AND CPNNMDT = DYEST2;                                      
 DECLARE CONTINUE HANDLER FOR NOT_FOUND SET EOF_COND = '1';
 SET CPNNMDT = CHAR(PNNMDT);                                                    
SET YEST2 = CURDATE() - 1 DAY;                                                  
SET DYEST2 = CHAR(YEST2,ISO);                                                  
DELETE FROM NAMECHG;                                                            
OPEN CSR1;                                                                      
RPT: REPEAT                                                                    
  FETCH CSR1                                                                    
  INTO  HOSP, SPID, PREVLN, PREVFN, PREVMN, NEWLN, NEWFN, NEWMN,                
   CHGDATE, CHGBY;                                                              
    INSERT INTO NAMECHG VALUES(HOSP, SPID, PREVLN, PREVFN, PREVMN, NEWLN, NEWFN,
                             NEWMN, CHGDATE, CHGBY);        
UNTIL EOF_COND = '1'                                        
END REPEAT RPT;                                              
CLOSE CSR1;                                                  
END;                                                        

This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.

Subscribe now for full access to Experts Exchange and get

Instant Access to this Solution

  • Plus...
  • 30 Day FREE access, no risk, no obligation
  • Collaborate with the world's top tech experts
  • Unlimited access to our exclusive solution database
  • Never be left without tech help again

Subscribe Now

Asked On
2007-01-26 at 16:01:53ID22138770
Tags

sql

,

as400

,

convert

,

char

Topic

Programming for iSeries / AS400

Participating Experts
3
Points
500
Comments
15

Trusted by hundreds of thousands everyday for fast, accurate and reliable tech support.

  • "The time we save is the biggest benefit of Experts Exchange to Warner Bros. What could take multiple guys 2 hours or more each to find is accessed in around 15 minutes on Experts Exchange." Mike Kapnisakis, Warner Bros.
  • "Our team likes having a resource that is more secure than just using Google and most experts using this service really know their stuff. It's nice to look here first versus using Google." Dayna Sellner, Lockheed Martin
  • "Anytime that I've been stumped with a problem, 9 out of 10 times Experts Exchange has either the accepted solution or an open discussion of the potential solution to the problem." Kenny Red, eBay Inc.

See what Experts Exchange can do for you.

Got a question?

We've got the answer.

Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.

Screenshot of Experts Exchange Knowledgebase

Need individual assistance?

Our experts are ready to help.

If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.

Screenshot of Experts Exchange Knowledgebase

Want to learn from the best?

Read articles from industry experts.

Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.

Screenshot of an Article

Working on a long term project?

Store your work and research.

Save solutions to your questions, answers you’ve discovered through searching plus helpful articles in your personal knowledgebase for easy future access.

Screenshot of Experts Exchange Knowledgebase

Access the answers to your technology questions today.

Subscribe Now

30-day free trial. Register in 60 seconds.

What Makes Experts Exchange Unique?

Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Trusted by the world's most respected brands.

image of each brand's logo

Faithfully serving IT professionals since 1996.

Experts Exchange Logo

Try it out and discover for yourself.

Subscribe Now

30-day free trial. Register in 60 seconds.

Related Solutions

  1. T-SQL [SQLState 01000]
    hi, when I execute my stored procedure. I encountered the following message from SQL. The output rpt_date is:- [SQLState 01000] Dec 31 2000 12.00AM [SQLState 01000] This is the way I called my stored procedure, but this is called from the other stored procedure which I nee...
  2. SQLSTATE: 22003
    when i am trying to crate nick name (using federated system creating nickname from as400 (os/400) to iDB2/NT 8.2.1f advise its urgent SQLSTATE: 22003 Explanation: The numeric value received from the AS was out of the supported range. System Action: The host variable was no...
  3. String to char OR ascii decimal to char
    Okay, I need to put small letters(a-z) in char [] table. So I convert the letter to ascii decimal and then compare if the decimal is between a=97 - z=122. Then I need to convert the ascii decimal back to char that I can put it to char [] table. So simple: char a --> ascii...
  4. AS400 Printing to Laser Printer
    I am trying to print to laser print a AS400 report that is 198 characters long on a 8.5x14 paper. The problem is that its only printing landscape at 8.5x11. The printer is HP LaserJet 2200DN. I have the following in the ovrprt command: 0004.00 /* OVERRIDE PRINTFILE ...
  5. SQLSTATE=42703
    any way i can around this query select ICRTDT , substr (cast (int( ICRTDT)+20000000 as char (8)), 1, 4) || '-' || substr (cast (int( ICRTDT)+20000000 as char (8)), 5, 2) || '-' || substr (cast (int( ICRTDT)+20000000 as char (8)), 7, 2) as NEWICRTDT from v_a...
  6. using perl to decrypt AS400 packed Decimal File.
    I am pulling a Physical file from an AS400 via FTP. I am using Perl 5.8.8 to decipher the file. Here is the layout of the fields in the file. Field Name Typ Pos Dec Beg End Description SEPRID P 5 0 1 3 Partner Id SEFDID ...

Free Tech Articles

  1. WARNING: 5 Reasons why you should NEVER fix a computer for free.
    It is in our nature to love the puzzle. We are obsessed. The lot of us. We love puzzles. We love the challenge. We thrive on finding the answer. We hate disarray. It bothers us deep in our soul. W...
  2. SCCM OSD Basic troubleshooting
    SCCM 2007 OSD is a fantastic way to deploy operating systems, however, like most things SCCM issues can sometimes be difficult to resolve due to the sheer volume of logs to sift through and the dispe...
  3. Migrate Small Business Server 2003 to Exchange 2010 and Windows 2008 R2
    This guide is intended to provide step by step instructions on how to migrate from Small Business Server 2003 to Windows 2008 R2 with Exchange 2010. For this migration to work you will need the fo...
  4. Create a Win7 Gadget
    This article shows you how to create a simple "Gadget" -- a sort of mini-application supported by Windows 7 and Vista. Gadgets can be dropped anywhere on the desktop to provide instant information, ...
  5. Outlook continually prompting for username and password
    There have been a lot of questions recently regarding Outlook prompting for a username and password whilst using Exchange 2007. There are a few reasons why this would happen and I will try to cover t...
  6. Backup Exchange 2010 Information Store using Windows Backup
    There seems to be quite a lot of confusion around the ability to backup Exchange 2010 using the built in Windows Backup feature. This stems from the omission of this feature prior to Exchange 2007 s...

Cloud Class Webinars

  1. Avoiding Bugs in Microsoft Access
    Alison Balter takes and in-depth look at avoiding bugs in Access. In this webinar you will learn about using the immediate window to debug your applications, invoking the debugger, using breakpoints to troubleshoot, stepping through code, setting the next statement to execute, ...
  2. Top 10 Best New Features in Visio 2010
    Scott Helmers gives live demonstrations of the top 10 new features in Visio 2010. This webinar will teach you how to create compelling diagrams by adding shapes to the page with a single click, linking the shapes in a diagram to data in Excel (or SQL Server, or SharePoint), ...
  3. IT Consultant Business Secrets Revealed
    Michael Munger, Experts Exchange tech pro and IT consultant, pulls back the curtain on his very successful businesses and answers question on every IT consultant and business owner should know about. He shares secrets on what he did to solve the 5 most common problems in IT, ...
  4. Disaster Recovery and Business Continuity
    Quest CTO, Mike Billon, gives an overview of the steps involved in building a dunamic disaster recovery plan. Through case studies and an examination of software/hardware tooles for monitoring and testing, you'll gain a better understandin of where you are, where you want ...
  5. Organize Your Visio Diagrams with Containers and Lists
    Scott Helmers uses cross functional flowcharts, wireframe diagrams, data graphic legends and seating charts to teach you: how to ustilize all three new structured diagram components in Visio 2010, the best practices for organizeing shapes in previous version of Visio, how to organize ...
  6. How to Us Objects, Properties, Events and Methods in Microsoft Access
    Alison Dalter gives an in-depbth look at objects, properties, events and methods in Microsoft Access. In this webinar you will learn about using the object browser, referring to objects, working with properties and methods, working with object variables, understanding the ...

Join the Community

Give a Little. Get a Lot.

Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.

Join the Community

Answers

 

by: tliottaPosted on 2007-01-26 at 18:35:12ID: 18408751

Jeanniem:

Please show where PNNMDT is declared.

I mean, I see that you have a cursor defined over a SELECT, but you appear to be FETCHing into declared SQL variable CHGDATE. However, you are using CHAR(PNNMDT). And you're using it before even FETCHing, before even opening the cursor.

Hmmm?

Tom

 

by: JeanniemPosted on 2007-01-29 at 07:17:56ID: 18419875

Ok - I think I get what your saying and so I changed my procedure to read (see lines with * after):
CREATE PROCEDURE NAME_CHG5                    
 LANGUAGE SQL                                  
 MODIFIES SQL DATA                            
 BEGIN                                        
 DECLARE YEST  CHAR(8);                        
 DECLARE HOSP DEC(3,0);                        
 DECLARE SPID  CHAR(20);                      
 DECLARE PREVLN CHAR(35);                      
 DECLARE NEWLN CHAR(35);                      
 DECLARE PREVFN CHAR(35);                      
 DECLARE PREVMN CHAR(35);                      
 DECLARE NEWFN CHAR(35);                      
 DECLARE NEWMN CHAR(35);                      
 DECLARE CHGDATE NUMERIC(8,0);                
 DECLARE CCHGDATE CHAR(8);                    
 DECLARE CHGBY CHAR(4);                        
 DECLARE YEST2 DATE;                          
 DECLARE CPNNMDT NUMERIC(10);                  
 DECLARE DYEST2 DEC(8,0);                      
 CREATE PROCEDURE NAME_CHG5                    
 LANGUAGE SQL                                  
 MODIFIES SQL DATA                            
 BEGIN                                        
 DECLARE YEST  CHAR(8);                        
 DECLARE HOSP DEC(3,0);                        
 DECLARE SPID  CHAR(20);                      
 DECLARE PREVLN CHAR(35);                      
 DECLARE NEWLN CHAR(35);                      
 DECLARE PREVFN CHAR(35);                      
 DECLARE PREVMN CHAR(35);                      
 DECLARE NEWFN CHAR(35);                      
 DECLARE NEWMN CHAR(35);                      
 DECLARE CHGDATE NUMERIC(8,0);                
 DECLARE CCHGDATE CHAR(8);                    
 DECLARE CHGBY CHAR(4);                        
 DECLARE YEST2 DATE;                          
 DECLARE CPNNMDT NUMERIC(10);                  
 DECLARE DYEST2 DEC(8,0);                      
DECLARE NOT_FOUND CONDITION FOR SQLSTATE '02000';          
DECLARE EOF_COND CHAR(1) DEFAULT '0';                      
DECLARE CSR1 CURSOR FOR                                    
    SELECT PNHSP, PNSPID, PNLSTN,                          
    PNFSTN,  PNMIDN, PELSTN,                                
         PEFSTN, PNNMDT, PNLMBY                            
    FROM BADMPNU, BADMPEU                                  
 WHERE PNHSP = PEHSP AND PNSPID = PESPID AND PNNMDT <> 0; *  
CPNNMDT = DYEST2;                                      
 DECLARE CONTINUE HANDLER FOR NOT_FOUND SET EOF_COND = '1';
 SET CPNNMDT = CHAR(BADMPNU.PNNMDT);   *                                                
SET YEST2 = CURDATE() - 1 DAY;                                                  
SET DYEST2 = CHAR(YEST2,ISO);                                                  
DELETE FROM NAMECHG;                                                            
OPEN CSR1;                                                                      
RPT: REPEAT                                                                    
  FETCH CSR1                                                                    
  INTO  HOSP, SPID, PREVLN, PREVFN, PREVMN, NEWLN, NEWFN, NEWMN,                
   CHGDATE, CHGBY;
  IF CPNNMDT = DYEST2 THEN *                                                            
    INSERT INTO NAMECHG VALUES(HOSP, SPID, PREVLN, PREVFN, PREVMN, NEWLN, NEWFN,
                             NEWMN, CHGDATE, CHGBY)*
      ENDIF;*  
UNTIL EOF_COND = '1'                                        
END REPEAT RPT;                                              
CLOSE CSR1;                                                  
END;  

I'm still getting the following errors:

 MSG ID  SEV  RECORD  TEXT                                                            
 SQL0312  30      30  Position 2 Variable PNNMDT not defined or not usable.          
 SQL0104  30      42  Position 3 Token ENDIF was not valid. Valid tokens: ;.          
                     Message Summary                                                  
   Total     Info   Warning      Error   Severe  Terminal                            
       2        0         0          0        2         0                            
 30 level severity errors found in source                                            
                                 * * * * *  E N D  O F  L I S T I N G  * * * * *      

Any suggestions?                                                

 

by: daveslaterPosted on 2007-01-29 at 08:13:12ID: 18420349

Hi
you can use the CAST to convert a wide range of formats to other formats.

cast( mychar as decimal (8,0))

Dave

 

by: JeanniemPosted on 2007-01-29 at 08:34:18ID: 18420557

I know - I had tried that before and still got an error.  I tried it again:
   31 SET CPNNMDT = CAST(BADMPNU.PNNMDT AS CHAR);                                                  
 32 SET YEST2 = CURDATE() - 1 DAY;                                                              
 33 SET DYEST2 = CHAR(YEST2,ISO);                                                                
 34 DELETE FROM NAMECHG;                                                                        
 35 OPEN CSR1;                                                                                  
 36 RPT: REPEAT                                                                                  
 37   FETCH CSR1                                                                                
 38   INTO  HOSP, SPID, PREVLN, PREVFN, PREVMN, NEWLN, NEWFN, NEWMN,                            
 39    CHGDATE, CHGBY;                                                                          
 40   IF CPNNMDT = DYEST2 THEN                                                                  
 41     INSERT INTO NAMECHG VALUES(HOSP, SPID, PREVLN, PREVFN, PREVMN, NEWLN, NEWFN,            
 42                              NEWMN, CHGDATE, CHGBY);                                        
 43 UNTIL EOF_COND = '1'                                                                        
 44 END REPEAT RPT;                                                                              
 45 CLOSE CSR1;                                                                                  
 46 END;                                                                                        
But still got the following:

 SQL0312  30      31  Position 1 Variable PNNMDT not defined or not usable.                  
 SQL0199  30      43  Position 1 Keyword UNTIL not expected. Valid tokens: (                
                      IF GET SET CALL CASE DROP GOTO LOCK OPEN WITH ALTER                    
                      CLOSE.                                                                
                     Message Summary                                                        
   Total     Info   Warning      Error   Severe  Terminal                                    
       2        0         0          0        2         0                                    
 30 level severity errors found in source                                                    
                                 * * * * *  E N D  O F  L I S T I N G  * * * * *            

 

by: daveslaterPosted on 2007-01-29 at 08:48:33ID: 18420701

Hi
if you are using this with-in rpg or a sumular language  then the SQL compiler does not support qualified data structures.

ie BADMPNU.PNNMDT

declare lclPNNMDT as

then lclPNNMDT  = BADMPNU.PNNMDT ;

then
 SET CPNNMDT = CAST(lclPNNMDT AS CHAR);                                                  
 32 SET YEST2 = CURDATE() - 1 DAY;      

Dave

 

by: JeanniemPosted on 2007-01-29 at 09:07:55ID: 18420900

I am not using RPG or any other high level language - just SQL to create a stored procedure - the above is almost exactly the same as what is explained in the book:  SQL BUILT-IN FUNCTIONS AND STORED PROCEDURES - The i5/iSeries Programmer's Guide by Mike Faust.  I have tried using the qualifed data structure and I've tried it without the qualifier.  I appreciate your time.  Do you think I still need to declare even if I'm not using RPG?

 

by: JeanniemPosted on 2007-01-29 at 09:31:17ID: 18421104

It appears that I may have gotten past the SQL0312 error - decided to try to convert the date variable instead of the decimal value that is in the file.  However, I still have a loop problem.  Can you help me with this if statement?
0033.00 SET YEST2 = CURDATE() - 1 DAY;                                                  
0034.00 SET DYEST2 = CHAR(YEST2,ISO);                                                    
0035.00 SET YEST3 = CAST(DYEST2 AS DEC);                                                
0036.00 DELETE FROM NAMECHG;                                                            
0037.00 OPEN CSR1;                                                                      
0038.00 RPT: REPEAT                                                                      
0039.00   FETCH CSR1                                                                    
0040.00   INTO  HOSP, SPID, PREVLN, PREVFN, PREVMN, NEWLN, NEWFN, NEWMN,                
0041.00    CHGDATE, CHGBY;                                                              
0042.00   IF YEST3 = CHGDATE THEN                                                        
0043.00     INSERT INTO NAMECHG VALUES(HOSP, SPID, PREVLN, PREVFN, PREVMN, NEWLN, NEWFN,
0044.00                              NEWMN, CHGDATE, CHGBY);                            
0045.00 --  ELSE GOTO RPT;                                                              
0046.00 UNTIL EOF_COND = '1'                                                            
0047.00 END REPEAT RPT;                                                                  
0048.00 CLOSE CSR1;                                                                      
0049.00 END;                                                                            

 MSG ID  SEV  RECORD  TEXT                                                                  
 SQL0199  30      46  Position 1 Keyword UNTIL not expected. Valid tokens: (                
                      IF GET SET CALL CASE DROP GOTO LOCK OPEN WITH ALTER                    
                      CLOSE.                                                                
                     Message Summary                                                        
   Total     Info   Warning      Error   Severe  Terminal                                    
       1        0         0          0        1         0                                    
 30 level severity errors found in source                                                    
                                 * * * * *  E N D  O F  L I S T I N G  * * * * *            

 

by: daveslashPosted on 2007-01-29 at 09:45:52ID: 18421216


Hmmm, that's interesting. I've never used the REPEAT .. UNTIL construct. I've always used WHILE .. END WHILE.

e.g.
WHILE (loopCounter <= stringLength) DO                  
   ... stuf, stuff, stuff, and more stuff
END WHILE;

Gimme a minute, and I'll try out REPEAT .. UNTIL.

-- DaveSlash

 

by: daveslaterPosted on 2007-01-29 at 09:54:11ID: 18421303

Yes you need to declare the variables in sql.

 

by: daveslashPosted on 2007-01-29 at 09:57:48ID: 18421339

It looks like you need the END REPEAT.

This works for me:

    repeat                                                    
        fetch x into empName;                                  
        until AtEnd = 1                                        
    end repeat;                                              

HTH,
DaveSlash

 

by: daveslashPosted on 2007-01-29 at 10:04:09ID: 18421397


Oops, I'm sorry. I didn't read your code completely.

I think you need to add the "End If".

e.g.

RPT: REPEAT                                                                      
...
  IF YEST3 = CHGDATE THEN                                                        
  INSERT INTO NAMECHG VALUES(HOSP, SPID, PREVLN, PREVFN, PREVMN, NEWLN, NEWFN,
                            NEWMN, CHGDATE, CHGBY);                            
  End If;
UNTIL EOF_COND = '1'                                                            
END REPEAT RPT;

-- DaveSlash

 

by: JeanniemPosted on 2007-01-29 at 10:15:12ID: 18421487

I agree - but when I put ENDIF; I get the first error message below (SQL0104), and if I use the : as the error message would seem to indicate I get the second error message below(SQL0199).

0042.00   IF YEST3 = CHGDATE THEN                                                        
0043.00     INSERT INTO NAMECHG VALUES(HOSP, SPID, PREVLN, PREVFN, PREVMN, NEWLN, NEWFN,
0044.00                              NEWMN, CHGDATE, CHGBY);                            
0045.00   ENDIF;                                                                        
0046.00 UNTIL EOF_COND = '1'                                                            
0047.00 END REPEAT RPT;                                                                  
0048.00 CLOSE CSR1;                                                                      
0049.00 END;                                                                            
 MSG ID  SEV  RECORD  TEXT                                                                          
 SQL0104  30      45  Position 8 Token ; was not valid. Valid tokens: :.                            
                     Message Summary                                                                
   Total     Info   Warning      Error   Severe  Terminal                                            
       1        0         0          0        1         0                                            
 30 level severity errors found in source                                                            
                                 * * * * *  E N D  O F  L I S T I N G  * * * * *                    
                                                                                                      MSG ID  SEV  RECORD  TEXT                                                            
 SQL0199  30      46  Position 1 Keyword UNTIL not expected. Valid tokens: (          
                      IF GET SET CALL CASE DROP GOTO LOCK OPEN WITH ALTER            
                      CLOSE.                                                          
                     Message Summary                                                  
   Total     Info   Warning      Error   Severe  Terminal                            
       1        0         0          0        1         0                            
 30 level severity errors found in source                                            
                                 * * * * *  E N D  O F  L I S T I N G  * * * * *      
                                                                                     

 

by: daveslashPosted on 2007-01-29 at 10:16:52ID: 18421503


"End If" is two words.

 

by: JeanniemPosted on 2007-01-29 at 10:24:00ID: 18421571

That compiled - still getting runtime error for CAST statement, but that's a different issue I think.  How does this point system work?  This is the first time I've posted a question.

 

by: daveslashPosted on 2007-01-29 at 10:33:28ID: 18421648


When you're signed in and looking at your own question, there should be an "Accept Answer" button next to each comment.

if you're splitting points, I believe there's a "Split Points" link down near the bottom of the question.

20120131-EE-VQP-002

3 Ways to Join

30-Day Free Trial

The Experts

98% positive feedback on 31,087 answers since March 2000. angeliii is a Microsoft Most Valuable Professional for his work with MS SQL Server & Develoment.

He has also proven his knowledge of Visual Basic Programming, PHP Scripting and Oracle Databases.

The Experts

97% positive feedback on 10,752 answers since July 2000. lrmoore has more than 18 years experience in the networking industry.

The six-time Mircosoft MVPs specialties include firewalls, virtual private networking, and network management.

Testimonials

"...and excellent source for support... Kind of like having your very own IT dept." Electriciansnet

Testimonials

"I was apprehensive at signing up at first. However... it has already made my life as an IT administrator much easier." JaCrews

Testimonials

"WOW! You guys have great, active, and knowledgeable people on here." moore50

Business Clients

Business Clients

In the Press

"If you’ve got a question... Experts Exchange can supply an answer.”

In the Press

"...an invaluable aid for both IT professionals and those who require tech support."

In the Press

"where IT professionals provide quick answers on just about any topic"

Business Account Plans

Loading Advertisement...