General
How to check Windows for 32-bit OS or 64-bit OS PDF Print E-mail
All in One - General
Written by Administrator   
Tuesday, 13 April 2010 07:47

to check Windows for 32-bit OS or 64-bit OS :

Start --> Run --> msinfo32.exe

 

System Type :

  • For 32-bit editions of Windows : x86-based PC.
  • For 64-bit editions of Windows : x64-based PC.

OS Name    Microsoft Windows XP Professional
Version    5.1.2600 Service Pack 3 Build 2600
OS Manufacturer   
System Name    
System Manufacturer    
System Model   
System Type    X86-based PC
Processor    x86 Family 6 Model 15 Stepping 13 GenuineIntel ~1994 Mhz
BIOS Version/Date    COMPAL 1.16, 12/31/2007
SMBIOS Version    2.4
Windows Directory    C:\WINDOWS
System Directory    C:\WINDOWS\system32
Boot Device    \Device\HarddiskVolume1
Locale    
Hardware Abstraction Layer    Version = "5.1.2600.5512 (xpsp.080413-2111)"
User Name    
Time Zone    GTB Daylight Time
Total Physical Memory    2,048.00 MB
Available Physical Memory    1.03 GB
Total Virtual Memory    2.00 GB
Available Virtual Memory    1.96 GB
Page File Space    3.84 GB
Page File    C:\pagefile.sys

 

Last Updated ( Tuesday, 13 April 2010 07:56 )
 
calling shell script from pl/sql PDF Print E-mail
All in One - General
Written by Administrator   
Tuesday, 29 September 2009 14:59

-- create job

BEGIN
DBMS_SCHEDULER.create_program(
program_name => 'akn_prog1',
program_type => 'EXECUTABLE',
program_action => '/oracle/koccrmett/tani/tani_tekil_id_degisen.sh',
number_of_arguments => 0,
enabled => TRUE,
comments => 'Test Program sh tekil'
);
END;

--create job

BEGIN
DBMS_SCHEDULER.create_job(job_name => 'akn_job1',
program_name => 'akn_prog1',
start_date => NULL,
repeat_interval => NULL,
end_date => NULL,
enabled => TRUE,
auto_drop => FALSE,
comments => 'Export data Job');
END;

-- enable program and job

BEGIN
DBMS_SCHEDULER.enable(NAME => 'akn_job1');
DBMS_SCHEDULER.enable(NAME => 'akn_prog1');
END;
/

-- run job

BEGIN
DBMS_SCHEDULER.RUN_JOB(job_name => 'akn_job1',use_current_session => TRUE);
END;

 
import data(txt,csv) to mysql PDF Print E-mail
All in One - General
Written by Administrator   
Sunday, 31 May 2009 00:33
LOAD DATA LOCAL INFILE 'c:\\fuzyon.csv'
INTO TABLE jos_proje_deneme
FIELDS TERMINATED BY ','
LINES TERMINATED BY '\n' (catid,category,name,type,firm,description);
Last Updated ( Sunday, 31 May 2009 00:35 )
 
Fatal error: Call to a member function on a non-object PDF Print E-mail
All in One - General
Written by Administrator   
Saturday, 30 May 2009 11:58

Fatal error: Call to a member function on a non-object in \httpdocs\??\libraries\joomla\html\editor.php on line 196

 

Probably you dont upload some files or some missing files in plugins directory 

 
ORA-00988 ORA-00988: missing or invalid password(s) PDF Print E-mail
All in One - General
Written by Administrator   
Monday, 25 May 2009 07:47

use double qutes : enter like this "password"

 
« StartPrev123NextEnd »

Page 1 of 3