(no title)
kogus
|
7 months ago
I am not an expert on SQL/PSM, but I have worked in an Oracle shop before, and used PL/SQL extensively. In SQL Server, the equivalent is T-SQL. T-SQL procedures can do pretty much anything (assuming it is executed by a user with sufficient privileges), including creating and altering tables, creating and executing other procedures, running dynamic sql, as well as ordinary CRUD style operations. The "no side effect" limitation applies specifically to SQL functions.
indigo945|7 months ago
(PS: Postgres does have a concept of "safe" languages. Safe languages are expected to run programs only with the database permissions of the calling context, and prevent all other IO. However, Postgres does nothing to ensure that they do, that's the language plugin's job. Also, those functions can still perform DML and DDL as long as the calling context has the permissions to do so.)
By the way, you can do the same in SQL Server via what Microsoft ambiguously calls an Assembly. Via Assemblies, SQL Server can load procedures, aggregates and, yes, functions, from a .NET DLL file.
chasil|7 months ago
https://postgres.cz/wiki/SQL/PSM_Manual
chasil|7 months ago
As far as I know, the only implementation outside of Sybase and Microsoft is Amazon's Babelfish.
https://aws.amazon.com/rds/aurora/babelfish/
It goes without saying that SQL/PSM is far more pervasive on many more platforms, precisely because it is an ANSI standard.