Problem with hostname Solaris 10

I am a complete newbie to Solaris. I purchased a Sun machine with 9 on and upgraded it to 10 without many problems apart from not geting the network to work.
On the install of 10 I was asked for domain name and hostname.
Following much differing and I would say incorrect advice on setting up network on 10 gathered from these pages I used the sys-unconfig to try to get the network to work each time with no problem.
Following advice to create 3 files dhcp.le0, hostname.le0 the last one I forget I rebooted. On reboot there were a number of problems and nothing loaded I removed the files rebooted and then did a sys-unconfig.
Eventually I got the network to work but I had lost the hostname even with placing it is hostname.hme0 and rebooting. I sys-unconfig a number of times but was not asked for the hostname as on previous occasions.
I then went for a total new fresh install but I was not asked for a hostname on trying to use sys-unconfig to install the hostname it somehow on reboot would not load the screen.
I am as typing this on another fresh install of 10 but I have not been asked to give the hostname or domain. This implies when the new install runs it will be as "unknown".
Can anyone point me in the right direction to getting a hostname now that I have cracked the network and Samba.
It appears in my very limited knowledge of Sun and Solaris that the hostname and domaon name are not part of a new software install but are read by the software from somewhere else otherwise why should it miss out on these two crutial pieces of information.
Your help would be much appreciated

Put the desired hostname in the /etc/nodename file, then edit the /etc/default/dhcpagent file and remove "12" from the PARAM_REQUEST_LIST which can be found in the bottom of the list.
The /etc/nodename controls the hostname of the machine, the dhcpagent file instructs your DHCP agent what information it should get from the DHCP server, 12 indicates that it should ask for a hostname, if no hostname is found it will use "unknown".
Personally i'm not much in favour of sys-unconfig, but ive also noticed that a lot of people here likes it..

