Forum Replies Created

Viewing 6 posts - 16 through 21 (of 21 total)

  • RE: How to create dynamic function

    Actually my database creation depends upon no of customers i have.

    each customers have there own individual tables and i cant maintain all those things in

    a single database

  • RE: How to create dynamic function

    hi Vinu Vijayan,

    Thank u for ur reply can u send me a example function on how to use an dynamic sql query in function

  • RE: How to create dynamic function

    This my code

    Create FUNCTION [dbo].[UFN_GET_URL]

    (

    @databasename navarchar(20), -- dynamically will pass the database name

    @tablename navarchar(20), --dynamically will pass the tablename

    @SubMenuID int,

    @Flag tinyint

    )

    RETURNS nvarchar(300)

    AS

    BEGIN

    declare...

  • RE: How to create dynamic function

    what will be the complexity in CLR functions ....what will be the alternative for this ....

  • RE: How to create dynamic function

    Thank u Robin

    I cant use if else statement because there will be a dynamic database creation

    and i need acess the function using dynamic sql statement or alternative where...

  • RE: How to create dynamic function

    Hi

    thank u for ur reply.

    Actually we are using multiple database in our application for a single application .

    i need acess different database tables...

Viewing 6 posts - 16 through 21 (of 21 total)