sql >> データベース >  >> RDS >> Sqlserver

データベース所有者 (DBO) に EXTERNAL ACCESS ASSEMBLY 権限を付与する方法は?

    これは私のために働いた:

    EXEC sp_changedbowner 'sa'
    ALTER DATABASE [dbase] SET trustworthy ON
      

    そして私もこれをしました:

    sp_configure 'show advanced options', 1;
    GO
    RECONFIGURE;
    GO
    
    sp_configure 'clr enabled', 1;
    GO
    RECONFIGURE;
    GO
    
    sp_configure 'show advanced options', 0;
    GO
    RECONFIGURE;
    GO
      

    1. ORA-00918:SELECTであいまいに定義された列*

    2. パラメータ付きのMySQLスクリプト

    3. 続編upsert()は更新されず、挿入されるだけです

    4. SQL結果を反転する