Similar Messages

  • Problem with hostname after enabling dhcp

    i just installed a solaris10 non-networked because there was no network connection when i installed it. but recently, we were able to connect it to a network which required me to enable dhcp which i did with a sys-unconfig command.
    the problem is, the hostname i have for this machine is currently "unknown" and i don't know how to set it to another name,
    i've tried the procedure in doc.sun.com but still will not work.
    thanks

    Hello,
    I had the same problem with Solaris 9 for 3 months.
    I used the following documentation :
    #3477
    2. For Solaris 8 systems.
    Edit the file /etc/init.d/network and change the line that reads
    "dhcp") hostname=`/sbin/dhcpinfo Hostname` ;;
    to
    # "dhcp") hostname=`/sbin/dhcpinfo Hostname` ;;
    "dhcp") hostname=`shcat /etc/nodename` ;;
    Then, edit the file /etc/init.d/inetsvc and change the line that reads
    hostname=`/sbin/dhcpinfo Hostname`
    to
    # hostname=`/sbin/dhcpinfo Hostname`
    hostname=`/usr/bin/cat /etc/nodename`
    Save the files and reboot the system. The system's hostname will be the
    entry in the file /etc/nodename.
    Else try the docid : 71848
    Good luck

  • Problem with installing solaris 10

    hi.
    I'm using Intel-based processor for my stand-alone computer running Windows XP Professional with a broadband connection.
    As directed by one of the guys here, and also by my own research, I found the documentation for installing Solaris 10 on x86 based computers.
    By navigating through the documentations:
    'Solaris 10 Release and Installation Collection' >
    'Solaris 10 Installation Guide: Basic Installations' >
    '2. Installing With the Solaris Installation Program (Tasks)' >
    'x86: Performing an Installation or Upgrade With the Solaris Installation Program'
    I followed the instructions as stated in the documentations and set BIOS to boot from CD.
    It didn't worked. My computer went on to boot from my Windows OS located in my hard disk. (CD is my first boot device in BIOS)
    I have 4 CDs now for Solaris 10 installation.
    Each of the CD has a ISO file respectively.
    Please help!

    One or more of the following:
    (A) Your motherboard and/or CD-ROM drive do not actually allow booting from CD even though all of the settings seem to be set correctly. I've had this happen to me before. Try a different CD-ROM drive.
    (B) Your CDs are written from bad ISO images.
    (C) Your CD writing software does not properly create bootable CDs. If you use Windows, Nero is highly recommended.
    (D) Your CDs were written too fast. Rewrite the CDs using the slowest speed that your CD writer will allow.

  • Problem with inbuilt Solaris Apache Web Server v 2.0.58

    Hi,
    Set-up:
    We are working on a custom application which works with the inbuilt Apache Web Server on the Sun Solaris platform. Here are the details of the versions of the various components involved:
    Apache Web Server: Version 2.0.58
    Platform: SunOS 5.10 Generic_127111-03
    Our application is in the form of a shared library(.so binary) which is loaded into the Apache Web Server by mentioning the following directive in the Apache Web Server's configuration file (httpd.conf).
    LoadModule at_module "/var/apache2/logs/sample/sample.so"
    where, sample.so is our application's binary
    and at_module is the name of the module.
    httpd.conf file has been attached for your reference.
    Attachments:
    httpd.conf - Apache Web Server's configuration file.
    sample-apache.cpp - Sample program which is showing the problem.
    httpd.h - Apache Software Foundation's file which contains the structure "request_rec" that represents the current request.
    Problem summary:
    For each request to the Apache Web server, the server maintains a table of type "apr_table_t" which contains the header environment from the request. There is a structure "request_rec" maintained in the httpd.h file:
    /** A structure that represents the current request */
    struct request_rec {
    /** The pool associated with the request */
    apr_pool_t *pool;
    /** Request method (eg. GET, HEAD, POST, etc.) */
    const char *method;
    /** MIME header environment from the request */
    apr_table_t *headers_in;
    In our case, when we try to retrieve the address of "headers_in", we get a NULL Value. Please refer to the attached "sample-apache.cpp" program. In this program, inside the access_checker() method, we try to retrieve the address of "headers_in" and get that as NULL:
    extern "C" int access_checker(request_rec *r)
         FILE * fp;
         fp = fopen("/var/apache2/logs/sample.txt", "a");
         fprintf(fp, "\n r->headers_in = %u, r->method = %s", r->headers_in, r->method);
         fclose(fp);
         return OK;
    Here is the output of the sample program after accessing the main page of the Web server:
    r->headers_in = 0, r->method = GET
    r->headers_in = 0, r->method = GET
    r->headers_in = 0, r->method = GET
    Though we are able to retrieve one member of the structure request_rec (method), we are not able to retrieve the address of the other member (headers_in).
    Observation:
    We made an interesting observation that when we used the same sample program with the inbuilt Apache 2.0.52 Web Server on Solaris, we were able to successfully retrieve the address of headers_in. Here are the details of the set-up which is working fine:
    Apache Web Server: Version 2.0.52
    Platform : SunOS 5.10 Generic_118822-30
    Thus, there is something different which has happened between the Sun's Solaris Apache Web Server's versions 2.0.52 and 2.0.58 which is making it unable to retrieve the address of the request headers (headers_in).
    I am requesting someone to kindly shed light on this difference and let us know if we need to change the way of retrieving the request headers for Solaris Apache 2.0.58.
    Thanks,
    Atul.

    The only way you can achieve it is by running the web server to listen on port 80
    Please change the port in your httpd.conf file for the webserver and restart it.
    If any other processes are running/using on port 80 on that machine, then please stop them, otherwise you will not be able to achieve your requirement.
    Arun

  • Numlock Problem with Sun Solaris 10 remote login into Linux

    Hi,
    I am using a Sun Solaris 10 system in a network. The Num lock key works fine when launching application locally on the the Solaris system.
    However, when I login from the Solaris 10 machines remotely into a Linux machine, set the display to my machine(i.e solaris 10) and then launch GUI applications, the Num Lock key does not work as expected.
    Can any of you help me with this issue ?? Is this a documented problem ?
    Is there any workaround for this issue ??
    Thanks in advance
    Regards,
    Philip

    dj_phil, any luck on finding the problem and/or solution here?
    thanks -12

  • Problem with SMC(Solaris Management Console)

    Hi
    I am trying to start SMC for managing the users and groups.But i am getting the following errors.
    bash-3.00# smc
    com.sun.management.viper.CriticalStopException: javax/help/JHelp
    at com.sun.management.viperimpl.console.gui.SMCConsole.start(SMCConsole.java:276)
    at com.sun.management.viperimpl.console.BaseConsoleOptionsManager.openConsole(BaseConsoleOptionsManager.java:752)
    at com.sun.management.viperimpl.console.BaseConsoleOptionsManager.redirectToConsole(BaseConsoleOptionsManager.java:621)
    at com.sun.management.viperimpl.console.BaseConsoleOptionsManager.launchConsole(BaseConsoleOptionsManager.java:167)
    at com.sun.management.viperimpl.console.BaseConsoleOptionsManager.main(BaseConsoleOptionsManager.java:834)
    Could any one help me out.
    Thanks inadvance.

    Instead of using SMC - why not use the format command - this utility has traditionally allowed the sysadmin to perform disk related tasks. If you plan to be "playing around" with disks on a solaris system - smc is not the tool. If you had intended to use ZFS - you're stuck with the command line (really sucks if you're dependent on GUIs). Either use the free SVM command line or get a copy of Veritas Foundation Basic Suite "free" (but crippled - limited to 4 volumes and 4 filesystems) - http://www.symantec.com/enterprise/sfbasic/index.jsp. At least with Veritas - the GUI will step you thru the entire process of disk management. I can't say that for SVM, with a bit of persistence and skill - you might not be disappointed. I prefer the command line because you can specify a myriad of parameters that the GUIs can't initutively tell you.
    Storage Foundation Basic 4.1 is available on the following platforms:
    * Solaris 10 x64
    * RHEL 4 (Xeon, EM64T and AMD Opteron) and Itanium 2
    * SLES 9 (Xeon, EM64T and AMD Opteron) and Itanium 2
    Storage Foundation Basic 5.0 is available on the following platforms:
    * Solaris 8, 9, 10 (SPARC)
    * AIX 5.2/5.3
    * Red Hat Enterprise Linux 4 (RHEL 4) on EM64T/Opteron
    * Novell SUSE Enterprise Linux Server 9 (SLES) on EM64T/Opteron

  • Problem with USB - solaris 10 on VMware

    I am running solaris 10 on VMware and I do not know how to setup the USB drive. After refer to few doc from sun still unable to get what i should do.
    Can someone help?
    On VMware I have added a USB controller.
    Oh yes, from prtconf and dmesg, it don't seem to reganize the usb controller. I believe I have to make the system to recognise the USB first.
    # prtconf| grep USB
    # prtconf| grep usb
    # dmesg |grep usb
    below are the vfstab config
    # more vfstab
    #device device mount FS fsck mount mount
    #to mount to fsck point type pass at boot options
    fd - /dev/fd fd - no -
    /proc - /proc proc - no -
    /dev/dsk/c0d0s1 - - swap - no -
    /dev/dsk/c0d0s0 /dev/rdsk/c0d0s0 / ufs 1 no -
    /dev/dsk/c0d0s7 /dev/rdsk/c0d0s7 /export/home ufs 2 yes -
    /devices - /devices devfs - no -
    ctfs - /system/contract ctfs - no -
    objfs - /system/object objfs - no -
    swap - /tmp tmpfs - yes -
    #

    On pre 6.0 vmware you can't use usb because support of solaris 10 by this version is experimental and no support tools available.
    On 6.0 and later, its maybe work.
    Edited by: [email protected] on Dec 11, 2007 8:43 PM

  • Problems with installing  solaris 10  on intel 915 GEV

    Hi,
    Any one can give the solution for my bellow hinderences
    I am having intel 915 GEV ,3.0 GHz ,120 SATA ,512 DDR2,Microsoft USB optical Mouse, Sony DVD writer
    I installed sol 10 , but unable to mount my dvd/cd Drive.
    I am unable to configure graphics card using kdmconfig.
    I tried with many options. But did not succeed.
    Any solution ?

    hi here is the resolution ..........
    apply this patch
    http://vishwasbc.livejournal.com/1134.html
    not checked

  • Problem with installing Solaris Express Community Edition(Virtual Machine)

    When I start my virtual machine to install Solaris Express Community Edition(X86 edition), it just displays an character interface
    grub>
    and there is no other useful information, so I don't know what to do next, does anyone can help?

    Try seting "-jdkhome xxxxxxxxxx" in the ide.cfg file in your Forte \bin\ directory. Point it to the SDK install directory - that is, make "xxxxxxxxxx" the path to the SDK install.
    You seem to be accessing a java.exe that is pointing to a location that is other than where jvm.dll is residing. This may get you to executing the correct java.exe.

  • Solaris 10 problem with installtion

    I have problem with installtion Solaris 10 Early Access Software x86 Platform Edition.
    I downloaded all images, and burned it.
    When I try boot from first CD i see screen with primary boot subsystem
    and computer it's frozen.
    Solaris text at screen is changed to Aolaris.
    that all what it's happen.
    My computer hardware:
    Intel 2,8 Prescot ( 1 MB cache ) HT
    512 RAM
    200 GB HardDrive SATA
    Mainboard GIGABYTE 8S655TX Ultra ( chipset SIS 655TX )
    Graphic Card Nvidia Geforce 5200 128 MB
    Anybody know what is wrong ?

    I cheked and evrythink ok at other computer.
    Maybe is somthing with BIOS setting
    ( I have USB keyboard ) but i don't think that is problem
    best regards
    Marcin

  • Rebooting problems with 3COM 905C-TX

    Hi there,
    i am having a strange problem with my solaris/intel box after i
    configured the 3com 905C-TX NIC card. I installed the patch for 905C
    and i could finally see the device in the list at the time of booting.
    then on, i added the I.P address to /etc/(hostname).elxl0 file, added
    the host to /etc/inet/hosts, netmasks to /etc/inet/netmasks and ran
    drvconfig, devlinks, touch /reconfigure and brought the machine up again.
    Since then, the machine brings up the root logon screen and after i enter
    the password, i don't see any taskbar at the bottom and i can't right-click
    on the desktop..somehow, i could open the terminal and saw a core file
    generated. i am postive this is something to do with the NIC because i tried undoing all the stuff with the files mentioned before and the system
    was able to boot. Also, my /dev directory has elx, elxl and elxl0 files.I am wondering if anyone has encountered this problem
    before..Any suggestions would be greatly appreciated..can somebody tell me
    the exact steps to configure/add the TCP/IP details to the network cards..
    thanks!!!

    Yes, I can confirm the existance of this bug. I've not yet found
    a solution for this problem. You probably have to get a different
    NIC.
    Someone should file a bug report for this panic. Here's a copy of the
    messages printed on the console:
    <pre>
    # sync
    # ifconfig elxl0 172.20.44.44 up
    panic[cpu0]/thread=ef868e40: BAD TRAP: type=e (Page Fault) rp=ef868bbc addr=1 oc
    curred in module "elxl" due to a NULL pointer dereference
    sched: Page Fault
    Bad kernel fault at addr=0x1
    pid=0, pc=0xfea4aa20, sp=0x3, eflags=0x10246
    eip(fea4aa20), eflags(10246), ebp(ef868c48), uesp(3), esp(ef868bec)
    eax(2b88610), ebx(0), ecx(e0fd7000), edx(ef868e40), esi(1), edi(e0fd7ed8)
    cr0(8005003b), cr2(1), cr3(613000)
    cs(158) ds(160) ss(f000) es(160) fs(1a8) gs(1b0)
    ef868af0 unix:die+87 (e, ef868bbc, 1, 0, e0fd7ed8, 1, 160)
    ef868ba8 unix:trap+405 ()
    ef868bbc unix:_cmntrap+94 (fe890160, ef860160, e0fd7ed8)
    ef868c48 elxl:elxl_send+684 ()
    ef868cd4 gld:gld_start+1e8 (e10bce54, e0d8e960)
    ef868d44 gld:gld_unitdata+23b (e10bce54, e0d8e820, e0d8e820)
    ef868da8 gld:gld_cmds+e2 ()
    ef868df0 gld:gld_wsrv+223 ()
    ef868e08 genunix:runservice+3a (e10bce54)
    ef868e30 genunix:background+93 ()
    panic: entering debugger (continue to save dump)
    stopped at int20+0xb: ret
    </pre>

  • Problem with LUNs over Fiber

    We have recently installed a SAN but are having a few problems with the Solaris machines we are trying to connect to it.
    Hardware: LSI SAN with dual controler and 3 trays of 6x73Gb disks. Brocade fiber switch. A Sun V880 and a Sun E420 both with LSI40919O 2gb fiber cards. Both Solaris machines have resonably upto date patch clusters on them.
    I can create volumes on the SAN, create LUNs on these volumes, map them to individual hosts, and (assuming the relevant entries were in /kernel/drv/ssd.conf at boot time) I can see the LUNs when I run the 'format' command on the Solaris boxes. I can label, partition, format and mount slices from these disks.
    The problems occur when I want to delete or change a mapping. When I do this (delete a mapping between a LUN and a host for instance), on the Solaris box no matter what I do the disk changes to "drive type unknown". Running devfsadm (or drvconfg; devlinks; disks) has no effect. The disk is not manually configurable (it's not there after all). Only a reboot (boot -r) will actually remove the incorrect entries.
    Sample output from format:
    Searching for disks...done
    AVAILABLE DISK SELECTIONS:
    0. c0t0d0 <SUN18G cyl 7506 alt 2 hd 19 sec 248>
    /pci@1f,4000/scsi@3/sd@0,0
    1. c0t1d0 <SUN18G cyl 7506 alt 2 hd 19 sec 248>
    /pci@1f,4000/scsi@3/sd@1,0
    2. c4t0d0 <STK-OPENstorageD178-0530 cyl 2558 alt 2 hd 64 sec 64>
    /pci@1f,2000/IntraServer,fc@1/ssd@0,0
    3. c4t0d1 <STK-OPENstorageD178-0530 cyl 3070 alt 2 hd 64 sec 64>
    /pci@1f,2000/IntraServer,fc@1/ssd@0,1
    4. c4t0d2 <STK-OPENstorageD178-0530 cyl 2046 alt 2 hd 64 sec 64>
    /pci@1f,2000/IntraServer,fc@1/ssd@0,2
    5. c4t0d3 <STK-OPENstorageD178-0530 cyl 1534 alt 2 hd 64 sec 64>
    /pci@1f,2000/IntraServer,fc@1/ssd@0,3
    6. c4t0d4 <STK-OPENstorageD178-0530 cyl 1022 alt 2 hd 64 sec 64>
    /pci@1f,2000/IntraServer,fc@1/ssd@0,4
    7. c4t0d5 <drive type unknown>
    /pci@1f,2000/IntraServer,fc@1/ssd@0,5
    It is of course the last drive for which I removed the mapping. I can remake the mapping and the drive willonce again be available. I can add additional mappings and the new disks will be available (again assuming the relevent entry existed in /kernel/drv/ssd.conf at boot time). But any attempt to remove the mappings results in the above situation.
    Sean Timmins

    Have you tried luxadm remove <your_device> ?

  • Backup problem with LMS 3.0 on Solaris

    Hi All,
    I'm encountering problems with LMS 3.0 when I try to do a backup. After you hit OK on the window that says "Do you want to backup now?", an error would pop up saying: "Enter a new directory name or ask the system administrator of the Ciscoworks Common Services server to make the directory accessible to user casuser", thus I cannot proceed with the backup process. When I do backup, my login privilege is admin. Even tried to do backup on the same partition as my CSCOpx directory but to no avail.
    Appreciate your help on this guys. Our LMS 3.0 runs on Solaris platform. Thanks in advance.

    Hi Joe,
    Thanks for your prompt response. By the way, what is a casuser? Is he also one of the user that can be found on the Local User Setup on Common Services? The scenario here is that, I am not the one who installed the Ciscoworks LMS 3.0 on the client side, so I am not aware on how they did the installation procedure for the application. I remember assigning casuser password during installation on our other clients that has LMS 3.0.
    Will the write access on the backup directory for the casuser be done by the Solaris root administrator?
    Thanks for your help.

  • Installation problems with Solaris 8 on Intel

    Howdy,
    I am having some problem with my installation of Solaris 8 on Intel. I am installing the system on a P133 (Asus TX97 motherboard). When I first start the installation and perform the system scan I get the following error:
    The PnP ISA: IDE Controller programable device was unable to be programmed.
    This could be caused by two possible reasons:
    - Lack of resouces available
    - There is a conflict with the following already-existing device: 8086,7111 - Bus Mastering IDE Controller
    When I bring up the View/Edit device settings and I scroll to the IDE controller there is an ! mark beside the PCI IDE controller. The controler is specifying: Bus 0, device: 1, function: 1 port 1F0-1F7, 3F6, 170-177, 376, E000-E00F, 0 IRQ 14, 15
    Does anyone have any suggestions on how to resolve this conflict? I tried removing the PCI IDE interface and then installing a ISA IDE interfact (for IRQ: 14, IRQ 15 automatically put a PnP IDE controller there). This seemed to resolve the conflict but then I received a: No Bootable devices have been found.
    If anyone can help out with how to resolve the conflict, or what the No Bootable Devices have been found error it would be greatly appreciated.
    Currently there is a partition set up with NT on it, but I wish to basically get rid of everything on the HD and install Solaris on it. FYI, when I check the HD's in NT it mentions I/0: 1F0-1F7 IRQ 14 and also I/O 170-177 IRQ 15.
    Any help would greatly be appreciated.
    Regards,
    S.

    When I close down Solais in the CDE I am taken back to the logon screen
    and I turn the PC off.Don't do that. If you simply turn off the PC, the OS has no chance to
    write back cached / modified disk data back to the HDD - this is also the
    reason why solaris has to check the filesystems on the next boot and apparently
    has to repair filesystem defects.
    What you have to do is shutdown the machine, before you can power it off.
    Login as user "root" and use the command
    init 5
    or
    halt
    "init 5" will shutdown system services, by executing commands from
    /etc/rc0.d/K* with argument "stop". Then it'll sync all modified disk blocks to
    the HDD, kills all remaining processes and unmounts all filesystems. In this
    state it's safe to power off the machine!
    "halt" is a quick-and-dirty shutdown. It does not stop system services (the
    /etc/rc0.d/K* commands are not run). But, it syncs all modified disk blocks
    to the HDD, kills all processes and unmounts all filesystems. "init 5" is preferred,
    especially if you have services like a database server running on the machine,
    which needs to be cleanly shutdown. On the other hand, with a default solaris
    installation and no extra services, a simple "halt" should be OK.
    Btw. if multiple users are logged in on the machine, you should also have a look
    at the shutdown(1M) command. "shutdown" sends warnings to the logged in
    users that the machine is about to be shut down, ...

  • Problem with application directories on JDS - Solaris 10 11/06 sparc

    I am running a fully patched JDS on a Sun Blade with Solaris 10 11/06 sparc.
    After installing, removing, and re-installing Sun Download Manager 2.0 (web start version) I am having problems with JDS application menus.
    I used File Manager (probably accessed through the This Computer Desktop icon) to move around directories under applications:///. This information is saved in ~/.gnome2/vfolders. Folders available from the Launch menu under Applications were all messed up, but I solved this problem by removing all contents of ~/.gnome2/vfolders and restarting JDS.
    Now, when I enter the This Computer icon on the Desktop, and click on the Applications icon in there, there is an extra Applications icon there that is not associated with any application and cannot be removed (when I try and trash it, I get an error saying something about "not on same file system"). Also, when I enter the Internet folder under Applications, there is an extra Internet icon in there that also cannot be removed. These extra folders are not seen when accessing the Applications menu from the Launch menu. How can I clean up these "bad" launchers, or folders, or whatever they are, that appear to exist only under the Applications directory accessible through This Computer (computer:///)?
    Thank you...

    Maybe the answer is here:
    http://docs.sun.com/app/docs/doc/819-0918/6n3aglfdl?l=en&a=view&q=location+of+applications-all-users
    To Add a Menu Using Menu Files
    To add a menu for all users, perform the following steps:
    1. Create a directory entry file for the item that you want to add. Create the directory entry file in the /usr/share/gnome/vfolders directory. For more information about directory entry files, see Directory Entry Files.
    2. Locate the vfolder information file for the location where you want to add the menu. For example, to add a menu to the Applications menu, locate the file /etc/gnome-vfs-2.0/vfolders/applications-all-users.vfolder-info.
    3. In the vfolder information file, add a <Folder> element for the new menu. For more information about vfolder information files, see Vfolders and Menus.
    The next time users log in, the menu is in the assigned location.

Maybe you are looking for

  • HP Printer Control app for Windows 8

    HP Printer Control enables you to set up and access your connected HP printers. We hope that the HP Printer Control app enriches your experience with HP printers and Windows 8. Please tell us about your experience -- what you like, what you don’t lik

  • Line items not displaying

    Hi, When i simulate in F-28(customer), only one line items is displaying eg: 40 SBI a/c 1500 but not displaying the remaining items like eg: 40 discount a/c 500       50 ABC cutomer a/c 2000 what may be reason. where can i change settings Rgds sunfic

  • I am getting an Out of memory error?

    when i try to convert excel file into database if file is too larg! in shows me exception out of memory How to remove that. my memory in 500MB Edited by: mnpw on Sep 25, 2008 7:28 AM

  • How to query on tables with certain name?

    Hi, I need to programmatically query some logging tables and then generate a report. These logging tables are all named E$_*. These E$_* tables have some common columns and some non-common columns. I don't know how many tables and what their full nam

  • Another DSDT thread

    Hello fellow Archers, Although a brand new Arch user, I am really excited with Arch and hopefully I will stay on this distro till the end of days. Anyway, enough with the introductions... let get to business... I am having issues with problematic DSD