Question

SQL: invalid identifier

Asked by: aman0711

hi Experts,
 
I have a simple program which updates a table with current date when user logs in.
 
  For some reason the insert QUERY is throwing Error: LAST_LOGIN: invalid identifier, where as I do have a column called LAST_LOGIN ni my table.

package com.si.dao; 
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement; 
import com.si.dao.*; 
public class UserData {	 
	//prod
	String url = "jdbc:oracle:thin:@n123.abc.syz.com:1522:o2";
	String user = "user1";
	String password = "pass1";
	String driver = "oracle.jdbc.driver.OracleDriver"; 

	 Connection conn= null;
     PreparedStatement pstmt = null;
     Statement stmt = null;
 	 ResultSet rs = null;
	
     DbConn db = null;
	 
	
	
	public String getUserAccessType(String userId) {
		
		String accessType = null;
		
		String qry = "SELECT ACCESS_TYPE FROM SIWEB_USERS WHERE lower(ID) = lower('" + userId.toLowerCase() + "') ";
		
		String updateQry = "INSERT INTO SIWEB_USERS (ID, LAST_LOGIN) VALUES ('" + userId.toLowerCase() + "', SYSDATE)";
			
		System.out.println("qry:" + updateQry);
		
		try {
			 db = new DbConn();
			 conn = db.getConnection(url, user, password);
				
			stmt = conn.createStatement();
			rs = stmt.executeQuery(qry);
						
			if (rs.next()) {				
				accessType = rs.getString(1);				
			}
			
		
			int t = stmt.executeUpdate(updateQry); 
		} catch (SQLException sqle) {
			sqle.printStackTrace();
		} catch (Exception e) {
			e.printStackTrace();
		} finally {
			try {
				rs.close();
		    	db.closeResources(stmt, conn);
							
			} catch (Exception e) {
				e.printStackTrace();
			}
		}
		return accessType;
	}
	
	//new method to check valid user
	
   public boolean isValidUser(String userId) {
		
		boolean valid = false;
		
		String qry = "select ID from SIWEB_USERS where lower(ID) = '" + userId.toLowerCase() + "'";
		
	
		
		try {
		    stmt = conn.createStatement();
			rs = stmt.executeQuery(qry);
						
			if (rs.next()) {				
				valid = true;				
			} 
		} catch (SQLException sqle) {
			sqle.printStackTrace();
		} catch (Exception e) {
			e.printStackTrace();
		} finally {
			try {
				rs.close();
				stmt.close();
				conn.close();
			} catch (Exception e) {
				e.printStackTrace();
			}
		}
	
		return valid;
	} 
	public static void main(String[] args) {
			
		UserData bd = new UserData();		
		//String user_access_type = bd.getUserAccessType("PP1592");
		String user_access_type = bd.getUserAccessType("at7138");
		System.out.println(">>>user access type=" + user_access_type);		
	}
}
                                  
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:

Select allOpen in new window

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
2009-11-02 at 10:13:04ID24864576
Tags

Java

Topics

Java Programming Language

,

Java Server Pages (JSP)

,

New to Java Programming

Participating Experts
3
Points
500
Comments
42

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. Invalid column
    I am trying run a script, but I get invalid column name I have about 150 column names! I am trying to insert values into a table. Is there a way to find invalid columns used in the script. Thanks
  2. ORA-00904:: invalid identifier
    I use Oracle 10g express. As I try to create a table with following script, I got error. Script: create table USERS ( ID NUMBER(19) not null, CREATION_DATE TIMESTAMP(3) not null, COMMENT VARCHAR2(255), primary key (ID) ) Error: ORA-0090...
  3. ORA-00904: "PASSWORD": invalid identifier
    ORACLE when i type this into oraEdit pro select userid from emp where password = '22'; The message of ORA-00904: "PASSWORD": invalid identifier appear why??
  4. PL/SQL: ORA-00904: Invalid Identifier
    "select 11 number_of_columns,dm.matter_number||decode(dm.case_number,null,null,'/'||dm.case_number) matter_number, 1, dmt.matter_type, dms.matter_subtype, dm.matter_title, df.desc_of_filing, fn_Get_AllFilingCompanies(df.filing_seq,null) company, fn_Get_AllPreviousFilingR...
  5. ORA-00904: string: invalid identifier
    Hi, i´m converting this Firebird view to Oracle and I´m getting this error: ORA-00904: string: invalid identifier. I cant see why this is happening, since the table name is correct, the field exists on the respective table. I´m newbie to Oracle and need help. Any ideas? PS:...
  6. identify invalid emails
    i have a table in oracle 9i in which a script added invalid email ids(spcl chars and numbers). i need to identify those rows. the email id col can have any upper/lower case chars, an @ sign and a couple of . (dots). no numbers no spcl chars valid email ids fname.lname@xx.y...

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: dravidnsrPosted on 2009-11-02 at 10:26:35ID: 25722071

