Search This Blog

2009-02-27

multiline recursive search and replace perl script for windows

#see docs at the bottom
use strict;
use warnings;
use Cwd;

use File::Find;

my $search_patternFilePath=$ARGV[0] ;
my $replace_patternFilePath =$ARGV[1];
my $file_pattern = $ARGV[2];

# Usage

(@ARGV == 3 ) || die ("Usage: FindAndReplace.pl pathToFileContaingTheMultiLineSearchText FullPathToFileContainingMultiLineReplaceText FilePattern . Example: perl MultiLineFindAndReplace.pl \"D:\Opera\New Folder\search.txt\" \"D:\Opera\replace.txt\" bak");



find(\&d, cwd);

sub d {
my $file = $File::Find::name;
$file =~ s,/,\\,g;

return unless -f $file;
return unless $file =~ /$file_pattern/;

my $searchPatternString = &slurpFile ( $search_patternFilePath ) ;
my $replacePatternString = &slurpFile ( $replace_patternFilePath ) ;
my $fileStr = &slurpFile ( $file ) ;

$fileStr =~ s/$searchPatternString/$replacePatternString/igo ;
open(FILEHANDLE,">$file") || die "cannot open output file";
print (FILEHANDLE "$fileStr");
close FILEHANDLE ;

}

sub slurpFile
{
my $file = shift ;
print "\$file is $file" ;
local( $/, *FILE ) ;
open (FILE , $file) or
die "Cannot find $file !!! " ;
my $fileString = ; #slurp the whole file into one string !!!
close FILE ;
return $fileString ;
}
#Purpose : performs recursive find and replace based on pеrl regexes from the current directory
#the search and replace is case insensitive
#Usage
#perl MultiLineFindAndReplace.pl "D:\Opera\New Folder\search.txt" "D:\Opera\replace.txt" bak

recursive find and replace via the command line on Windows with Perl

#see docs at the bottom
use strict;
use warnings;
use Cwd;

use File::Find;

my $search_pattern=$ARGV[0] ;
my $replace_pattern =$ARGV[1];
my $file_pattern = $ARGV[2];

# Usage

(@ARGV == 3 ) || die ("Usage: FindAndReplace.pl findPattern ReplacePattern FilePattern");



find(\&d, cwd);

sub d {
my $file = $File::Find::name;
$file =~ s,/,\\,g;

return unless -f $file;
return unless $file =~ /$file_pattern/;
use Tie::File ;

tie my @file_array , 'Tie::File', $file , memory => 100_000_000 or die "I cannot find the $file" ;
foreach my $line (@file_array) #foreach line of the file
{
if ( $line =~ /$search_pattern/igo )
{
print "found " . $line ;
print "replacing \n" ;
}
$line =~ s/$search_pattern/$replace_pattern/igo ;

}
untie @file_array ;

}

#Purpose : performs recursive find and replace based on pеrl regexes from the current directory
#the search and replace is case insensitive

find patterns recursively on Windows with Perl

use Cwd ;
#Replace cwd with `pwd` on *ix

# Script that browses recursively all the dirs down the one you call from
# Find's all the pattern occurencies you need
# Print the name of the file with relative path, lines where is has found
# and the lines themselves

(@ARGV<1) && (die "Must specify a search string\n"); $pattern=$ARGV[0]; $startdir="."; chop ($root=cwd); print "\n\nRoot Dir is $root\n"; $dir=$startdir; &recursive($dir); sub search_dir { local($dir)=@_; opendir (DIR,".") || die ("Can't open "."\n"); @files=readdir DIR; close DIR; chop ($long_dir=cwd); $long_dir =~ s($root)([ROOT]); foreach $file (@files){ unless (-d $file){ open (FILE,$file) || die ("Can't open $file\n"); $count=0; $found=0; while($line=) {
$count++;
if ($line=~ /$pattern/) {
($found) || (print ("\n$long_dir/$file:\n"));
$found=1;
printf ("[%4d] %s",$count,$line);
}
}
close FILE;

}
}
}


sub recursive {
local($dir)=@_;
#print "Dir=$dir\n";
&search_dir($dir);
foreach $dir (<*>) {
if (-d $dir) {
chdir $dir;
&recursive($dir);
chdir "..";
}
}
}

Find and replace text from *.files in Perl

use strict;
use warnings;
use Cwd;

use File::Find;

my $search_pattern='sex' ;
my $replace_pattern = 'xes';

# my $replace_pattern = 'bar';
my $file_pattern ='.*?dat';
find(\&d, cwd);

sub d {
my $file = $File::Find::name;
$file =~ s,/,\\,g;

return unless -f $file;
return unless $file =~ /$file_pattern/;
use Tie::File ;

tie my @file_array , 'Tie::File', $file , memory => 100_000_000 or die "I cannot find the $file" ;
foreach my $line (@file_array) #foreach line of the file
{
$line =~ s/$search_pattern/$replace_pattern/igo ;
}
untie @file_array ;

}

how-to execute recursively commands for each directory in perl

#!/usr/local/bin/perl
#
# recurs.pl
#
# This script executes recursively on subdirs the command you supply as a parameter
#
# Run "program -h" to see the run options
#
# Last modified: Apr 10 1997
# Author: Bekman Stas
#

$|=1;


# Set here the pattern extensions of your image files

# Usage

(@ARGV == 1 ) || die ("Usage: recurs.pl [-h] \n\t-h this help\n\n");

$command=$ARGV[0];
#$command=~s/(.*)/'$1'/;

&recursive();


# Subroutine "recursive" goes recursively down at the dir tree and
# and runs the $ARGV[0] for you. After comming to the end it's coming back up
# at the tree.


sub recursive {
#orig system($command);
`$command` ;
#print "$command\n";
#die;
foreach $dir (<*>) {
if (-d $dir) {
# print "$dir\n";
chdir $dir;
&recursive();
chdir "..";
}
}
}

2009-02-25

how-to start and stop IIS site via the command line

@echo off


::FIRST STOP THE SITE
echo stopping the SOME_SITE_NAME
%WINDIR%\system32\iisweb.vbs /stop "SOME_SITE_NAME"

echo
PAUSE
echo START THE SITE
%WINDIR%\system32\iisweb.vbs /start "SOME_SITE_NAME"
echo DONE !
echo PRESS ENTER TO QUIT
pause

how-to start and stop sql server 2005 via the command line

::STOP_START_SQL_SERVER_SERVICES.CMD
@ECHO OFF
ECHO THIS CMD FILE STARTS AND STOPS THE SQL SERVER SERVICE
ECHO TESTED ON WINDOWS SERVER 2003
ECHO VIEW WHICH SQL SERVER RELATED SERVICES ARE RUNNING


ECHO TO PROCEED PRESS SOMETHING TO END PRESS CTRL + C
ECHO.
PAUSE

ECHO THOSE SERVICES CONTAIN SQL IN THEIR NAME
net start | findstr SQL

ECHO.
ECHO.
ECHO TO PROCEED PRESS SOMETHING TO END PRESS CTRL + C
PAUSE

net stop "SQL Server (MSSQLSERVER)"
ECHO.
ECHO.

ECHO.
ECHO START BACK THE SERVICES PRESS SOMETHING TO QUIT PRESS CTRL + C
PAUSE


ECHO.
ECHO STARTING THE "SQL Server (MSSQLSERVER)" SERVICE
ECHO.
net start "SQL Server (MSSQLSERVER)"
ECHO STARTING THE SQL Server Agent (MSSQLSERVER) SERVICE
net start "SQL Server Agent (MSSQLSERVER)"


ECHO.
ECHO YOU SHOULD BE DONE NOW !
ECHO PRESS SOMETHING OR EVEN CTRL + C TO EXIT
pause

how-to manage IIS via the command line

SOURCES:
http://www.tech-faq.com/using-iis-command-line-utilities-to-manage-iis.shtml

Using IIS Command-Line Utilities to Manage IIS


The Types of Commands used for Managing IIS from the Command Line

The types of commands which you can use to manage IIS from the command line are:









  • IISReset, Windows Management Instrumentation (WMI) scripts, Active Directory Services Interface (ADSI), and the standard Windows commands and Support Tools utilities.

IISReset Command-line Utility

IISReset is a command-line utility that has been in existence from IIS 5, which you can use to stop IIS, restart IIS, and reboot the IIS server. Typical reasons for restarting IIS are:

  • When problematic ASP.NET and ASP application exist, and you need to eliminate resource leaks, or initiate resource recycling.
  • When certain IIS configuration changes are made, you would need to restart IIS so that the changes are applied. A few of these types of configuration settings changes are listed below:
    • IIS needs to be restarted when the IIS isolation mode is changed.
    • When you restore the metabase from a metabase history file manually, you need to restart IIS.
    • You have to restart IIS when you change the Direct Metabase Edit feature’s property, EnableEditWhileRunning, directly in the metabase file.
    • IIS also has to be restarted whenever changes are made to any global configuration settings located under HKLM\Software\Microsoft\InetMgr\Parameters.

Windows Management Instrumentation (WMI)

You can use WMI scripts for a few typical IIS management tasks:

  • Create and delete Web sites and FTP sites
  • Create and delete virtual directories
  • Enable/disable web service extensions
  • Backup and restore IIS configuration, and copy IIS configuration
  • Import/export portions of the metabase, as well as other management tasks

A few WMI scripts are provided by Microsoft, and are located in the \Windows\System32 directory. These WMI scripts and their associated functions are listed below:

  • iisweb.vbs: Used to perform the following management tasks from the command line:
    • List Web sites
    • Create/delete Web sites
    • Start/stop Web sites
  • iisvdir.vbs: Used for performing the following management tasks from the command line:
    • Create/delete virtual directories for Web sites
    • List virtual directories in a specified root.
  • iisapp.vbs: For listing all Web applications which are running on the IIS machine.
  • iisback.vbs: For backing up and restoring IIS configuration settings, and for deleting IIS backups.
  • iiscnfg.vbs: Used to perform the following management tasks from the command line:
    • Import and export IIS configurations as XML files
    • Save IIS configuration to disk.
    • Copy IIS configuration settings
  • iisext.vbs: Used for performing the following management tasks from the command line:
    • List applications
    • Enable applications
    • Add/remove application dependencies
    • Enable/disable web service extensions
    • List and add/remove web service extension files
    • Enable/disable web service extension files
  • iisftp.vbs: Used to perform the following management tasks from the command line:
    • List FTP sites
    • Create/delete FTP sites
    • Start/stop FTP sites
    • Set Active Directory user isolation for your FTP sites
  • iisftpdr.vbs: Used to perform the following management tasks from the command line:
    • Create and delete virtual directories in FTP sites
    • List virtual directories in a specified root.

Active Directory Services Interface (ADSI)

Active Directory Services Interface (ADSI) was used in IIS 5 to manage IIS from the command line. Through ADSI, you can change IIS configuration settings, and configure websites, applications, and virtual directories from the command line. With IIS 6, it is recommended to use WMI scripts over ADSI. Any custom ADSI scripts previously used in IIS 5 should be tested to verify that they work in IIS 6.


Windows Commands and Support Tools Utilities

A few IIS specific Windows commands, such as the net commands, can be used to manage IIS from the command line:

  • net start and net stop: Used to start and stop IIS services. The service name which you should use when utilizing the net command to start, or stop IIS services are listed below:
    • FTP service = msftpsvc
    • IIS Admin service = iisadmin
    • NNTP service = nntpsvc
    • SMTP service = smtpsvc
    • WWW service = w3svc
  • net localgroup: Used to add a user account to the IIS_WPG group. Accounts utilized as application pool identities are members of the IIS_WPG group.
  • Cacls: Used to capture NTFS permissions on the IIS server.
  • Convlog: Used to convert the IIS log files to the NCSA format.

You can also use the resource kit utilities listed below to manage certain elements of IIS:

  • secedit: Used to administer security templates.
  • auditpol: Used to change audit policies from the command line
  • showmbrs: Used to list the members of security groups which have permissions on directories and files.

How to schedule IISReset.exe through Task Scheduler

IISReset is typically used when you need to recover from faulty application situations. You can use Windows Task Scheduler to schedule IIS to restart according to predefined parameters.

  1. Open Control Panel.
  2. Select Scheduled Tasks, and then select Add Scheduled Task.
  3. Click Next for the Scheduled Task Wizard to start.
  4. Click Browse and browse to Windows\System32 folder.
  5. Double-click IISReset.exe.
  6. Enter a task name, and select when the task should run. Click Next.
  7. Enter the Administrator account details that should be utilized to run IISReset. Click Next.
  8. If you want to configure advanced task scheduling properties, click the Advanced checkbox; or alternatively click Finish.
  9. Open the Properties dialog box of the task you just configured, and click the Task tab.
  10. Add any additional switches in the Run box.
  11. Click OK.

How to use iisweb.vbs to manage Web sites

The iisweb.vbs utility is used to list Web sites, create and delete Web sites, and start and stop Web sites in IIS.

iisweb.vbs has the following main switches:

  • /create, for creating a Web site.
  • /delete, for deleting a Web site.
  • /start, for starting a Web site.
  • /stop, for stopping a Web site
  • /pause, for pausing a Web site
  • /query, for troubleshooting a Web site - displaying all the Web sites on the IIS machine

To create a Web site, use:


iisweb[.vbs] /create Path SiteName [/b Port] [/i IPAddress] [/d HostHeader] [/dontstart] [/s Computer [/u [Domain\]User [/p Password]]]

  • Path, the physical location to the files for the Web site. When the directory does not exist, the script creates it.
  • SiteName, the name of the new Web site. This is the name which will be displayed in IIS Manager.
  • /b Port, the port on which the new Web site should listen for HTTP requests. The default value is port 80.
  • /i IPAddress, the IP address that must be assigned to the Web site.
  • /d HostHeader, the host header for the new site.
  • /dontstart, used to indicate that IIS should not automatically start the Web site after it is created. IIS by default starts a newly created Web site.
  • /s Computer, used to indicate that the script should run on this remote computer. The local computer is used by default.
  • /u [Domain\]User, the account credentials that must be used to create the Web site on the remote computer.
  • /p Password, the password of the account credentials (above).

To start, stop, delete, or pause a Web site, use:


