Search Results

Search: Posts Made By: ilan
Forum: Web Development 07-07-2011
3,213
Posted By ilan
yes the tables have HId and Id in common.
yes the tables have HId and Id in common.
Forum: Web Development 07-07-2011
3,213
Posted By ilan
mysql query for multiple columns from multiple tables in a DB
Say I have two tables like below..

status
HId sName dName StartTime EndTime
1 E E 9:10 10:10
2 E F 9:15 10:15
3 G H 9:17 ...
Forum: Web Development 05-16-2011
1,589
Posted By ilan
Hi Pludi, Thanks for your prompt reply. I...
Hi Pludi,

Thanks for your prompt reply. I did a test today on another server.. On CentOS 5.3 64 bit OS, after yum update.. all the major versions of all the above mentioned packages are maintained...
Forum: Web Development 05-12-2011
1,589
Posted By ilan
LAMP - version updates and the impact!
Hello All,

I have a LAMP server (CentOS 5.5) which has a lot of php scripts and the php pages runs fine. My question is if I have to allow the OS udpates regularly on the server, will there be any...
3,451
Posted By ilan
[ilan@posts ~]#...
[ilan@posts ~]# color="blue/green/gold/black/red/purple/gray"
[ilan@posts ~]# echo $color | awk '{gsub(/\//," ");print}'
blue green gold black red purple gray

OR you can simply use tr to do...
Forum: Solaris 04-27-2011
1,219
Posted By ilan
Ravi, please post the commands and errors that...
Ravi, please post the commands and errors that you are using?
6,683
Posted By ilan
::==countAppend.bat ::@echo off for %%a in...
::==countAppend.bat
::@echo off
for %%a in (*.txt) do call :output "%%a"
del count_tmpfile
goto :EOF

:output
set linesmin=3
findstr /R /N "^" %1 | find /C ":" > count_tmpfile
set /p count=...
Forum: HP-UX 08-09-2010
6,269
Posted By ilan
HP-UX: LVM migration from legacy to agile addressing onto a failover server
Hi there!

I'm having problems migrating and vgimport onto a different server. Original server uses the legacy DSF naming (ctd naming like /dev/dsk/c0t1d0) and the new server where i'm migrating...
11,916
Posted By ilan
How to log current timestamp inside a for loop in windows shell?
below is the output where i'm getting the same times tamp throughout the loop., where i'm expecting that to log the current time stamp..

C:\Users\ilango>for /l %i in (1,1,5) do echo [%DATE%...
1,794
Posted By ilan
To satisfy this condition you could do this.. ...
To satisfy this condition you could do this..

grep -v -f file1 file2 > newfile
7,107
Posted By ilan
lorus, why are we trying to write a split...
lorus,

why are we trying to write a split script..!? let split command do the job...

split -db 1m InFile OutFile

o/p: it creates files like
OutFile00
OutFile01
...
11,198
Posted By ilan
shiju, you can use as John suggested but, you...
shiju, you can use as John suggested but, you should probably use like this...

'^[0-9]{5}-'

otherwise it would list 5 or more digits before '-' symbol. you might end up extracting data like...
1,975
Posted By ilan
Gopal, grep -n '^)$' file1 | cut -d: -f1 ...
Gopal,

grep -n '^)$' file1 | cut -d: -f1

the above will give you list of line numbers where only ')' appears in the file1

/ilan
42,635
Posted By ilan
Hi Sean, ulimit -n unlimited should do.. ...
Hi Sean,

ulimit -n unlimited should do..

/ilan
Forum: Solaris 05-18-2009
18,031
Posted By ilan
Hello incredible, thanks for taking time.. ...
Hello incredible, thanks for taking time..

Initially, when I tried to install the Ql2300 driver but it is not getting attached as shown below .Please find the attached text file Sun-Qlogicinfo.txt...
Forum: Solaris 05-16-2009
18,031
Posted By ilan
no, i'm not seeing the WWNs prtdiag -v | grep...
no, i'm not seeing the WWNs
prtdiag -v | grep -i wwn

the above shows empty.

I expect that they are installed correctly 'cause i had solaris10 on this and it was working fine. i installed...
Forum: Solaris 05-13-2009
18,031
Posted By ilan
Solaris9 - qlogic HBAs - luxadm reports "Found path to 0 HBA ports"
Hi All,

I'm actually trying to configure a Qlogic HBA on a solaris9 connecting in a Brocade SAN. I installed Solaris9 and now trying to look at FC devices..


bash-2.05# luxadm -e port

Found...
4,172
Posted By ilan
for loop syntax problem in iostat script on solaris
bash-3.00# ./test.sh 100 10
./test.sh: syntax error at line 6: `(' unexpected
bash-3.00# cat test.sh
#!/bin/sh
start=0
end=$1
interval=$2
iostat -xnpr > disk_iostats.csv
for (( start=0;...
8,436
Posted By ilan
Hi, AFAIK, no matter what Windows OS you have...
Hi, AFAIK, no matter what Windows OS you have earlier.., you should be able to boot off from the win2003 CD and should get along with installation!!

could it be a H/W problem - CD drive or CD...
6,245
Posted By ilan
Renjesh, can you try configuring the ssh...
Renjesh,

can you try configuring the ssh service logon account with the user that you are trying.. and see if that works..?

I know this is a bad idea as it limits you to that particular account...
128,465
Posted By ilan
Carlos, your idea of using doskey is perfect....
Carlos, your idea of using doskey is perfect. approach with set command is one of teh ways that we can achieve that..!!

on the chdir usage, i thought you are trying to switch drives often, i...
34,073
Posted By ilan
Danin, may this be of any help..! ...
Danin, may this be of any help..!

https://www.unix.com/windows-dos-issues-discussions/16795-connect-remote-sybase-server-through-script.html

sorry about the way that they left it, though :-)
...
16,031
Posted By ilan
Hi Raghav, DOS as well has a single command...
Hi Raghav,

DOS as well has a single command which does teh same job... see below e.g.


C:\Documents and Settings\ilango>echo . > abc1092.txt

C:\Documents and Settings\ilango>echo . >...
128,465
Posted By ilan
Hello Milhan, on top of what Pederabo has...
Hello Milhan,

on top of what Pederabo has suggested.., the oter easy way to get working similar to aliases are using a set command..


C:\Documents and Settings\ilango\test>set dira=dir /A
...
128,465
Posted By ilan
Carlos, if you are trying to just change teh...
Carlos, if you are trying to just change teh drives, you can simply type drive letter as in below...


C:\Documents and Settings\ilango>f:

F:\>e:

E:\>h:

H:\>c:

C:\Documents and...
Showing results 1 to 25 of 108

 
All times are GMT -4. The time now is 06:18 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy