Viewing 6 posts - 16 through 21 (of 21 total)
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
April 24, 2012 at 5:04 am
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
April 23, 2012 at 5:42 am
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...
April 23, 2012 at 5:19 am
what will be the complexity in CLR functions ....what will be the alternative for this ....
April 23, 2012 at 4:30 am
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...
April 23, 2012 at 3:24 am
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...
April 23, 2012 at 3:08 am
Viewing 6 posts - 16 through 21 (of 21 total)