iisweb[.vbs] {/delete | /start | /stop | /pause} WebSite [WebSite...] [/s Computer [/u [Domain\]User [/p Password]]]

  • WebSite, the name of the Web site which should be deleted, started, stopped, or paused.
  • /s Computer, used to indicate that the script should run on this remote computer. The local computer is used by default.
  • /u [Domain\]User, the account credentials that must be used to delete, start, stop, or pause the Web site on the remote computer.
  • /p Password, the password of the account credentials (above).

To query Web sites on your IIS servers, use


iisweb[.vbs] /query [WebSite [WebSite...]] [/s Computer [/u [Domain\]User [/p Password]]]


How to use iisvdir.vbs to manage virtual directories

The iisvdir.vbs command can be used to list virtual directories in a specified root, to create and delete virtual directories for websites, and to query virtual directories of an IIS server.

To create a virtual directory for a Web site, use:


iisvdir /create WebSite[/VirtualPath] Name PhysicalPath [/s Computer [/u [Domain\]User /p Password]]

  • WebSite, the name of the Web site which you want to create the virtual directory for.
  • VirtualPath, the virtual path under which this virtual directory should be created (optional)
  • Name, the name of the new virtual directory.
  • PhysicalPath, the name of physical directory where the virtual directory points.
  • /s Computer, used to indicate that the script should run on this remote computer. The local computer is used by default.
  • /u [Domain\]User, the account credentials that must be used to create the virtual directory for the remote computer.
  • /p Password, the password of the account credentials (above).

To delete a virtual directory associated with a Web site, use:


iisvdir /delete WebSite[/VirtualPath] Name [/s Computer [/u [Domain\]User/p Password]]

  • WebSite, the name of the Web site which is associated with the virtual directory that you want to delete.
  • VirtualPath, the virtual path which holds the virtual directory (optional).
  • Name, the name of the virtual directory that you want to delete.
  • /s Computer, used to indicate that the script should run on this remote computer. The local computer is used by default.
  • /u [Domain\]User, the account credentials that must be used to delete the virtual directory.
  • /p Password, the password of the account credentials (above).

To query Web site specific virtual directories on your IIS servers, use


iisvdir /query WebSite[/VirtualPath][/s Computer [/u [Domain\] User/p Password]]

  • WebSite, the name of the Web site which is associated with the virtual directory that you want to query.
  • VirtualPath, the virtual path which holds the virtual directory (optional).
  • /s Computer, used to indicate that the script should run on this remote computer. The local computer is used by default.
  • /u [Domain\]User, the account credentials that must be used to query for virtual directories.
  • /p Password, the password of the account credentials (above).

How to use iisftp.vbs to manage FTP sites

The iisftp.vbs utility is used to perform management tasks from the command line that are specific to managing FTP sites on the IIS servers.

iisftp.vbs has the following main switches:

  • /create, for creating a FTP site.
  • /delete, for deleting a FTP site.
  • /start, for starting a FTP site.
  • /stop, for stopping a FTP site
  • /query, for troubleshooting a FTP site - displaying all the FTP sites on the IIS machine
  • /setadprop, for indicating that Active Directory properties should be used for a particular user accessing the FTP site.
  • /getadprop, for obtaining Active Directory properties for the particular user.

To create a FTP site, use:


iisftp /create Path SiteName [/b Port] [/i IPAddress] [/dontstart] [/isolation {AD|Local} [/domain DomainName /Admin [Domain\]User /AdminPwd Password]] [/s Computer [/u [Domain\]User/p Password]]

  • Path, the physical location to the files for the FTP site.
  • SiteName, the name of the new FTP site. This is the name which will be displayed in IIS Manager.
  • /b Port, the port on which the new FTP site should listen for FTP requests. The default value is port 21.
  • /i IPAddress, the IP address that must be assigned to the FTP site.
  • /dontstart, used to indicate that IIS should not automatically start the FTP site after it is created. IIS by default starts all newly created sites.
  • /isolation, used to indicate the isolation mode that should be used.
  • domain, when Active Directory is selected as the isolation mode, this is the domain for Active Directory.
  • admin, when Active Directory is selected as the isolation mode, this is the admin account credentials for Active Directory.
  • AdminPwd, when Active Directory is selected as the isolation mode, this is the password of the admin account for Active Directory (above).
  • /s Computer, used to indicate that the script should run on this remote computer. The local computer is used by default.
  • /u [Domain\]User, the account credentials that must be used to create the FTP site on the remote computer.
  • /p Password, the password of the account credentials (above).

To start, stop, delete, or pause a FTP site, use:


iisftp[.vbs] {/delete | /start | /stop | /pause} FTPSite [FTPSite...] [/s Computer [/u [Domain\]User [/p Password]]]

  • FTPSite, the name of the FTP site which should be deleted, started, stopped, or paused.
  • /s Computer, used to indicate that the script should run on this remote computer. The local computer is used by default.
  • /u [Domain\]User, the account credentials that must be used to delete, start, stop, or pause the FTP site on the remote computer.
  • /p Password, the password of the account credentials (above).

To query FTP sites on your IIS servers, use


iisftp[.vbs] /query [FTPSite [FTPSite...]] [/s Computer [/u [Domain\]User [/p Password]]]


To use /setadprop, and /getadprop use,


iisftp /SetADProp UserID {FTPDir|FTPRoot} PropertyValue [/s Computer [/u [Domain\]User/p Password]]

iisftp /GetADProp UserID [/s Computer [/u [Domain\]User /p Password]]

  • UserID, the Active Directory user login ID
  • FTPDir, indicates whether the modification is applicable at the directory level or at the root level.
  • PropertyValue, indicates the home directory and relative path.
  • /s Computer, used to indicate that the script should run on this remote computer. The local computer is used by default.
  • /u [Domain\]User, the account credentials that must be used for remote administration.
  • /p Password, the password of the account credentials (above).

How to use iisftpdr.vbsto manage virtual directories

The iisftpdr.vbs command can be used to list virtual directories in a specified root, and to create and delete virtual directories in FTP sites from the command line.

To create a virtual directory for a FTP site, use:


iisftpdr /create FTPSite[VirtualPath] Name PhysicalPath [/s Computer [/u [Domain\]User /p Password]]

  • FTPSite, the name of the FTP site which you want to create the virtual directory for.
  • VirtualPath, the virtual path under which this virtual directory should be created (optional)
  • Name, the name of the new virtual directory.
  • PhysicalPath, the name of physical directory where the virtual directory points.
  • /s Computer, used to indicate that the script should run on this remote computer. The local computer is used by default.
  • /u [Domain\]User, the account credentials that must be used to create the virtual directory on the remote computer.
  • /p Password, the password of the account credentials (above).

To delete a virtual directory associated with a FTP site, use:


iisftpdr /delete FTPSite[VirtualPath]/Name [/s Computer [/u [Domain\]User /p Password]]

  • FTPSite, the name of the FTP site which is associated with the virtual directory that you want to delete.
  • VirtualPath, the virtual path which holds the virtual directory (optional).
  • Name, the name of the virtual directory that you want to delete.
  • /s Computer, used to indicate that the script should run on this remote computer. The local computer is used by default.
  • /u [Domain\]User, the account credentials that must be used to delete the virtual directory.
  • /p Password, the password of the account credentials (above).

