Viewing 5 posts - 16 through 20 (of 20 total)
Hi,
I didn't got how you detached the tempdb. Its just an idea please take backup of temp db that is existing on different server. Try to restore the database with...
June 15, 2006 at 4:49 am
Hi,
Did u tried with Query analyzer. May be somw thing in the settings options has been changed. Did System tables are also not giving any thing.
June 15, 2006 at 4:42 am
Hi Prakash,
Below query will provide all the sp in the database. May be to work on this to get what exactly u need.
select * from sysobjects where type='p'
In...
June 15, 2006 at 4:39 am
Hi,
Try with this one It may help your purpose.
select @@servername as Server,
left(@@version, 26) as Version
declare @dbid int
declare @maxid int
declare @dbname sysname
declare @tablename varchar (255)
set @maxid = (select max(dbid) from...
June 15, 2006 at 4:26 am
Hi,
Write a query
where feature = 0 and 1 instead of typing all 0's and 1's and this will work .
with regards,
Eshwar
February 20, 2006 at 2:21 am
Viewing 5 posts - 16 through 20 (of 20 total)