Data Science

Google Maps by rStudio

mapType='normal'mapType='terrain' mapgps <- sqlQuery(channel, "select distinct top 10  (convert(varchar,Lat) +','+ convert(varchar,Lon)) as Latitude, Lon  fromvCompany c inner join tbNZPostcode p on c.vchPostCode = p.postcode  where chCountryCode = 'NZ' and p.postcode = 1010...

Intensity Map by rStudio

datamap <- sqlQuery(channel, "select chCountryCode as Country from vCompany group by chCountryCode")dataframe <- sqlQuery(channel, "select chCountryCode as Country, count(iCompanyId) as Total from vCompany group by chCountryCode  order by 2 desc")Geo=gvisGeoChart(dataframe)plot(Geo)

Show up the Pie chart by Google Maps at rStudio - Manual

library(googleVis)a<-c('option1','option2','option3')b<-c(35,80,10)data<-data.frame(a,b)myplot<-gvisPieChart(data,options=list(title='Example',width=1000,...

Show up the bar charts by Google Maps at rStudio

--// Install the package (You must connect before as Administrator)install.packages("googleVis")--// Connect the librarylibrary(googleVis)--// Add data to the chartdf <- data.frame(dataframe)--//Set up the chart (gvisBarChart(df, yvar="Total",xvar="Country")--// Add for horizontal chartBar1...

Connect with SQL Database via ODBC by rStudio

--// Connect with SQL Database via ODBClibrary(RODBC)--// Open the sourcechannel <- odbcConnect("DATABASE_SERVER_NAME", uid="usr_studioR", pwd="XXXXXXX", believeNRows=FALSE)--// Open the Record SetEx 01: dataframe <- sqlQuery(channel, "select iCompanyId, chCountryCode, vchCity from...

Install ODBC driver at rStudio in Linux

install.packages("RODBC")install.packages("RODBC",type = "source")

<< 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...