To query FTP specific virtual directories on your IIS servers, use


iisftpdr /query FTPSite[/VirtualPath][/s Computer [/u [Domain\]User/p Password]]

  • FTPSite, the name of the FTP site which is associated with the virtual directory that you want to query.
  • VirtualPath, the virtual path which holds the virtual directory (optional).
  • /s Computer, used to indicate that the script should run on this remote computer. The local computer is used by default.
  • /u [Domain\]User, the account credentials that must be used to query for virtual directories remotely.
  • /p Password, the password of the user account (above).

How to use iiscnfg.vbs to manage IIS from the command line

You can use iiscnfg.vbs to import and export IIS configurations settings of the metabase as XML files.

To export IIS configuration settings, use:


iiscnfg /export /f [Path\]FileName.xml /sp SourcePath [/d EncryptingPassword] [/inherited] [/children] [/s Computer [/u [Domain\]User [/p Password]]]

  • /f [Path\]FileName.xml, the name of the XML file that the configuration settings should be exported to.
  • /sp SourcePath, the node of the metabase configuration settings.
  • /d EncryptingPassword, the password of the XML file.
  • /inherited, indicates that all inherited information should be exported.
  • /children, indicates that subkeys of the node should be exported.
  • /s Computer, used to indicate that the script should run on this remote computer. The local computer is used by default.
  • /u [Domain\]User, the account credentials that must be used to run the script.
  • /p Password, the password of the account credentials (above).

To import IIS configuration settings, use:


iiscnfg /import /f [Path\]FileName.xml /sp SourcePath /dp DestinationPath [/d EncryptingPassword] [/inherited] [/children] [/merge][/s Computer [/u [Domain\]User [/p Password]]]

  • /f [Path\]FileName.xml, the name of the XML file that should be used to import IIS configuration settings to the server.
  • /sp SourcePath, the node of the XML file.
  • /dp DestinationPath, the destination node path in the metabase.
  • /d EncryptingPassword, the password of the XML file.
  • /inherited, indicates that all inherited information should be imported. This can only occur when the source node has properties that can be inherited.
  • /children, indicates that subkeys of the node should be imported.
  • /merge, merges different source keys to one metabase key through this value.
  • /s Computer, used to indicate that the script should run on this remote computer. The local computer is used by default.
  • /u [Domain\]User, the account credentials that must be used to run the script.
  • /p Password, the password of the user account (above).

To copy the metabase.xml file and metabase XML file to a different IIS server, use:


iiscnfg /copy /ts TargetComputer /tu TargetUser /tp TargetPassword [/s Computer [/u [Domain\]User [/p Password]]]

  • /ts TargetComputer, the name or IP address of the IIS computer to which these configuration settings should be copied.
  • tu TargetUser, the user account for logging on the target computer.
  • tp TargetPassword, the password of the account provided above.
  • /s Computer, used to indicate that the script should run on this remote computer. The local computer is used by default.
  • /u [Domain\]User, the account credentials that must be used to run the script remotely.
  • /p Password, the password of the account (above).

To immediately save configuration changes to the metabase, use:


iiscnfg /save [/s Computer [/u [Domain\]User /p Password]]

  • /s Computer, used to indicate that the script should run on this remote computer. The local computer is used by default.
  • /u [Domain\]User, the account credentials that must be used to run the script.
  • /p Password, the password of the account (above).

How to use iisback.vbs to back up IIS configuration settings and restore IIS configurations

You can use iisback.vbs to back up, and restore IIS configuration settings from the command line

To back up IIS configuration settings, use:


iisback /backup [/b BackupName] [/v {Integer | HIGHEST_VERSION | NEXT_VERSION}] [/overwrite] [/e EncryptingPassword] [/s Computer [/u [Domain\]User/p Password]]

  • /b BackupName, the name of the back up.
  • /v {Integer}, possible values are HIGHEST_VERSION or NEXT_VERSION. HIGHEST_VERSION creates a backup of the highest version number. The HIGHEST_VERSION value has to be utilized with /overwrite. NEXT_VERSION increments the existing version number by one.
  • /overwrite, used to overwrite a current backup
  • /e EncryptingPassword, used to enable password encryption for the backup.
  • /s Computer, used to indicate that the script should run on this remote computer. The local computer is used by default.
  • /u [Domain\]User, the account credentials that must be used to create backups for the remote computer.
  • /p Password, the password of the account credentials (above).

To restore IIS configuration settings, use:


iisback /restore /b BackupName [/v {Integer | HIGHEST_VERSION}] [/e EncryptionPassword] [/s Computer [/u [Domain\]User/p Password]]

  • /b BackupName, the name of the backup file that you want to restore.
  • /v {Integer}, possible values are HIGHEST_VERSION or NEXT_VERSION.
  • /e EncryptingPassword, the password for the backup.
  • /s Computer, used to indicate that the script should run on this remote computer. The local computer is used by default.
  • /u [Domain\]User, the account credentials that must be used to restore the backup file for the remote computer.
  • /p Password, the password of the account (above).

To list all IIS backups for an IIS server, use:


iisback /list [/s Computer [/u [Domain\]User/p Password]]

  • /s Computer, used to indicate that the script should run on this remote computer. The local computer is used by default.
  • /u [Domain\]User, the account credentials that must be used to list all backups for the remote computer.
  • /p Password, the password of the account credentials (above).

To delete an IIS backup, use:


iisback /delete [/bBackupName] [/v {Integer | HIGHEST_VERSION}] [/s Computer [/u [Domain\]User /p Password]]

  • /bBackupName, the name of the backup file that you want to delete.
  • /v {Integer}, possible values are HIGHEST_VERSION or NEXT_VERSION.
  • /s Computer, used to indicate that the script should run on this remote computer. The local computer is used by default.
  • /u [Domain\]User, the account credentials that must be used to delete the backup file for the remote computer.
  • /p Password, the password of the account credentials (above).
























Top 5 Free Networking Tools










Bookmark Using IIS Command-Line Utilities to Manage IIS















English English GermanGerman SpanishSpanish FrenchFrench ItalianItalian PortuguesePortuguese RussianRussian DutchDutch
GreekGreek HindiHindi JapaneseJapanese KoreanKorean ChineseChinese Chinese (Simplified)Chinese (Simplified) ArabicArabic

2009-02-24

stored procedur to kill active connections to sql server 2005 2008

