Get answers.  Share knowledge.  Collaborate with peers.




Driver required for Dlink Dub-E100 USB-Ethernet on Windows 7
ONLY Revision B hardware is compatible with Windows 7. See this page on D-Link DUB-E100 Drivers. You did not mention if this is a 32 bit or a 64 bit operating system. But to begin troubleshooting I would go to device manager and see what the driver is listed as if it is listed at [...]

View Answer   |  April 19, 2013  3:21 PM
DLink Switches, Drivers, Ethernet, Ethernet adapters, USB, Windows 7, Windows 7 in 2010
answered by:
15 pts.

SAP Goods Receipt
Hi, That depends on which information you have available and which version of SAP you work with. In this case I assume that you have the purchase order on which the goods receipt was made. Start transaction ME23N. Enter the purchase order number. On the item details section you will find a tab purchase order [...]

View Answer   |  April 19, 2013  3:47 PM
SAP administration, SAP Goods Receipt
answered by:
45 pts.

I am getting ORA-01422: Exact fetch returns more than requested number of rows
That error occurs in a SELECT … INTO statement, when your query returns more than one row. Check your where clause, and make the necessary changes in order to ensure just 1 row is returned. There is a predefined exception for that error. It is: too_many_rows. If you know your query could return more than [...]

View Answer   |  April 19, 2013  8:58 PM
INSERT statement, ORA-01422, Oracle development, Oracle error messages, PL/SQL error messages, SELECT statement
answered by:
63,535 pts.

Can I tell if an Outlook user is reading someone elses email?
Unless you have shared any of your mail folders, you cannot tell from Outlook if anyone is reading your e-mail unless you have permissions to access the e-mail server and supporting programs. It appears you are asking from a corporate setting. If there is an e-mail policy in place, it will define how e-mail is [...]

View Answer   |  April 19, 2013  4:29 PM
Exchange, Exchange 2010, Exchange 2010 Administration, Outlook 2003, Windows Server 2008 R2
answered by:
2,015 pts.

SAP transaction code: stock check
For any SAP transaction codes go here: There are many codes for such a broad question, you need to be more specific, but the answer will be on that site. For beginning you could try MB52. It will display the most usual types of stock: unrestricted (free) and restricted if you work with (block stock). [...]

View Answer   |  April 19, 2013  11:50 AM
SAP Transaction Codes
answered by:
75 pts.

How can I disable Java security warning?
I was able to find this for unsigned applets, I think it might be the right direction. Also I think the developer can program the Java applet to force a certain version for compatibility reasons, or disable the “required version” option.

View Answer   |  April 19, 2013  3:11 PM
Java applications, Vista compatibility, Windows Vista security and patches
answered by:
55 pts.

