1,073 Posted Topics
Re: The question comes down to who owns the directory that you are trying to write the file into. In this case you want it to write the a directory under /home/ankit called csv which probably looks like this: [root@hpsrvr ~]# ls -lad /home/ankit/csv drwxr-xr-x 2 ankit ankit 4096 Nov 22 … | |
Re: Hello, It depends on what you are trying to do. If you are trying to find out if there are duplicates and how many then this will work: select name, count(name) as NumberOfEntries from database group by name having NumberOfEntries > 1 IF you are trying to find out the … | |
Re: Hello, What you are looking for is called Internet Connection Sharing by Microsoft and requires that you have two network connections (one wired and one wireless for example). In windows 7 you got to Network and sharing center then click on Local Internet Connection (or what ever your primary network … | |
Re: Yes and you can include java in your php code. | |
Re: Normally what you do for womething like this is to setup a php file with the variables in it you need for every php script (for example vars.php). Then in each of the the php scripts on one of the lines before you attempt to use any of the variables … | |
Re: The web site is fine I would be willing to bet it is your internet connection. The site came all the way up on my system in less than 10 seconds. You do have a lot of content to load so the 10 seconds is relative. I would check the … | |
Re: Hello, You don't have to install it if you just want to try it our there are several live CD's you can download. The Live CD will boot up in your computer and run Linux without killing your current Windows system but just remember it runs slow from CD and … | |
Re: There are several ASUS laptops that have memory built in and a slot to add memory. I would go to their web site and look up the model number and see what it comes with. To help diagnose problems we really need to know a little more such as the … | |
Re: Works fine for me and I am running fedora 20 on my laptop. What happens? | |
Re: Hello, Here is a site that gives good data on what you are looking for. [http://www.aelius.com/njh/subnet_sheet.html](http://www.aelius.com/njh/subnet_sheet.html) | |
Re: I think the issue is the || try this: WHERE s.Companyname='tester' and st.state='karnataka' | |
Re: Hello, Try this. open a terminal and become the root user (using su or sudo) then execute the following two commands and it should refresh the YUM distribution cache. [CODE]yum clean all yum list [/CODE] You should get a list of all applications available via YUM and your add remove … | |
Re: Hello, Option 1 How about a little reverse logic and using a sub-query. Run a query that select all unique student id's that do have a course registration in the time frame and then select all students not in that list. select * from student where student_id not in (select … | |
Re: The question is can you get out of your computer and after that the thing to check is can you resolve any domain names. Try going to a command prompt and checking to see if you can ping your computers IP address then the gateway then try to resolve domain … ![]() | |
Re: Hello, One suggestion would be to go into the Computer BIOS setup and see if you can manually set the drive specs (heads, cyl, sectors) instead of using the AUTO settings. How old is the mother board you are trying to connect it to? If it is too old it … | |
Re: Hello, Try INSERT IGNORE in place of INSERT and it will ignore the duplicate key errors. ![]() | |
Re: Hello, No matter what you do you are going to have to interact with the system in order to observe the activity. For Linux there is a great tool called sysstat which takes snapshots of the system activity peroiditacally and then lets you compile the reports later using sar. [http://www.thegeekstuff.com/2011/03/sar-examples/](http://www.thegeekstuff.com/2011/03/sar-examples/) | |
Re: Hello, Your problem is going to be most laptops have the processor built in to the mother board and they do not normally have options for upgrading. I have seen very few that will take different chips. If you are going to get a laptop go with the known brands … | |
Re: Ok which OS linux or Windows (determines the shell you want to use) and I would use Perl it is designed for sting manipulation. | |
Re: I would suggest that you go with one of the established CDN services. Why rebuild teh network when they have one already. Edgecast and Amazon are just a couple of companies offering CDN networks. Try this Wiki article for more information: [http://en.wikipedia.org/wiki/Content_delivery_network](http://en.wikipedia.org/wiki/Content_delivery_network) | |
Re: Hello, Linux has built in scheduler called cron (or crontab) which you can find information on just about anywhere. man cron on any linux system shuld give you the basic manual and if nothing else google man cron and you will get the linix and unix manual pages. Here is … | |
Re: Hello, I am not sure if I will get this right but here is what I believe they are trying to get you to consider. If you wanted to run a chat room on the internet what would you have to have as far as a system: 1. Network: Fixed … | |
Re: Hello, As I see it you have two choices: 1. You create a new csv file by substituting all of the single quotes with backslash single quote. If it is Linux you can do this with sed and if it is Windows you can use Wordpad and find-replace (you could … | |
Re: Hello, This is about like saying "My car won't start." It tells us nothing about what happens when you try to start the computer. Does it start to post? Do you see any messages on the screen? What lights come on on the laptop? what happens if you plug it … | |
Re: Hello, I would take a look at a couple of things. First what type of field are you storing the date in? It should be a Date or Datetime field if it is just a text or varchar field then that is your issue. Second, What is the format of … | |
Re: Hello, Try the Acer web site as Packard Bell is a Dutch computer manufacturer and a subsidiary of Acer. They may have some docs. Probably an MS-Dos system able to run Windows 3.0 or 3.1 if I remember correctly. | |
Re: Hello, Try this instead: @echo off REM start of batch file echo BEFORE REM wait for them to press a key pause echo AFTER You will notice that the REM lines are not printed as they are remarks | |
Re: Normally trying to have two gateways is a bad thing. The gateway s the portal through which the system is to send all traffic that it does not have on the local subnet or a route for. Depending on your operating system I would do a route or route print … | |
Re: Hello, What you are seeing here are two partitions both on the first controller and the first disk. The device naming scheme is: /dev/cciss/c0d0 Controller 0, disk 0, whole device /dev/cciss/c0d0p1 Controller 0, disk 0, partition 1 /dev/cciss/c0d0p2 Controller 0, disk 0, partition 2 /dev/cciss/c0d0p3 Controller 0, disk 0, partition … | |
Re: Depends on the version of Apache but this should work in all of them. You can create a configuration file in /etc/httpd/conf for the site your trying to access when the URL is entered. Below is the configuration file I use to redirect http://<any domain on the server>/support/ to the … | |
Re: MySql looks in a set of predefined locations. But you can specify the option file (that's how they call the config file) by using the --defaults-file parameter. Note this parameter has to precede all other parameters at the command line. More info: [http://dev.mysql.com/doc/refman/5.1/en/option-files.html#option-file-options](http://dev.mysql.com/doc/refman/5.1/en/option-files.html#option-file-options) | |
Re: Hello, The most important issue I am aware of is the speed at which you burned the DVD. Over the past 20 years working with CD's and DVD's I have found it best to burn the disk at the slowest speed available and I normally shoot for 4x or 8x … | |
Re: I would check to see if you can ping your DNS servers. You can also view all of the Network settings with ipconfig. You said you can get to sites by ip what happens when you do a nslookup from a command prompt. It whould tell you which DNS server … | |
Re: Normaly the domain names become availaable around 2 weeks after they expire. I would try going to their site and getting the account re-establshed but they say on their terms site that they keep the names for 2 weeks. | |
Re: You have to tell the server which database to use to create the table. Add the following in front of your sql code: USE project_infracom; if that does not work try creating the database as the first line: CREATE database project_infracom; | |
Re: Before we can really answer that you are going to have to tell us which database you are trying to connect to (MySQL, MS SQL Server, Access, Oracle, etc.) and what you are trying to connect from (VB script, web page, php, c, etc.) | |
Re: You can't really get the port speed of their system without logging into the system in question. You can check to see how well they respond to internet requests and the path between you. Look into MTR (aka WINMTR) which uses trace route and ping to give a server to … | |
Re: JorgeM is correct that you need to look at the network. You need to look at the speed of the NIC Cards in your computers and the speed of the hubs, switches and routers on your network. Also look at the quality of the cable you are using (if your … | |
Re: Hello, My question would be where is it lagging? Is it when accessing the internet or when you are simply running normal applications. And you mentioned running disk cleaners have you checked out any of the registry cleaners (like CCleaner or Gleary utilities). It could be that some of the … | |
Re: Hello, You could try making the default value for the fields 0 or you could add 0 to the value of the field in your query to get a result that you add in the sum. | |
Re: What you are looking for is probably the group by clause. Group By consolidates the results for a unique value of one of the data fields. Below is an example of two tables joined and results given using group by. To display the artists by name rather than ID numbers, … | |
Re: Try CNET's download site and you will find some excellent options that are both free and paid along with reviews by editors and users. [URL="http://download.cnet.com/"]http://download.cnet.com/[/URL] | |
Re: Hello, I would be willing to bet that the ones you cannot save the settings on and gave them stay are not Win 7 Professional but either Windows 7 Home or Home Premium. they only support homegroups. | |
Re: Why would you need to use MinGW almost every linux distrubution has gcc available as part of the distro. Wine should not be needed. Besides the rpm is also available on the site so again why use a Windows compiler on a Linux system? | |
![]() | Re: Without digging into the sql you have so far and based on what you are looking to do I suggest you look into using Group By and then if still needed the HAVING option to limit the output after it has been selected. ![]() |
Re: Hello, A lot of people "claim" to be hackers and really are nothing of the sort. Your running Linux if you have a secure password, don't have your system set to auto log you in, don't give them the password or give them a login to your system then odds … | |
Re: Are you using a USB keyboard or mouse? Try unplugging them and plugging them into another port forcing the driver to load. If not then use one. Also try toggeling the numlock or caps lock to see if the keyboard changes the lights. | |
Re: The query first selects the CID (or city id from what I see) using the employee city shown on the page or in the query. Then is selects the eid (employee ID's) for all employees whos cid in the works table is equal to the CID pulled from the company … |
The End.