Skip to content
View nstubbe's full-sized avatar
🇧🇪
🇧🇪

Organizations

@OnCore-NV

Block or report nstubbe

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse

Pinned Loading

  1. Generate-waveform-container Generate-waveform-container Public

    Code for a container that runs a one-shot process that generates waveforms from audio files

    Python

  2. StoringSqlFilesInResources StoringSqlFilesInResources Public

    C# 3

  3. Get all tables without primary keys Get all tables without primary keys
    1
    SELECT 
    2
      SCHEMA_NAME(schema_id) AS [Schema], 
    3
      name AS [Table]
    4
    FROM sys.tables
    5
    WHERE OBJECTPROPERTY(object_id, 'TableHasPrimaryKey') = 0
  4. Get all foreign keys in DB Get all foreign keys in DB
    1
    SELECT  obj.name AS FK_NAME,
    2
        sch.name AS [schema_name],
    3
        tab1.name AS [table],
    4
        col1.name AS [column],
    5
        col1.is_nullable AS is_nullable,