Skip to content
View marciofjr's full-sized avatar

Block or report marciofjr

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. status_invest_b3 status_invest_b3 Public

    WebScraping - Coleta de Dados do site Status Invest "B3 - Bolsa Valores Brasil"

    Python

  2. Projeto_banco_001 Projeto_banco_001 Public

    Tratamento de Dados

    TSQL

  3. 001 - SQL Listar Tabelas (Tables), E... 001 - SQL Listar Tabelas (Tables), Exibições (Views) e os seus Campos (ColumnName)
    1
    Select 
    2
    DB_NAME() as banco,
    3
    m.table_schema as div_tabela,
    4
    m.tableName as nome_tabela,
    5
    m.ColumnID as id_campo,
  4. 002 - Início Declaração e Nomeação V... 002 - Início Declaração e Nomeação VBA - Básico
    1
    'Explicado no Arq. 001 - Desempenho VBA - Básico
    2
    Option Explicit
    3
    
                  
    4
    Private Sub basico02()
    5
    
                  
  5. 003 - SQL Função Split - Limitado 80... 003 - SQL Função Split - Limitado 8000 caracteres
    1
    CREATE FUNCTION [dbo].[m_Split] (@String varchar(8000), @Separador varchar(8000), @PosBusca int )
    2
    RETURNS varchar(8000)
    3
    AS BEGIN
    4
        
    5
        DECLARE @Index int, @Max int, @Retorno varchar(8000)
  6. !!! IMPORTANTE !!! - SQL Direto para... !!! IMPORTANTE !!! - SQL Direto para Planilha do Excel
    1
    Option Explicit
    2
    
                  
    3
    Private Sub relatorioSQL()
    4
    
                  
    5
    Application.ScreenUpdating = False