-
Replied To a Post in Disappearing drives and volumes
I would check and see if you can see the partitions. fdisk -l and if you are running adaptec cotrollers your should be able to query the controller for information: … -
Replied To a Post in Is this properly done?
Hello, The quote mark around value is the wrong type of qoute. The instructions say for every entry in the fruit table which means that you should run the query … -
Replied To a Post in grep for a string which has '/' in it
Hello, The easiest method is to enclose what you are looking for in quotes and the only charactor you have to escape is the backslash (because of the history command). … -
Replied To a Post in sh is removed from /bin
Clife, Below is a link to a sight that explains why Ubuntu changed the default shell from bash to dash. [https://wiki.ubuntu.com/DashAsBinSh](https://wiki.ubuntu.com/DashAsBinSh) -
Began Watching Tally up a table and put the results in a different table
I'm having a brain fart and for some reason it's not coming to me how to do this right now. I'm trying to tally up a table, and store the … -
Replied To a Post in Tally up a table and put the results in a different table
I usually go for the subquery version and I believe this will work: update table2 set total score = (select sum(score) from table1 where table1.id = table2.id) -
Replied To a Post in Emachine E525 Turns on immediately shuts down
A couple of possibilities come to mind: Could be over heating. If the CPU Fan gets clogged or has something covering the intake the laptop will shutdown to prevent you … -
Replied To a Post in Can't connect to internet after XP Reinstall But Getting Packets
Hello, You probably need to make sure that IPv4 is enabled under the Properties for the Network card especially if you are connecting to an older router or modem. Many … -
Replied To a Post in Memory Ram decreases
First you need to determine what memory is actually in the computer and how many chips (SIMMs - Single Inline Memory Modules) you have. Next figure out what speed or … -
Replied To a Post in Import Excel data in MySQL Table after few manipulation
Excel will save files as a .CSV (Comma Separated Values) and MySQL will import a .CSV easily. I would recommend that you first import your data files then update other … -
Replied To a Post in Memory Ram decreases
Yes it is possible because of a couple of things. If it is a Dell and is set for OS install mode in the bios. It decreases the available ram … -
Replied To a Post in hardware
Do you get any messages on the screen at all? Can you get to the BIOS setup screen? -
Replied To a Post in Use of uninitialized value in numeric eq (==) at main.pl line xx
Hellop, It is hard to tell with out all of the code but I am guessing that line 90 in your error messages is line 14 above. Do you initialize … -
Replied To a Post in calculate percentage in sql devloper
Hello, What you need to do is create a couple of sub queries and then combine them for the final answer. Here is an example from the OReilly MySQL Cookbook … -
Replied To a Post in shell script does not work
So you are calling bash from the correct location it has to be in your script. Can you give us the command line you are using and the script to … -
Replied To a Post in SQL Server 2008 R2 Sql Browser
Did you uninstall, clean the registry, and reboot then install as if new? -
Replied To a Post in SQL Server 2008 R2 Sql Browser
Hello, Your going to need to uninstall SQL Server, clean out the registry entries for SQL server and then reinstall it to correct the issue. -
Replied To a Post in Backup Server Script
Hello, OK a couple of things. Using PHP to do your backups is a bad idea because the only files that PHP can access are the files that a web …
The End.