Development, Software, Hardware, System, Network, API, WebService, Programmation and co..
Monday, December 24, 2012
Wednesday, December 12, 2012
[ORACLE/PLSQL] Using the single ampersand substitution variable : &
The single ampersand (&) substition variable causes Oracle to stop and prompt the user for a value before executing the command. This si a very good tool when the developer wants to use the same query to retrieve different set of data
Example :
SELECT &colname FROM &tabname WHERE &colname IS NOT NULL;
Result:
Example :
Result:
Tuesday, December 11, 2012
Thursday, December 6, 2012
Gestion utilisateurs et groupe locaux
Windows Server - Groupe/Utilisateur :
Utilisation d'une ligne de commande
- Ouvrez l'invite de commandes.
- Pour supprimer un groupe, tapez : net localgroup NomGroupe /delete
- Pour supprimer un utilisateur, tapez : net user NomUtilisateur /delete
Utilisation Gestion de l’ordinateur
- Pour ouvrir la Gestion de l'ordinateur, cliquez sur Démarrer, puis sur Panneau de configuration, double-cliquez sur Outils d'administration, puis sur Gestion de l'ordinateur.
- Clique droit sur le groupe ou l'utilisateur et supprimer.
Référence : http://ss64.com/nt/net_useradmin.html
Tuesday, November 27, 2012
Liste des ports ouverts
La commande qui permet deconnaitre la liste des ports ouverts que vous soyez sur windows ou linux est :
netstat -a
netstat -a
Tuesday, June 26, 2012
Monday, June 18, 2012
NUNIT - Erreur 23 The command exited with code 9009
If you get this error Erreur :
The command ""C:\Program Files (x86)\NUnit 2.6\bin\nunit-x86.exe""xxx.dll"" exited with code 9009.
To resolve this, you should get back on the properties of your dotnet project (Visual Studio 2008) to manage the post build event
Put some space between the PATH and the Target Filename
"C:\Program Files (x86)\NUnit 2.6\bin\nunit-x86.exe" "$(TargetFileName)"
The command ""C:\Program Files (x86)\NUnit 2.6\bin\nunit-x86.exe""xxx.dll"" exited with code 9009.
To resolve this, you should get back on the properties of your dotnet project (Visual Studio 2008) to manage the post build event
Put some space between the PATH and the Target Filename
"C:\Program Files (x86)\NUnit 2.6\bin\nunit-x86.exe" "$(TargetFileName)"
Subscribe to:
Posts (Atom)