Data Science

How to install the Python

cd ~/Downloads/ wget https://python.org/ftp/python/2.7.5/Python-2.7.5.tgzExtract and go to the dirctory:tar -xvf Python-2.7.5.tgz cd Python-2.7.5Now, install using the command you just tried:./configure make sudo checkinstall

Como Instalar o Git no Ubuntu 14.04

Um método mais flexível de instalar o git é compilar o software através do fonte. Isso leva mais tempo e não será mantido através de seu gerenciador de pacotes, mas o permitirá baixar a versão mais recente e dará a você algum controle sobre as opções que incluir se quiser customizar.Antes de...

How to install the Shiny Server at Ubutu Linux

Article 01https://github.com/rstudio/shiny-server/wiki/Building-Shiny-Server-from-SourceArticle 02https://github.com/Cambridge-R-User-Group/CambRweb/wiki/Shiny-Server-tutorialAnalyse Log Error• Shiny Server log is at /var/log/shiny-server.log.• The default Shiny Server homepage you're seeing is...

How to do to Connect at Apache Webserver by Virtual Machine

1.Stop your VM and open its settings in the VirtualBox (OSE) Manager2.Go to the Network tab3.Select the network mode at your choice (bridged networking or host-only) (in the below example, I'm using host-only)If you want to use bridged networking, you've to select the right network adapter at Name....

How to do to install the FREETDS to connect in SQL Server on Linux

Englis - Articlehttps://askubuntu.com/questions/167491/connecting-ms-sql-using-freetds-and-unixodbc-isql-no-default-driver-specifiedTest connectionhttps://wagnerphp.wordpress.com/2009/06/14/conectando-o-linux-ao-sql-server-2000-via-odbc-ou-jdbc-parte-2/Portugues -...

Descompactar arquivo compactado com GZ no Linux

tar é o comando para manipular arquivos .tar. O hífen com diversas letras são parâmetros, onde cada letra significa uma função específica:•-x (eXtract) é para extrair os dados do arquivo .tar.gz (usado apenas para descompactar).•-c (Create) é para criar um arquivo tar (usado apenas para...

How to do to install the ODBC driver on Linux

UPDATE: I've included a list of items to consider when connecting to a Microsoft SQL Server from Linux here. Please review this if you're starting out and don't fully understand your possibly choices (using your programming language of choice's driver, using the Microsoft ODBC driver for linux, or...

VI - Como sobreviver

O vi é um dos editores mais antigos e eficientes que existe, seguem alguns comando úteis para utilização:  :e arquivo - Abrir arquivo  :w - Grava alteração  :w arquivo - Grava alteração em "arquivo"  :wq - Grava alteração e sai do vi  :ce - Alinhamento centralizado...

Basic Command Line at Linux Ubuntu

gedit = edit filels = list of foldersls -l file = list of permission of filecd / = navigation between folderspwd = show up the three of pathchmod 777 file = full accesschmod 777 file = execute as administrator (the password will be required)chmod -R 777 teste (folder test and sub-folders)ip addr...

How to do to install Apache Webserver at Linux Ubuntu

Ubuntu comes with Apache and PHP and they are easily installed via the default Ubuntu Package Manager 'aptitude'.The advantage of using aptitude is that you will get any security updates from Ubuntu (if and when distributed) and dependencies are automatically taken care of.Apache InstallA basic...

<< 3 | 4 | 5 | 6 | 7 >>

Script SQL

Backup Simples de Múltiplos Datafiles

27/06/2014 16:49
  Este exemplo gera backup em múltiplos arquivos de backup   BACKUP DATABASE [CUSTO] TO   DISK = N'N:\MSSQL2005\BACKUP\CUSTO\CUSTO_1_4.bak', DISK = N'N:\MSSQL2005\BACKUP\CUSTO\CUSTO_2_4.bak', DISK = N'N:\MSSQL2005\BACKUP\CUSTO\CUSTO_3_4.bak', DISK =...

Restore de Múltiplos Datafiles

26/06/2014 19:45
  Este script torna indisponível o banco, realiza o restore de múltiplos datafiles e ativa todos os logins existentes nele.     USE [master] GO ALTER DATABASE [CUSTO_PRE_PROD] SET  RESTRICTED_USER WITH ROLLBACK IMMEDIATE GO   RESTORE DATABASE...

Gere o resultado de uma query em uma linha única separado por string TSQL

20/06/2014 13:59
  Este script mostra como gerar um resultado único separado por "|" pipe, substitua a tabela temporária pela sua tabela de trabalho e referencie a coluna correta:     Query Exemplo (Base): ======================= SELECT      ...

Pesquisar via TSQL ignorando acentuação

17/06/2014 17:07
  Segue exemplo para  pesquisar ignorando acentuação: SELECT nome FROM (select 'Carlão' as Nome) X WHERE nome LIKE 'Carlao%' COLLATE SQL_Latin1_General_CP1_CI_AI    

Verifica os últimos status dos Jobs - SQL Server

16/06/2014 10:54
  Este script é utilizado para informar o último status de execução de um    USE msdb GO /* Consulta que informa o status da ultima execução de cada job Esta deve ser executada diáriamente */ SELECT Name,  CONVERT(DATETIME, MAX(lastrun)) AS [LastRun], CASE...