Skip to content
David Kittell
David Kittell

Application & System: Development / Integration / Orchestration

  • Services
    • Application Development
    • Online Application Integration
  • Code
  • Online Tools
  • Tech Support
David Kittell

Application & System: Development / Integration / Orchestration

Provider Detail With Address

Posted on September 16, 2013October 26, 2015 By David Kittell
SELECT firstname
	,lastname
	,prov_nbr
	,npi
	,address1
	,city
	,STATE
	,zip
FROM provider
	,address
WHERE addr_who = 'P ' || prov_nbr
	AND ymdeff <= to_char(sysdate, 'yyyymmdd')
	AND ymdend >= to_char(sysdate, 'yyyymmdd')
	AND void <> 'Y'
	AND substr(addrtype_who, 1, 1) = 'D'
	AND prov_nbr = '<Provider Number>';
Originally Posted on September 16, 2013
Last Updated on October 26, 2015
All information on this site is shared with the intention to help. Before any source code or program is ran on a production (non-development) system it is suggested you test it and fully understand what it is doing not just what it appears it is doing. I accept no responsibility for any damage you may do with this code.

Related

Amisys Code Oracle SQL

Post navigation

Previous post
Next post

Related Posts

Fedora – Remove SSL Verify On Repo

Posted on October 26, 2017

If/When you run into a situation where you can not access repos due to SSL below should help. # Remove SSL Verify sed -i.orig ‘s|failovermethod=priority|failovermethod=priority\nsslverify=false|’ /etc/yum.repos.d/fedora.repo sed -i.orig ‘s|failovermethod=priority|failovermethod=priority\nsslverify=false|’ /etc/yum.repos.d/fedora-updates.repo sed -i.orig ‘s|failovermethod=priority|failovermethod=priority\nsslverify=false|’ /etc/yum.repos.d/fedora-updates-testing.repo.orig All information on this site is shared with the intention to help. Before any source code…

Read More

Azure PowerShell – Create Virtual Network Within Resource Group

Posted on December 29, 2016

This is still a work in progress to include all the variables but the script below will create a Resource Group then create a Virtual Network with 3 subnets and a gateway along with custom DNS. # Main Reference: https://docs.microsoft.com/en-us/azure/virtual-network/virtual-networks-create-vnet-arm-ps Clear Write-verbose "Setting Environment Variables – Start" $VNetName = “azuredev-eastus-vnet”…

Read More

Ektron Framework API – List Folders

Posted on February 3, 2015October 26, 2015

I found this code on the Ektron Developer Center (see link below) that pertained mainly to menus but assisted me in getting a folder drill-down so I could add it into my DMS content widget. Similar to the DMS content widget make sure you setup the proper permissions to the…

Read More

Code

Top Posts & Pages

  • PowerShell - Rename Pictures to Image Taken
  • Front Page
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions

Recent Posts

  • Javascript – Digital Clock with Style
  • BASH – Web Ping Log
  • BASH – Picture / Video File Name Manipulation
  • Mac OSX Terminal – Create SSH Key
  • Bash – Rename Picture

Top Posts

  • PowerShell - Rename Pictures to Image Taken
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions
  • Open On Screen Keyboard (OSK)
  • SQLite - Auto-Increment / Auto Generate GUID
©2025 David Kittell | WordPress Theme by SuperbThemes