|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Wednesday, August 15, 2012 10:09 PM
Points: 2,
Visits: 53
|
|
Want to display dynamic number of tables in output?
for exemple:
input parameter
@company_id = 2103 @instance_id '1,2,3,4,5,6,7'
i want output table for each instance ID.
so is it possibile in SQL,if its k please help me out............
|
|
|
|
|
SSCarpal Tunnel
       
Group: General Forum Members
Last Login: Yesterday @ 8:44 AM
Points: 4,434,
Visits: 7,218
|
|
I've got absolutely no idea what you mean. Please will you supply table DDL in the form of CREATE TABLE statements, sample data in the form of INSERT statements, and expected results.
Thanks John
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Wednesday, August 15, 2012 10:09 PM
Points: 2,
Visits: 53
|
|
ok ,lets i explain my requirement....
ALTER PROC Multiple_Instance_Value ( @compnay_ID INT, @Instance_ID NVARCHAR(MAX) ) AS BEGIN SELECT instance_id,address,company_name,status FROM cmytbl WHERE company_ID =@company_ID AND instance_id = @instance_id END
for exemple we passing the input parameter as
EXEC Multiple_Instance_Value @company_id = 201,@instance_id = '1011,1012,1013,1014,1015,1016,1017'
I want output as
insatnce_id: 1011, address: 3 way line, ABC private ltd,1
insatnce_id: 1012, address: 4 way line, DEF private ltd,1
insatnce_id: 1013, address: 5 way line, GHI private ltd,1
insatnce_id: 1014, address: 6 way line, JKL private ltd,1
insatnce_id: 1015, address: 7 way line, MNO private ltd,1
insatnce_id: 1016, address: 8 way line, PQR private ltd,1
In the above we get the each output table by means of instance_id what we passed in the @input parameter of @instance_id.
The output table is not fixed it may vary deponds on the @instance_id.
I think you may understand my requirement,if so please help me out,am waiting for the solution,if any queries please let me know..........
|
|
|
|
|
SSCarpal Tunnel
       
Group: General Forum Members
Last Login: Yesterday @ 8:44 AM
Points: 4,434,
Visits: 7,218
|
|
OK, what you're looking for is a function to split a comma-separated list into its individual components. You should be able to find one by searching this site for "splitter function" or something like that. Once you have one of those, you can CROSS APPLY the results against your table to get the output you desire.
John
|
|
|
|
|
SSC-Dedicated
           
Group: General Forum Members
Last Login: Yesterday @ 4:51 PM
Points: 32,923,
Visits: 26,811
|
|
dragonpms (4/3/2011) ok ,lets i explain my requirement....
ALTER PROC Multiple_Instance_Value ( @compnay_ID INT, @Instance_ID NVARCHAR(MAX) ) AS BEGIN SELECT instance_id,address,company_name,status FROM cmytbl WHERE company_ID =@company_ID AND instance_id = @instance_id END
for exemple we passing the input parameter as
EXEC Multiple_Instance_Value @company_id = 201,@instance_id = '1011,1012,1013,1014,1015,1016,1017'
I want output as
insatnce_id: 1011, address: 3 way line, ABC private ltd,1
insatnce_id: 1012, address: 4 way line, DEF private ltd,1
insatnce_id: 1013, address: 5 way line, GHI private ltd,1
insatnce_id: 1014, address: 6 way line, JKL private ltd,1
insatnce_id: 1015, address: 7 way line, MNO private ltd,1
insatnce_id: 1016, address: 8 way line, PQR private ltd,1
In the above we get the each output table by means of instance_id what we passed in the @input parameter of @instance_id.
The output table is not fixed it may vary deponds on the @instance_id.
I think you may understand my requirement,if so please help me out,am waiting for the solution,if any queries please let me know..........
This is an SQL Server CE forum. IIRC, SQL Server CE cannot use stored procedures nor can you declare variables in any of it's scripts. So let me ask, what version of SQL Server are you really using?
--Jeff Moden "RBAR is pronounced "ree-bar" and is a "Modenism" for "Row-By-Agonizing-Row".
First step towards the paradigm shift of writing Set Based code: Stop thinking about what you want to do to a row... think, instead, of what you want to do to a column."
For better, quicker answers on T-SQL questions, click on the following... http://www.sqlservercentral.com/articles/Best+Practices/61537/
For better answers on performance questions, click on the following... http://www.sqlservercentral.com/articles/SQLServerCentral/66909/
|
|
|
|