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

'xp_cmdshell' SQL Server を有効にする

    有効にする必要があります。 xp_cmdshell MSDN ドキュメント のアクセス許可セクションを確認してください。 :

    http://msdn.microsoft.com/en-us/library/ms190693 .aspx :

    -- To allow advanced options to be changed.
    EXEC sp_configure 'show advanced options', 1
    GO
    -- To update the currently configured value for advanced options.
    RECONFIGURE
    GO
    -- To enable the feature.
    EXEC sp_configure 'xp_cmdshell', 1
    GO
    -- To update the currently configured value for this feature.
    RECONFIGURE
    GO
      

    1. パッケージcom.mysql.jdbc.PreparedStatementの違いは何ですか。およびjava.sql.PreparedStatement?

    2. tsql で xml 列をクエリする方法

    3. MySQLサブクエリは複数の行を返します

    4. エラー:リレーションの列が存在しませんPostgreSQL、挿入クエリを実行できません