for update u can use update query only know y ur using insert query ??

i think some not nullable ur not insert ...

 

by: aman0711Posted on 2009-11-02 at 10:55:44ID: 25722390

Hi Sathish,

           I want to insert a new record everytime user logs in

 

by: CEHJPosted on 2009-11-02 at 10:57:04ID: 25722410

Please post output of

desc SIWEB_USERS

making sure you're using the same schema, table and login

 

by: aman0711Posted on 2009-11-02 at 11:02:39ID: 25722476

Hi Charles,

                DESC command didnt work :(

                  but heres a snapshot of table.

 

by: CEHJPosted on 2009-11-02 at 11:05:49ID: 25722502

>>DESC command didnt work :(

That's not a good sign. Did you use SQL Plus?

If the schema is o2, try

desc o2.siweb_users;

 

by: aman0711Posted on 2009-11-02 at 11:08:18ID: 25722528

No, I am on DbVisualizer.

Already tried with Schema name... still the same error

13:05:53  [DESC - 0 row(s), 0.000 secs]  [Error Code: 900, SQL State: 42000]  ORA-00900: invalid SQL statement
... 1 statement(s) executed, 0 row(s) affected, exec/fetch time: 0.000/0.000 sec  [0 successful, 0 warnings, 1 errors]


 

by: aman0711Posted on 2009-11-02 at 11:12:40ID: 25722586

whats the solution to this charles?

just a simple INSERT is creating so much of havoc :(

 

by: CEHJPosted on 2009-11-02 at 11:13:39ID: 25722599

You might try it in full

describe o2.siweb_users;

Anyway, i would use *two* Statements (PreparedStatements) not one

 

by: CEHJPosted on 2009-11-02 at 11:16:48ID: 25722625

>>just a simple INSERT is creating so much of havoc :(

If you switched the queries/inserts around, you might find it's the SELECT that gives the problem. Anyway, if you're set on using just one Statement, i'd close it and the ResultSet before doing the second one

 

by: aman0711Posted on 2009-11-02 at 11:17:56ID: 25722637

full "describe " didnt work either... :(

So instead of using 1 statement, you want me to user 2 preparedStatements? Will it make any difference?

 

by: aman0711Posted on 2009-11-02 at 11:19:34ID: 25722657

>> If you switched the queries/inserts around, you might find it's the SELECT that gives the problem.

Didnt get you on this one Charles

 

by: CEHJPosted on 2009-11-02 at 11:38:26ID: 25722866

>>Didnt get you on this one Charles

I was suggesting you switch the two queries around into reverse order - try it

 

by: aman0711Posted on 2009-11-02 at 11:42:24ID: 25722906

Some progress...

        I shifted the queries... and this time a different error:

 13:39:39  [INSERT - 0 row(s), 0.000 secs]  [Error Code: 1, SQL State: 23000]  ORA-00001: unique constraint (VSLAND.SYS_C0031967) violated
... 1 statement(s) executed, 0 row(s) affected, exec/fetch time: 0.000/0.000 sec  [0 successful, 0 warnings, 1 errors]


 

by: aman0711Posted on 2009-11-02 at 11:44:31ID: 25722928

Is it because, I tried to update the ID field which is a primary Key?

 

by: aman0711Posted on 2009-11-02 at 11:49:25ID: 25722981

Hi Charles,

            so I dropped the primary Key on ID, and it staretd working.

           The thing I didnt get, what difference it made when we switched Select and Insert statements???

 

by: CEHJPosted on 2009-11-02 at 11:53:02ID: 25723028

>>Is it because, I tried to update the ID field which is a primary Key?

Yes. You already have that key in the table

 

by: aman0711Posted on 2009-11-02 at 11:56:39ID: 25723062

But a new problem Charles,

        because I moved Select query after Insert, I am not able to get access_type. This is the method code now. I need to insert the access_type with query.

public String getUserAccessType(String userId) {
		
		String accessType = null;
		
		String updateQry = "INSERT INTO SIWEB_USERS (ID, LAST_LOGIN, ACCESS_TYPE) VALUES ('" + userId.toLowerCase() + "', SYSDATE, '" + accessType + "')";
		
		String qry = "SELECT ACCESS_TYPE FROM SIWEB_USERS WHERE lower(ID) = lower('" + userId.toLowerCase() + "') ";
		 
	//	String updateQry_2 = "update SIWEB_USERS set LAST_LOGIN_TIME_2 = LAST_LOGIN_TIME WHERE lower(ID) = lower('" + userId.toLowerCase() + "') ";
//		String updateQry = "update SIWEB_USERS set LAST_LOGIN_TIME = sysdate WHERE lower(ID) = lower('" + userId.toLowerCase() + "') ";
	
		
		System.out.println("qry:" + updateQry);
		
		try {
			 db = new DbConn();
			 conn = db.getConnection(url, user, password);
				
			stmt = conn.createStatement();
			rs = stmt.executeQuery(qry);
						
			if (rs.next()) {				
				accessType = rs.getString(1);				
			}
			
         
			
           rs1  = stmt.executeQuery(updateQry); 
		} catch (SQLException sqle) {
			sqle.printStackTrace();
		} catch (Exception e) {
			e.printStackTrace();
		} finally {
			try {
				rs.close();
		    	db.closeResources(stmt, conn);
							
			} catch (Exception e) {
				e.printStackTrace();
			}
		}
		return accessType;
	}

                                              
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:

Select allOpen in new window

 

by: CEHJPosted on 2009-11-02 at 11:59:55ID: 25723096

Yes that was really an experiment. I would use 2 statements

 

by: aman0711Posted on 2009-11-02 at 12:36:07ID: 25723440

I used 2 statements now, but still gettting a null..

 Where am I going wrong charles?

public String getUserAccessType(String userId) {
		
		String accessType = null;
		
		
		String qry = "SELECT ACCESS_TYPE FROM SIWEB_USERS WHERE lower(ID) = lower('" + userId.toLowerCase() + "') ";
		
	
		String updateQry = "INSERT INTO SIWEB_USERS (ID, LAST_LOGIN, ACCESS_TYPE) VALUES ('" + userId.toLowerCase() + "', SYSDATE, '" + accessType + "')";	
	
		try {
			 db = new DbConn();
			 conn = db.getConnection(url, user, password);
				
			stmt = conn.createStatement();
			rs = stmt.executeQuery(qry);
						
			if (rs.next()) {				
				accessType = rs.getString(1);				
			}
	  		
			
		   stmt1 = conn.createStatement();	
           rs1  = stmt1.executeQuery(updateQry); 
		} catch (SQLException sqle) {
			sqle.printStackTrace();
		} catch (Exception e) {
			e.printStackTrace();
		} finally {
			try {
				rs.close();
		    	db.closeResources(stmt, conn);
				stmt1.close();			
			} catch (Exception e) {
				e.printStackTrace();
			}
		}
		return accessType;
	}

                                              
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:

Select allOpen in new window

 

by: CEHJPosted on 2009-11-02 at 13:09:38ID: 25723764

>>I used 2 statements now, but still gettting a null..

If you mean null is returned, the ID is probably not in the table

 

by: objectsPosted on 2009-11-02 at 13:25:49ID: 25723920

you should be doing an UPDATE not an INSERT

update SIWEB_USERS set LAST_LOGIN=SYSDATE where ID=?

 

by: aman0711Posted on 2009-11-02 at 13:27:20ID: 25723930

Hi Mick,

               But update will update the same record. Right?

              Requirement is to create a new record everytime user logs in.

 

by: objectsPosted on 2009-11-02 at 13:35:27ID: 25724004

then you should be creating a separate table and inserting records in there

 

by: aman0711Posted on 2009-11-02 at 13:37:10ID: 25724025

I am sorry Mick, I didnt get you on this one.

Why a separate table? This table is made for this purpose :(

 

by: objectsPosted on 2009-11-02 at 13:39:28ID: 25724042

because you will be duplicating the user details every time they log in.
That table is designed to hold user details eg. why do you need to store CREATE_DATE everytiem they login
(And why is the column call LAST_LOGIN?)

 

by: aman0711Posted on 2009-11-02 at 13:41:11ID: 25724062

Actually, CREATE_DATE and all other stuff can be dropped, All I need is, USER_ID and LAST_LOGIN.


 

by: objectsPosted on 2009-11-02 at 13:44:03ID: 25724088

Then thats effectively the same as a separate table :)
I'd rename the LAST_LOGIN field as well.

you can get rid of your select statement, its not needed.

 

by: aman0711Posted on 2009-11-02 at 13:49:41ID: 25724138

Hmmm Ok Mick.

Will do that :-)

Thanks :)

 

by: CEHJPosted on 2009-11-02 at 13:57:43ID: 25724207

You had several database experts help you on this one before and the verdict was to use one table. Your mistake is that you have the wrong key field. The primary key should be the user id but a separate auto-incrementing table id

 

by: aman0711Posted on 2009-11-02 at 13:59:52ID: 25724229

Hi Charles,

                  The database experts suggested me to use 2 tables instead of one :(

                   And after switching (as suggested by you), it is working fine....

                   Now I put a trigger on LAST_LOGIN, so it updates the other table.

                  Did I miss something?

 

by: CEHJPosted on 2009-11-02 at 14:09:54ID: 25724322

>>The database experts suggested me to use 2 tables instead of one :(

Well i'd remembered one, but never mind ;-)

The point is that the table definition has to be wrong or you wouldn't have a dup key error

 

by: objectsPosted on 2009-11-02 at 14:48:50ID: 25724605

>                   The database experts suggested me to use 2 tables instead of one :(

absolutely its 2
one for the user details, and the other to store times they logged in. The foreign key would be the user id

>                    And after switching (as suggested by you), it is working fine....

you don't need to switch, the select is redundant and should be removed

 

by: CEHJPosted on 2009-11-02 at 14:57:50ID: 25724665

>>  but heres a snapshot of table.

Just looked more closely at the table. You're trying to use the USER table as the USER_LOGIN table. There, of course, *are* two tables. The latter table is as i defined earlier.

 

by: aman0711Posted on 2009-11-03 at 07:06:21ID: 25729612

Ohk :-)

 

by: aman0711Posted on 2009-11-03 at 07:07:03ID: 25729620

@ Mick,

>> you don't need to switch, the select is redundant and should be removed

  But Mick, I need to know users access_Type, based on this I will hide/unhide "Admin" Tab on the page

 

by: CEHJPosted on 2009-11-03 at 08:21:51ID: 25730547

Personally i would make the two queries have their own method - they're for quite different purposes

Also, your insert should work as is *as long as* it's into, say, a SIWEB_USER_LOGIN table, although it's questionable whether you should be storing access type in there

 

by: aman0711Posted on 2009-11-03 at 08:25:33ID: 25730601

Hi Charles,

            Heres what I thought. Can you please suggest me if its correct or completely absurd :)

    I am thinking of keeping one table for all the user details, like access_type, fname, lname and everything but no LOGIN_TIME.

  and another table with just two fiels, ID and LOGIN_TIME. Everytime user logs in, insert a new row.

 Then I can do Count(*) on this table for a given date range, and make use of a JOIN to get Fname and Lname from the other table.

 

by: CEHJPosted on 2009-11-03 at 11:48:14ID: 25732752

>>and another table with just two fiels, ID and LOGIN_TIME.

No -there needs to be at least three

ID
USER_ID
LOGIN_TIME

 

by: aman0711Posted on 2009-11-03 at 11:51:14ID: 25732787

Hmmm.. why do we need ID on this one Charles?

 

by: objectsPosted on 2009-11-03 at 14:40:36ID: 25734647

>   But Mick, I need to know users access_Type, based on this I will hide/unhide "Admin" Tab on the page

but you don't need it to insert the login time, they are unrelated.
You would have code elsewhere to load the user, but this method is only concerned with inserting login time

>     I am thinking of keeping one table for all the user details, like access_type, fname, lname and everything but no LOGIN_TIME.
> and another table with just two fiels, ID and LOGIN_TIME. Everytime user logs in, insert a new row.

Thats what I already suggested :)

> Hmmm.. why do we need ID on this one Charles?

Not necessary

 

by: aman0711Posted on 2009-11-03 at 14:42:07ID: 25734664

Coooooll... I made it to work :-)

Yippy...

thanks :)

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...