Archivo del Autor: carlosap

error conv1011 fix drFldAttrFix, errno 6

Actualización Solución: Indexar el   2 |    Schema Area        6       de las tablas afectadas ————————————————————-     OpenEdge Release 11.2 as of Wed Feb 13 18:26:43 EST 2013 You must have your database backed up before running the conversion. (1024) Have you done this (y/n) ? y VST Table Deletion has begun. Please standby.… Leer más »

How to upgrade an OpenEdge database from version 10.2 to 11.0?

http://knowledgebase.progress.com/articles/Article/000031654 Question/Problem Description How to upgrade an OpenEdge database from version 10.2 to 11.0? Clarifying Information Error Message Defect/Enhancement Number Cause Resolution Use these steps for upgrading a database from OpenEdge 10.2 to 11. OpenEdge 10.2 exists on the same machine where OpenEdge 11 is installed: 1. Truncate the version 10.2 database using the version… Leer más »

Installing Cygwin/X

Installing Cygwin/X Cygwin tools are, in the words of the Cygwin development homepage, http://cygwin.com/, «ports of the popular GNU development tools and utilities for Windows 95, 98, and NT. They function by using the Cygwin library which provides a UNIX-like API on top of the Win32 API.» Cygwin allows the compilation of the X Window… Leer más »

Best System Benchmarking Tools For Linux

http://www.junauza.com/2012/05/best-system-benchmarking-tools-for.html Phoronix Test Suite Popular tech site Phoronix is quite famous for its comprehensive benchmarks and gadget reviews. Along with the support of many hardware and software vendors, the team developed an extensive testing tool called the Phoronix Test Suite. Licensed under GNU GPL v3, the cross-platform benchmarking tool comes with 130+ test profiles and… Leer más »

openmpi solaris 10 sparc

wget http://www.open-mpi.org/software/ompi/v1.6/downloads/openmpi-1.6.3.tar.gz gtar -xvzf openmpi-1.6.3.tar.gz ./configure CFLAGS=»-mv8plus -Wa,-xarch=v8plus»

tunnel ssh local reverse etc

BASIC CONCEPTS SSH Tunneling is used to forward a port on your machine and have it go through some ssh connection allowing access to another machine usually behind a firewall. Here is an example: <HOME COMPUTER> => <INTERNET> =><WORK SSH SERVER> => <WORK DESKTOP> In this case we would like to control our work desktop… Leer más »

Windows equivalent to UNIX “time” command

Use Powershell Measure-Command {start-process whateveryouwantexecute -Wait} Edited to your need @efficiencylsBliss: Measure-Command {start-process java -argumentlist «whateverargumentisneeded» -wait}