![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
Hi Friends, Please help me out to get the procedure which gives me the name of all databases created on any particular device. For eg sp__devdb finseg1 Database Name ------------ Sample1 Sample2 -- -- Sample5 where 'finseg1' is the name of the device . Here it indicated that database 'Sample1',Sample2 etc created on finseg1 device Regards |
#3
| |||
| |||
|
|
Hi Friends, Please help me out to get the procedure which gives me the name of all databases created on any particular device. For eg sp__devdb finseg1 Database Name ------------ Sample1 Sample2 -- -- Sample5 where 'finseg1' is the name of the device . Here it indicated that database 'Sample1',Sample2 etc created on finseg1 device Regards |
#4
| |||
| |||
|
|
select db_name(u.id) from sysusages u, sysdevices d where d.name = "fineseg1" and sysusages.vstart between d.low and d.high |
![]() |
| Thread Tools | |
| Display Modes | |
| |