Data Center power & heat calculation formula
You can use this formula to calculate (really estimate) KWh consumption: Wattage × Hours Used Per Day ÷ 1000 = Daily Kilowatt-hour (kWh) consumption You can also use this formula to calculate (again really estimate) the heat output of electronics: Watts * 3.412 = Btu/hour <i>(Note: some references out on the web use 3.413 instead [...]

View Answer   |  April 19, 2013  4:01 PM
Data Center, Data center cooling, Data Center power management
answered by:
5,320 pts.

ORA-06502: Character string buffer too small
A function with return type VARCHAR2 will produce this error when used in a query if it returns more than 4000 bytes, because that is the max size of a database’s varchar2 type (as opposed to the pl/sql varchar2 type which can hold up to 32737 bytes). You might probably avoid that error by changing [...]

View Answer   |  April 19, 2013  6:32 PM
Oracle, SQL Scripting, SQL Server, String manipulation
answered by:
63,535 pts.

How do I change a single cell size in a spreadsheet
When you change the size of a cell, you will necessary change the width of the complete column or the height of the complete row, or both. There is no way to change the size of a cell without affecting other cells. If you want to change the width/height of a single row or column, [...]

View Answer   |  April 19, 2013  9:09 PM
Excel Formatting, Microsoft Excel
answered by:
44,130 pts.

Exchange 2010 calendar sharing
Hi Seb0221, Here are step-by-step instructions to share calendar in Exchange Server 2010: Hope it will work for you. Thanks

View Answer   |  April 19, 2013  10:54 AM
Exchange 2010, Exchange calendar, Exchange Calendar Synchronization, Exchange Management Console
answered by:
600 pts.

Missing email – Outlook 2007
It sounds like malicious behavior (Human or virus) or a rule. To rule out it being a rule do the following: Select the Deleted Items folder, and then go to View->Arrange By in the menu bar. Look under Custom. If you have no luck after investigating all those options, maybe you’ll need to restore Outlook’s [...]

View Answer   |  April 19, 2013  6:29 PM
Outlook, Outlook 2007
answered by:
9,815 pts.

Loading CSV files into Oracle tables
There are 6 ways to do it: 1. There is a software, called Oraxel (or something like that) which connect Excel tables with oracle (and vise versa) 2. You could export your Excel tables into Access and link Access – Oracle tables through ODBC 3. You could do such export with OEM (Oracle Enterprize Manager) [...]

View Answer   |  April 19, 2013  4:13 PM
Corporate Financial Applications, Database Management Systems, ERP, Financials, Human resource applications, Informix, iReceivables, Microsoft Access, Oracle, Payables, Procurement, Projects
answered by:
0 pts.

How to check the loop in Cisco switch
I think you are talking about forwarding loops seeming they can cause all sorts of wacky behavior in various Cisco switches. You will find basic troubleshooting and testing information below and you can also find more information on dealing with it at this Cisco URL: Forwarding loops vary greatly both in their origin (cause) and [...]

View Answer   |  April 19, 2013  1:51 PM
Cisco switches, Network administration, Network loop, Switches
answered by:
9,815 pts.

Fatal NI connect error 12170 – Oracle alert log
You didn’t provide enough details. It is probably a connection timeout due to network problems or delays. Take a look at this guide (look for ORA-12170): Troubleshooting Oracle Net Services.

View Answer   |  April 19, 2013  2:30 PM
Oracle alerts, Oracle Error Codes, Oracle errors, Oracle Log File
answered by:
63,535 pts.

Extract List of users from a Domain Windows Server 2003 Domain Controller
You can use Control Panel’s Administrator Tool called Active Directory Users and Computers to export your users with their email address information. To export the list, you must highlight the Users container in the right pane, and right-mouse click to select Export List… as shown below. (Note the changed column headings that are displayed matches [...]

View Answer   |  April 19, 2013  2:39 PM
Domain, Domain Controller, Windows Server 2003, Windows Server 2003 Domain Controller
answered by:
32,645 pts.

Delete all tables in SQL Server database?
Sql Server has an option of navigating to all tables using stored procedure sp_MSforeachtable For e.g the following command will drop all the tables in the database: exec sp_MSforeachtable 'DROP TABLE ?' The below command will clear all the tables: exec sp_MSforeachtable 'DELETE FROM ?' So by using the procedure sp_MSforeachtable you can navigate to [...]

View Answer   |  April 19, 2013  4:15 AM
DELETE statement, SQL Database, SQL Server, SQL Server database, SQL tables
answered by:
22,035 pts.

Why does Excel keep crashing?
I would recommend copying the worksheet tabs to a new workbook. Save it under a different name and see if the problem continues. If it does, then try to do one tab at a time and isolate which sheet is causing the problem. =========== Your MS Office application particularly MS Excel has probably encountered corrupted [...]

View Answer   |  April 19, 2013  8:47 AM
excel, excel 97, Excel error messages, Windows XP
answered by:
2,130 pts.

Viewing a Lotus Notes archive with other email program
Yes, you can. If I am not misunderstanding, you want to view Lotus mails in outlook! Here are the steps: 1. Open Outlook > Select Tools > E-mail Accounts 2. Click Add new e-mail account > Click Additional Server Types from E-mail Accounts” 3. Click Microsoft Office Outlook Connector for IBM Lotus ….from the pane [...]

View Answer   |  April 19, 2013  4:48 AM
Lotus Notes archiving, Lotus Notes backup, Lotus Notes email archiving, Outlook, Outlook archive
answered by:
22,035 pts.

Windows Server 2003 forgotten password
Hi, If you have some other account enabled for your PC then login using that account. 1-> Type “cmd” in Run dialogue box, it opens the command prompt. 2-> Type “<b>net user</b>” & you will get all the user accounts available something like following- User accounts for \My-PC ———————————————————– admin ASPNET Guest HelpAssistant SUPPORT_388945a0 The [...]

View Answer   |  April 19, 2013  7:23 PM
Administrator password, Forgotten password, Password, Windows Server 2003, Windows Server 2003 administration, Windows Server 2003 security
answered by:
8,120 pts.

How to run Oracle 10g forms on browser
Are you trying to run your form from Forms Builder? Have you started the OC4J? Is there some error message? You might find this tutorial for Oracle10g Forms / Reports useful.

View Answer   |  April 19, 2013  12:46 AM
Oracle 10g, Oracle Forms, Oracle Forms 10g
answered by:
63,535 pts.