zoukankan      html  css  js  c++  java
  • Cannot perform alter on 'dbo.ObjectName' because it is an incompatible object type

      Today, when I tried to Alter a function in my database, I got the error info in the title. Then I tried some example function operations, and found the reason: Inline table-value function and Multi-Statement table-valued function are actually different object type, and you can never do Alter one object to other types(If I am wrong here, please tell me).
    Now you could try it yourself:
    --First, we create a inline-table function which returns a table
    Create Function dbo.yukunFunctionTest (@param int@param1 int)
    returns table
    AS
    RETURN
    (
        
    select 1 as id
    )

    --Then, we want to alter it to a multi-statement table-valued function,
    --
    and we will get an error here
    alter Function dbo.yukunFunctionTest (@param int@param1 int)
    returns @tt table
    (
        id 
    int

    begin
        
    insert into @tt values (1)
        
    return
    end

      By the way, you can get the type value and type desc of any objects in your database from table sys.objects.
      And, which is very important, if  you really want to "alter" the type of your function, actually you need to drop it first, then create a new one. When you do it, pay attention to the permissions to the dropped objects, because you will lose all the permission info when you drop it, and you need to restore them after you create the new one.Bellow is a demo scripts which could do this for you:

    select @grantee varchar(200)

    select @grantee=name
    from syspermissions p
    join sysusers u on p.grantee = u.uid
    where id = object_id('ObjectName')

    grant select on dbo.ObjectName to @grantee
  • 相关阅读:
    java基础之java今生前世
    java线程的方便调用方式
    await和async更多的理解
    asp.net mvc webapi 实用的接口加密方法
    微信小程序开发心得
    为IEnumerable<T>添加RemoveAll<IEnumerable<T>>扩展方法--高性能篇
    微软常用的组件设计思想-‘工厂的工厂类’
    尝试asp.net mvc 基于controller action 方式权限控制方案可行性
    cookie 和session 详解
    sql注入详解
  • 原文地址:https://www.cnblogs.com/xingyukun/p/1203711.html
Copyright © 2011-2022 走看看