USE [master]
GO
/****** Object: StoredProcedure [dbo].[procUtils_KillConnectionsToDb] Script Date: 02/24/2009 12:05:59 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO

ALTER procedure [dbo].[procUtils_KillConnectionsToDb]
@databaseName varchar(100)
AS
BEGIN -- proc start
SET NOCOUNT ON;

BEGIN TRY --begin try


declare @backupFileName varchar(100), @restoreDirectory varchar(100),
@databaseDataFilename varchar(100), @databaseLogFilename varchar(100),
@databaseDataFile varchar(100), @databaseLogFile varchar(100), @execSql nvarchar(1000)

-- Set the name of the database to restore
set @databaseName = 'BE'
-- Set the path to the directory containing the database backup
set @restoreDirectory = 'D:\Data\DB_BACKUPS' -- such as 'c:\temp\'

-- Create the backup file name based on the restore directory, the database name and today's date

--@backupFileName = @restoreDirectory + @databaseName + '-' + replace(convert(varchar, getdate(), 110), '-', '.') + '.bak'


set @backupFileName = 'D:\Data\DB_BACKUPS\BE.bak'
-- Get the data file and its path
select @databaseDataFile = rtrim([Name]),
@databaseDataFilename = rtrim([Filename])
from master.dbo.sysaltfiles as files
inner join
master.dbo.sysfilegroups as groups
on

files.groupID = groups.groupID
where DBID = (
select dbid
from master.dbo.sysdatabases
where [Name] = @databaseName
)

-- Get the log file and its path
select @databaseLogFile = rtrim([Name]),
@databaseLogFilename = rtrim([Filename])
from master.dbo.sysaltfiles as files
where DBID = (
select dbid
from master.dbo.sysdatabases
where [Name] = @databaseName
)
and
groupID = 0

select 'Killing active connections to the "' + @databaseName + '" database'

-- Create the sql to kill the active database connections
set @execSql = ''
select @execSql = @execSql + 'kill ' + convert(char(10), spid) + ' '
from master.dbo.sysprocesses
where db_name(dbid) = @databaseName
and
DBID <> 0
and
spid <> @@spid
exec (@execSql)

select 'Restoring "' + @databaseName + '" database from "' + @backupFileName + '" with '
select ' data file "' + @databaseDataFile + '" located at "' + @databaseDataFilename + '"'
select ' log file "' + @databaseLogFile + '" located at "' + @databaseLogFilename + '"'
end try --eof try

begin CATCH
select 'In CATCH block.
Error number: ' + CAST(ERROR_NUMBER() AS varchar(10)) + '
Error message: ' + ERROR_MESSAGE() + '
Error severity: ' + CAST(ERROR_SEVERITY() AS varchar(10)) + '
Error state: ' + CAST(ERROR_STATE() AS varchar(10)) + '
XACT_STATE: ' + CAST(XACT_STATE() AS varchar(10));
end catch --catch

end --proc

/*



USE [master]
GO

DECLARE @return_value int

EXEC @return_value = [dbo].[procUtils_KillConnectionsToDb]
@databaseName = N'be'

SELECT 'Return Value' = @return_value

GO



*/

2009-02-22

generate my links for mysql documentation

SELECT url
FROM `help_topic`
WHERE 1

