Viewing 15 posts - 1 through 15 (of 21 total)
yes.
But wat type of design u suggest.
can u suggest me wat problems i may face if i use this method
April 28, 2012 at 4:40 am
can u help me by telling what type of problems i may face by choosing any of this method
CLR functions
dynamic functions
April 28, 2012 at 12:11 am
can any one help me out to choose with method will be suitable for multiple databases.
1. Dynamic sp
or
2.clr functions.
April 27, 2012 at 11:20 pm
what problems will i face if i follow this method
April 27, 2012 at 11:17 pm
Finally i got the answer
-- [USP_TEST] '2,3,4,17','Validated_Data','Validated_Data','BPO','222'
alter proc [USP_TEST]
(
@StateId nvarchar(100),
@h nvarchar(100),
@E nvarchar(100),
@d nvarchar(100),
@id nvarchar(10)
)
as
begin
declare @sql...
April 27, 2012 at 8:15 am
hi
Lynn Pettis
Can u give example script of stored procedure which i can use instead of the dynamic functions.
April 27, 2012 at 1:04 am
how to use a single user defined functions in multiple databases
April 26, 2012 at 1:34 am
Alter proc [dbo].[testSp]
@DbName nvarchar(100),
@table nvarchar(100)
as
begin
declare @ValidCount as nvarchar
declare @res as nvarchar(2000)
Declare @out as nvarchar(200)
Declare @a as nvarchar(200)
declare @return_value as nvarchar(200)
print @a
-- set @ValidCount= exec [test] 'BPO',...
April 25, 2012 at 3:08 am
can u send me an example and one more thing is i have to pass a field name from the original store procedure
to the called store procedure
April 25, 2012 at 3:06 am
Alter proc [dbo].[testSp]
@DbName nvarchar(100),
@table nvarchar(100)
as
begin
declare @ValidCount as nvarchar
declare @res as nvarchar(2000)
Declare @out as nvarchar(200)
Declare @a as nvarchar(200)
declare @return_value as nvarchar(200)
print @a
-- set @ValidCount= exec [test] 'BPO',...
April 25, 2012 at 2:48 am
yes structure is same for all customers
April 25, 2012 at 2:41 am
i have heard using indexes have lot of problems . is it so...........
April 25, 2012 at 12:35 am
yes each customer will have different tables.But only 50 customers table will be there in that database .
After that a new database will be created
April 25, 2012 at 12:03 am
The database creation depends on no. of customers.
Eg: 50 customers will have same database after 50 dynamically will create a new database .
here all the 50 customers will have different...
April 24, 2012 at 11:23 pm
Lot of customers are involving in our project. if i maintain a single database load will be more .So we have chosen multiple database creation based on customers use.Now...
April 24, 2012 at 10:50 pm
Viewing 15 posts - 1 through 15 (of 21 total)