This folder contains 16 articles

SQL Scripts

List all tables and sort by size in kilobytes
CREATE TABLE #RowCountsAndSizes (TableName NVARCHAR(128),rows CHAR(11), reserved VARCHAR(18),data VARCHAR(18),index_size VARCHAR(18), ...

Thu, Feb 9, 2017 at 10:40 AM

Determining the academic year of an Aeries database
How to determine the academic year of an Aeries database in SQL. SELECT CAST(20-FLOOR(CAST(SUBSTRING(DB_NAME(),4,2) AS INT)/80) AS VARCHAR(2)) + CAST(SU...

Tue, Mar 21, 2017 at 11:07 AM

Attendance and Enrollment totals by student
------use variables DECLARE @THISDAY AS DATETIME =  getdate() -- By default this selects today for the "as of" date DECLARE @StarDate AS DATETIME ...

Wed, Aug 22, 2018 at 8:49 AM

Using the Get Description Function in SQL Server
Overview The Aeries SQL Server database definitions have for a long time included a scalar-valued function named dbo.Get_Description. Until recently, the Q...

Mon, Jun 15, 2020 at 12:30 PM

Dynamic SQL queries to provide a rich one line result of whatever unique Programs and/or Authorizations are current or historical
People sometimes indicated a desire to output all PGM and/or AUT statuses that are relevant on one line. While Analytics allows a comfortable way to drill i...

Wed, Dec 5, 2018 at 7:42 AM

Custom Tables and Views feature invites dynamic SQL to create views tailored to what you use
This tSQL will not only create a view called PGMS (Program and Authorization Status), but it also adds itself to the CTD (Custom Table Definitions) and CTF ...

Mon, Sep 10, 2018 at 11:10 AM