SQL Scripts
Attached are SQL Queries to evaluate either Aeries Web Security or SQL Security for your legacy Aeries Client accounts.
Fri, Jun 16, 2017 at 8:39 AM
Parent/Student Portal Accounts Percentage and Recent Utilization --This is a nice global view of students having one or more PWA parent or student ac...
Thu, Jun 29, 2017 at 2:16 PM
Aeries Query is quite empowering, yet you may wish to arrive at some results that could take many steps after running Aeries Queries. Some of those steps...
Sat, Dec 5, 2020 at 9:44 AM
Teacher Gradebook Usage: Example SQL queries attached in text file
Wed, May 10, 2017 at 4:15 PM
select cd from loc This will return one row per record. DECLARE @something NVARCHAR(10)
DECLARE @together NVARCHAR(max) = ''
DECLAR...
Thu, Feb 9, 2017 at 9:23 AM
SELECT enr.sc, enr.pr,ENR.ID, ENR.ED, ENR.LD, enr.er, enr_1.sc,enr_1.pr, ENR_1.ED AS Expr1, ENR_1.LD AS Expr2, enr_1.er
FROM ENR INNER JOIN ENR A...
Thu, Feb 9, 2017 at 9:45 AM
This will return the appropriate graduation year (as in class of 2019) for the student based on the year of the database and grade of the student. SELEC...
Tue, May 28, 2019 at 4:48 PM
Use this to break a single row of elements into multiple rows. DECLARE @stuff as nvarchar(1000) = '6,,7,99,3,22,4' -- String to be parsed.
DE...
Thu, Feb 9, 2017 at 10:33 AM
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
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
------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
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
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
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