IN textpad
find ^(.*)$
replace:
  • \1


  • http://dev.mysql.com/doc/refman/5.0/en/group-by-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/join.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/functions-that-test-spatial-relationships-between-geometries.html

  • http://dev.mysql.com/doc/refman/5.0/en/general-geometry-property-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/group-by-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/group-by-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/gis-geometry-class-hierarchy.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-type-overview.html

  • http://dev.mysql.com/doc/refman/5.0/en/open.html

  • http://dev.mysql.com/doc/refman/5.0/en/show-create-procedure.html

  • http://dev.mysql.com/doc/refman/5.0/en/numeric-type-overview.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/create-trigger.html

  • http://dev.mysql.com/doc/refman/5.0/en/show-columns.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/numeric-type-overview.html

  • http://dev.mysql.com/doc/refman/5.0/en/show-triggers.html

  • http://dev.mysql.com/doc/refman/5.0/en/miscellaneous-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-comparison-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/if-statement.html

  • http://dev.mysql.com/doc/refman/5.0/en/bit-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/drop-view.html

  • http://dev.mysql.com/doc/refman/5.0/en/functions-that-test-spatial-relationships-between-geometries.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/sqlps.html

  • http://dev.mysql.com/doc/refman/5.0/en/lock-tables.html

  • http://dev.mysql.com/doc/refman/5.0/en/reset-slave.html

  • http://dev.mysql.com/doc/refman/5.0/en/show-binary-logs.html

  • http://dev.mysql.com/doc/refman/5.0/en/gis-mysql-specific-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/replace.html

  • http://dev.mysql.com/doc/refman/5.0/en/miscellaneous-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/gis-mysql-specific-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/miscellaneous-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/information-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/delete.html

  • http://dev.mysql.com/doc/refman/5.0/en/mathematical-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/control-flow-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/close.html

  • http://dev.mysql.com/doc/refman/5.0/en/stop-slave.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/gis-wkt-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/control-flow-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/show-master-status.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/creating-spatial-indexes.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-type-overview.html

  • http://dev.mysql.com/doc/refman/5.0/en/control-flow-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/show-errors.html

  • http://dev.mysql.com/doc/refman/5.0/en/comparison-operators.html

  • http://dev.mysql.com/doc/refman/5.0/en/comparison-operators.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/comparison-operators.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-type-overview.html

  • http://dev.mysql.com/doc/refman/5.0/en/blob.html

  • http://dev.mysql.com/doc/refman/5.0/en/general-geometry-property-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/create-user.html

  • http://dev.mysql.com/doc/refman/5.0/en/gis-mysql-specific-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/information-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/comparison-operators.html

  • http://dev.mysql.com/doc/refman/5.0/en/show-profiles.html

  • http://dev.mysql.com/doc/refman/5.0/en/update.html

  • http://dev.mysql.com/doc/refman/5.0/en/comparison-operators.html

  • http://dev.mysql.com/doc/refman/5.0/en/case-statement.html

  • http://dev.mysql.com/doc/refman/5.0/en/sqlps.html

  • http://dev.mysql.com/doc/refman/5.0/en/drop-index.html

  • http://dev.mysql.com/doc/refman/5.0/en/fulltext-search.html

  • http://dev.mysql.com/doc/refman/5.0/en/mathematical-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/gis-wkb-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-comparison-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/gis-class-geometry.html

  • http://dev.mysql.com/doc/refman/5.0/en/gis-mysql-specific-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/group-by-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/arithmetic-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-type-overview.html

  • http://dev.mysql.com/doc/refman/5.0/en/encryption-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/linestring-property-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/cache-index.html

  • http://dev.mysql.com/doc/refman/5.0/en/encryption-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/insert.html

  • http://dev.mysql.com/doc/refman/5.0/en/group-by-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/handler.html

  • http://dev.mysql.com/doc/refman/5.0/en/gis-wkt-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/gis-wkb-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/rename-table.html

  • http://dev.mysql.com/doc/refman/5.0/en/numeric-type-overview.html

  • http://dev.mysql.com/doc/refman/5.0/en/miscellaneous-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/mathematical-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-type-overview.html

  • http://dev.mysql.com/doc/refman/5.0/en/optimize-table.html

  • http://dev.mysql.com/doc/refman/5.0/en/encryption-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/comparison-operators.html

  • http://dev.mysql.com/doc/refman/5.0/en/load-data-from-master.html

  • http://dev.mysql.com/doc/refman/5.0/en/reset.html

  • http://dev.mysql.com/doc/refman/5.0/en/help.html

  • http://dev.mysql.com/doc/refman/5.0/en/miscellaneous-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/show-binlog-events.html

  • http://dev.mysql.com/doc/refman/5.0/en/gis-wkb-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/iterate-statement.html

  • http://dev.mysql.com/doc/refman/5.0/en/do.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/numeric-type-overview.html

  • http://dev.mysql.com/doc/refman/5.0/en/set-option.html

  • http://dev.mysql.com/doc/refman/5.0/en/mathematical-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-type-overview.html

  • http://dev.mysql.com/doc/refman/5.0/en/show-open-tables.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/encryption-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/show-status.html

  • http://dev.mysql.com/doc/refman/5.0/en/encryption-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/set-statement.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/logical-operators.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/polygon-property-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/gis-wkb-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/show-slave-hosts.html

  • http://dev.mysql.com/doc/refman/5.0/en/commit.html

  • http://dev.mysql.com/doc/refman/5.0/en/comparison-operators.html

  • http://dev.mysql.com/doc/refman/5.0/en/gis-mysql-specific-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/query-cache-status-and-maintenance.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-type-overview.html

  • http://dev.mysql.com/doc/refman/5.0/en/mathematical-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/create-database.html

  • http://dev.mysql.com/doc/refman/5.0/en/numeric-type-overview.html

  • http://dev.mysql.com/doc/refman/5.0/en/group-by-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/alter-view.html

  • http://dev.mysql.com/doc/refman/5.0/en/show-databases.html

  • http://dev.mysql.com/doc/refman/5.0/en/bit-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-type-overview.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/information-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/mathematical-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/show-logs.html

  • http://dev.mysql.com/doc/refman/5.0/en/mathematical-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/numeric-type-overview.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/information-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-type-overview.html

  • http://dev.mysql.com/doc/refman/5.0/en/arithmetic-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/functions-that-test-spatial-relationships-between-geometries.html

  • http://dev.mysql.com/doc/refman/5.0/en/kill.html

  • http://dev.mysql.com/doc/refman/5.0/en/functions-to-convert-geometries-between-formats.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/restore-table.html

  • http://dev.mysql.com/doc/refman/5.0/en/declare-conditions.html

  • http://dev.mysql.com/doc/refman/5.0/en/functions-that-test-spatial-relationships-between-geometries.html

  • http://dev.mysql.com/doc/refman/5.0/en/geometrycollection-property-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/set-global-sql-slave-skip-counter.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/procedure-analyse.html

  • http://dev.mysql.com/doc/refman/5.0/en/relations-on-geometry-mbr.html

  • http://dev.mysql.com/doc/refman/5.0/en/change-master-to.html

  • http://dev.mysql.com/doc/refman/5.0/en/drop-database.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/show-grants.html

  • http://dev.mysql.com/doc/refman/5.0/en/show-privileges.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/mathematical-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/logical-operators.html

  • http://dev.mysql.com/doc/refman/5.0/en/linestring-property-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/declare-local-variables.html

  • http://dev.mysql.com/doc/refman/5.0/en/gis-wkt-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/grant.html

  • http://dev.mysql.com/doc/refman/5.0/en/relations-on-geometry-mbr.html

  • http://dev.mysql.com/doc/refman/5.0/en/group-by-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/comparison-operators.html

  • http://dev.mysql.com/doc/refman/5.0/en/comparison-operators.html

  • http://dev.mysql.com/doc/refman/5.0/en/mathematical-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/mathematical-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/numeric-type-overview.html

  • http://dev.mysql.com/doc/refman/5.0/en/create-function.html

  • http://dev.mysql.com/doc/refman/5.0/en/geometrycollection-property-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/create-index.html

  • http://dev.mysql.com/doc/refman/5.0/en/alter-database.html

  • http://dev.mysql.com/doc/refman/5.0/en/bit-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/show-table-status.html

  • http://dev.mysql.com/doc/refman/5.0/en/encryption-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/comparison-operators.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/arithmetic-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/rename-user.html

  • http://dev.mysql.com/doc/refman/5.0/en/show-slave-status.html

  • http://dev.mysql.com/doc/refman/5.0/en/creating-spatial-columns.html

  • http://dev.mysql.com/doc/refman/5.0/en/linestring-property-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/bit-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/cast-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/repeat-statement.html

  • http://dev.mysql.com/doc/refman/5.0/en/numeric-type-overview.html

  • http://dev.mysql.com/doc/refman/5.0/en/numeric-type-overview.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/general-geometry-property-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/sqlps.html

  • http://dev.mysql.com/doc/refman/5.0/en/miscellaneous-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/functions-that-test-spatial-relationships-between-geometries.html

  • http://dev.mysql.com/doc/refman/5.0/en/miscellaneous-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/encryption-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/example-auto-increment.html

  • http://dev.mysql.com/doc/refman/5.0/en/general-geometry-property-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/arithmetic-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/gis-wkt-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/gis-wkt-format.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/revoke.html

  • http://dev.mysql.com/doc/refman/5.0/en/information-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/numeric-type-overview.html

  • http://dev.mysql.com/doc/refman/5.0/en/mathematical-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/mathematical-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/explain.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-type-overview.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/arithmetic-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/select-into-statement.html

  • http://dev.mysql.com/doc/refman/5.0/en/group-by-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/mathematical-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/drop-trigger.html

  • http://dev.mysql.com/doc/refman/5.0/en/reset-master.html

  • http://dev.mysql.com/doc/refman/5.0/en/mathematical-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/mathematical-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/arithmetic-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/group-by-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/information-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/gis-wkb-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/mathematical-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/encryption-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/drop-table.html

  • http://dev.mysql.com/doc/refman/5.0/en/mathematical-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/show-create-table.html

  • http://dev.mysql.com/doc/refman/5.0/en/select.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/show-engines.html

  • http://dev.mysql.com/doc/refman/5.0/en/show-mutex-status.html

  • http://dev.mysql.com/doc/refman/5.0/en/comparison-operators.html

  • http://dev.mysql.com/doc/refman/5.0/en/mathematical-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-type-overview.html

  • http://dev.mysql.com/doc/refman/5.0/en/linestring-property-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-type-overview.html

  • http://dev.mysql.com/doc/refman/5.0/en/group-by-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/functions-to-convert-geometries-between-formats.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/show-tables.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/cast-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/relations-on-geometry-mbr.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/relations-on-geometry-mbr.html

  • http://dev.mysql.com/doc/refman/5.0/en/create-procedure.html

  • http://dev.mysql.com/doc/refman/5.0/en/insert-select.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-type-overview.html

  • http://dev.mysql.com/doc/refman/5.0/en/load-index.html

  • http://dev.mysql.com/doc/refman/5.0/en/union.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-comparison-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/show-index.html

  • http://dev.mysql.com/doc/refman/5.0/en/show-create-database.html

  • http://dev.mysql.com/doc/refman/5.0/en/leave-statement.html

  • http://dev.mysql.com/doc/refman/5.0/en/comparison-operators.html

  • http://dev.mysql.com/doc/refman/5.0/en/logical-operators.html

  • http://dev.mysql.com/doc/refman/5.0/en/declare-handlers.html

  • http://dev.mysql.com/doc/refman/5.0/en/numeric-type-overview.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-type-overview.html

  • http://dev.mysql.com/doc/refman/5.0/en/logical-operators.html

  • http://dev.mysql.com/doc/refman/5.0/en/point-property-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/information-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/information-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/functions-that-test-spatial-relationships-between-geometries.html

  • http://dev.mysql.com/doc/refman/5.0/en/truncate.html

  • http://dev.mysql.com/doc/refman/5.0/en/group-by-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/polygon-property-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/start-slave.html

  • http://dev.mysql.com/doc/refman/5.0/en/begin-end.html

  • http://dev.mysql.com/doc/refman/5.0/en/flush.html

  • http://dev.mysql.com/doc/refman/5.0/en/show-procedure-status.html

  • http://dev.mysql.com/doc/refman/5.0/en/show-warnings.html

  • http://dev.mysql.com/doc/refman/5.0/en/describe.html

  • http://dev.mysql.com/doc/refman/5.0/en/drop-user.html

  • http://dev.mysql.com/doc/refman/5.0/en/group-by-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/show-character-set.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/general-geometry-property-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/functions-that-test-spatial-relationships-between-geometries.html

  • http://dev.mysql.com/doc/refman/5.0/en/call.html

  • http://dev.mysql.com/doc/refman/5.0/en/relations-on-geometry-mbr.html

  • http://dev.mysql.com/doc/refman/5.0/en/miscellaneous-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/encryption-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/loop-statement.html

  • http://dev.mysql.com/doc/refman/5.0/en/mathematical-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/show.html

  • http://dev.mysql.com/doc/refman/5.0/en/comparison-operators.html

  • http://dev.mysql.com/doc/refman/5.0/en/show-variables.html

  • http://dev.mysql.com/doc/refman/5.0/en/group-by-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/mathematical-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/relations-on-geometry-mbr.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/select.html

  • http://dev.mysql.com/doc/refman/5.0/en/mathematical-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/backup-table.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/gis-wkt-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/load-table-from-master.html

  • http://dev.mysql.com/doc/refman/5.0/en/group-by-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/information-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/show-engine.html

  • http://dev.mysql.com/doc/refman/5.0/en/miscellaneous-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/miscellaneous-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/comparison-operators.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/cast-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-comparison-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/gis-mysql-specific-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/bit-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/fetch.html

  • http://dev.mysql.com/doc/refman/5.0/en/group-by-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/boolean-values.html

  • http://dev.mysql.com/doc/refman/5.0/en/relations-on-geometry-mbr.html

  • http://dev.mysql.com/doc/refman/5.0/en/comparison-operators.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/information-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/mysql-server-side-help.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/miscellaneous-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/gis-wkt-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/encryption-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/mathematical-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/point-property-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/show-innodb-status.html

  • http://dev.mysql.com/doc/refman/5.0/en/checksum-table.html

  • http://dev.mysql.com/doc/refman/5.0/en/polygon-property-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/polygon-property-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/drop-function.html

  • http://dev.mysql.com/doc/refman/5.0/en/group-by-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/bit-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/gis-wkt-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/drop-procedure.html

  • http://dev.mysql.com/doc/refman/5.0/en/check-table.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/declare-cursors.html

  • http://dev.mysql.com/doc/refman/5.0/en/gis-mysql-specific-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/load-data.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/gis-wkt-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-type-overview.html

  • http://dev.mysql.com/doc/refman/5.0/en/encryption-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/encryption-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-type-overview.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/general-geometry-property-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/group-by-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/numeric-type-overview.html

  • http://dev.mysql.com/doc/refman/5.0/en/functions-that-test-spatial-relationships-between-geometries.html

  • http://dev.mysql.com/doc/refman/5.0/en/show-create-view.html

  • http://dev.mysql.com/doc/refman/5.0/en/comparison-operators.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/alter-procedure.html

  • http://dev.mysql.com/doc/refman/5.0/en/bit-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/encryption-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/arithmetic-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/miscellaneous-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/mathematical-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/set-transaction.html

  • http://dev.mysql.com/doc/refman/5.0/en/mathematical-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/mathematical-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/gis-wkb-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/show-processlist.html

  • http://dev.mysql.com/doc/refman/5.0/en/general-geometry-property-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/create-view.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/comparison-operators.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-type-overview.html

  • http://dev.mysql.com/doc/refman/5.0/en/savepoints.html

  • http://dev.mysql.com/doc/refman/5.0/en/information-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/gis-wkb-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/alter-table.html

  • http://dev.mysql.com/doc/refman/5.0/en/purge-master-logs.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-type-overview.html

  • http://dev.mysql.com/doc/refman/5.0/en/repair-table.html

  • http://dev.mysql.com/doc/refman/5.0/en/merge-storage-engine.html

  • http://dev.mysql.com/doc/refman/5.0/en/create-table.html

  • http://dev.mysql.com/doc/refman/5.0/en/comparison-operators.html

  • http://dev.mysql.com/doc/refman/5.0/en/analyze-table.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/innodb-foreign-key-constraints.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/set-password.html

  • http://dev.mysql.com/doc/refman/5.0/en/control-flow-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-type-overview.html

  • http://dev.mysql.com/doc/refman/5.0/en/information-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/gis-wkb-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/mathematical-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/mathematical-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-comparison-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/insert-delayed.html

  • http://dev.mysql.com/doc/refman/5.0/en/show-procedure-code.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-type-overview.html

  • http://dev.mysql.com/doc/refman/5.0/en/mathematical-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/show-collation.html

  • http://dev.mysql.com/doc/refman/5.0/en/mathematical-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/set-sql-log-bin.html

  • http://dev.mysql.com/doc/refman/5.0/en/comparison-operators.html

  • http://dev.mysql.com/doc/refman/5.0/en/while-statement.html

  • http://dev.mysql.com/doc/refman/5.0/en/encryption-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/date-and-time-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/information-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/numeric-type-overview.html

  • http://dev.mysql.com/doc/refman/5.0/en/linestring-property-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/mathematical-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/information-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/comparison-operators.html

  • http://dev.mysql.com/doc/refman/5.0/en/information-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • http://dev.mysql.com/doc/refman/5.0/en/string-functions.html

  • Labels

    perl (41) Cheat Sheet (25) how-to (24) windows (14) sql server 2008 (13) linux (12) oracle (12) sql (12) Unix (11) cmd windows batch (10) mssql (10) cmd (9) script (9) textpad (9) netezza (8) sql server 2005 (8) cygwin (7) meta data mssql (7) metadata (7) bash (6) code generation (6) Informatica (5) cheatsheet (5) energy (5) tsql (5) utilities (5) excel (4) future (4) generic (4) git cheat sheet (4) html (4) perl modules (4) programs (4) settings (4) sh (4) shortcuts (4) поуки (4) принципи (4) Focus Fusion (3) Solaris (3) cool programs (3) development (3) economy (3) example (3) freeware (3) fusion (3) logging (3) morphus (3) mssql 2005 (3) nuclear (3) nz (3) parse (3) python (3) sftp (3) sofware development (3) source (3) sqlplus (3) table (3) vim (3) .Net (2) C# (2) China (2) GUI (2) Google (2) GoogleCL (2) Solaris Unix (2) architecture (2) ascii (2) awk (2) batch (2) cas (2) chrome extensions (2) code2html (2) columns (2) configuration (2) conversion (2) duplicates (2) excel shortcuts (2) export (2) file (2) free programs (2) informatica sql repository (2) linux cheat sheet (2) mssql 2008 (2) mysql (2) next big future (2) nsis (2) nz netezza cheat sheet (2) nzsql (2) ora (2) prediction (2) publish (2) release management (2) report (2) security (2) single-click (2) sqlserver 2005 (2) sqlserver 2008 (2) src (2) ssh (2) template (2) tools (2) vba (2) video (2) xlt (2) xml (2) youtube videos (2) *nix (1) .vimrc (1) .virmrc vim settings configs (1) BSD license (1) Bulgaria (1) Dallas (1) Database role (1) Dense plasma focus (1) Deployment (1) ERP (1) ExcelToHtml (1) GD (1) GDP (1) HP-UX (1) Hosting (1) IDEA (1) INC (1) IT general (1) ITIL management bullshit-management (1) IZarc (1) Java Web Start (1) JavaScript anchor html jquery (1) Khan Academy (1) LINUX UNIX BASH AND CYGWIN TIPS AND TRICKS (1) Linux Unix rpm cpio build install configure (1) Linux git source build .configure make (1) ListBox (1) MIT HYDROGEN VIRUS (1) OO (1) Obama (1) PowerShell (1) Run-time (1) SDL (1) SIWA (1) SOX (1) Scala (1) Services (1) Stacks (1) SubSonic (1) TED (1) abstractions (1) ansible hosts linux bash (1) ansible linux deployment how-to (1) ansible yum pip python (1) apache (1) apache 2.2 (1) application life cycle (1) architecture input output (1) archive (1) arguments (1) avatar (1) aws cheat sheet cli (1) aws cli (1) aws cli amazon cheat sheet (1) aws elb (1) backup (1) bash Linux open-ssh ssh ssh_server ssh_client public-private key authentication (1) bash perl search and replace (1) bash stub (1) bin (1) biofuels (1) biology (1) books (1) browser (1) bubblesort (1) bugs (1) build (1) byte (1) cas_sql_dev (1) chennai (1) chrome (1) class (1) claut (1) cmdow (1) code generation sqlserver (1) command (1) command line (1) conf (1) confluence (1) console (1) convert (1) cool programs windows free freeware (1) copy paste (1) copy-paste (1) csv (1) ctags (1) current local time (1) cygwin X11 port-forwarding mintty xclock Linux Unix X (1) cygwin bash how-to tips_n_tricks (1) cygwin conf how-to (1) data (1) data types (1) db2 cheat sheet (1) db2 starter ibm bash Linux (1) debt (1) diagram (1) dictionaries (1) digital (1) disk (1) disk space (1) documentation (1) dos (1) dubai (1) e-cars (1) electric cars (1) electricity (1) emulate (1) errors (1) exponents (1) export workflow (1) extract (1) fast export (1) fexp (1) file extension (1) file permissions (1) findtag (1) firewall (1) for loop (1) freaky (1) functions (1) fusion research (1) german (1) git gitlab issues handling system (1) google cli (1) google code (1) google command line interface (1) gpg (1) ha (1) head (1) helsinki (1) history (1) hop or flop (1) host-independant (1) how-to Windows cmd time date datetime (1) ibm db2 cognos installation example db deployment provisioning (1) ideas (1) image (1) informatica oracle sql (1) informatica repo sql workflows sessions file source dir (1) informatica source files etl (1) install (1) isg-pub issue-tracker architecture (1) it management best practices (1) java (1) jump to (1) keyboard shortcuts (1) ksh (1) level (1) linkedin (1) linux bash ansible hosts (1) linux bash commands (1) linux bash how-to shell expansion (1) linux bash shell grep xargs (1) linux bash tips and t ricks (1) linux bash unix cygwin cheatsheet (1) linux bash user accounts password (1) linux bash xargs space (1) linux cheat-sheet (1) linux cheatsheet cheat-sheet revised how-to (1) linux how-to non-root vim (1) linux ssh hosts parallel subshell bash oneliner (1) london (1) make (1) me (1) metacolumn (1) metadata functions (1) metaphonre (1) method (1) model (1) movie (1) multithreaded (1) mysql cheat sheet (1) mysql how-to table datatypes (1) n900 (1) nano (1) neteza (1) netezza bash linux nps (1) netezza nps (1) netezza nps nzsql (1) netezza nz Linux bash (1) netezza nz bash linux (1) netezza nz nzsql sql (1) netezza nzsql database db sizes (1) non-password (1) nord pol (1) nps backup nzsql schema (1) number formatting (1) nz db size (1) nz table count rows (1) nzsql date timestamp compare bigint to_date to_char now (1) on-lier (1) one-liners (1) one-to-many (1) oneliners (1) open (1) open source (1) openrowset (1) openssl (1) oracle PL/SQL (1) oracle Perl perl (1) oracle installation usability (1) oracle number formatting format-model ora-sql oracle (1) oracle templates create table (1) oracle trigger generic autoincrement (1) oracle vbox virtual box cheat sheet (1) oracle virtual box cheat sheet (1) outlook (1) parser (1) password (1) paths (1) perl @INC compile-time run-time (1) perl disk usage administration Linux Unix (1) perl modules configuration management (1) permissions (1) php (1) picasa (1) platform (1) postgreSQL how-to (1) powerShell cmd cygwin mintty.exe terminal (1) ppm (1) predictions (1) prices (1) principles (1) productivity (1) project (1) prompt (1) proxy account (1) public private key (1) publishing (1) putty (1) qt (1) read file (1) registry (1) relationship (1) repository (1) rm (1) scala ScalaFmt (1) scp (1) scripts (1) scsi (1) search and replace (1) sed (1) sendEmail (1) sh stub (1) shortcuts Windows sql developer Oracle (1) sidebar (1) silicon (1) smells (1) smtp (1) software development (1) software procurement (1) sofware (1) sort (1) sql script (1) sql_dev (1) sqlcmd (1) sqlite (1) sqlite3 (1) sshd (1) sshd cygwin (1) stackoverflow (1) stored procedure (1) stub (1) stupidity (1) subroutines (1) svn (1) sysinternals (1) system design (1) tail (1) tar (1) temp table (1) templates (1) teradata (1) terminal (1) test (1) testing (1) theory (1) thorium (1) time (1) tip (1) title (1) tmux .tmux.conf configuration (1) tmux efficiency bash (1) tool (1) ui code prototyping tips and tricks (1) umask Linux Unix bash file permissions chmod (1) url (1) urls (1) user (1) utility (1) utils (1) vb (1) vbox virtual box cheat sheet (1) vim perl regex bash search for string (1) vim recursively hacks (1) vim starter (1) vim-cheat-sheet vim cheat-sheet (1) vimeo (1) visual stuio (1) warsaw (1) wiki (1) wikipedia (1) window (1) windows 7 (1) windows 8 (1) windows programs (1) windows reinstall (1) windows utility batch perl space Windows::Clipboard (1) wisdoms (1) workflow (1) worth-reading (1) wrapper (1) xp_cmdshell (1) xslt (1) youtube (1)

    Blog Archive

    Translate with Google Translate

    My Blog List