Viewing 8 posts - 241 through 248 (of 248 total)
Sorry,
I can't understand you ?
can you please brief it ?
my sql server is named instance which is in my local system only, when I tried to expand the instance...
July 17, 2008 at 2:22 pm
Hi Kumar,
please try below query:
Use Database name
declare @text varchar(40)
declare trig cursor for select name from sysobjects where xtype='u' and name not like 'dtproperties'
open trig
fetch next from trig into @text
while(@@fetch_status=0)
begin
create table...
July 17, 2008 at 2:09 pm
Hi,
Thank you for your quick response, but I am unable to find SQL Server Licencing tool in Control Pannel, can you please give me full path of that tool.
Thanks in...
May 14, 2008 at 11:50 pm
Thanks for the information.
I have got the solution for my issue from http://support.microsoft.com/kb/914157
Thanks to every one again.:)
May 1, 2008 at 3:48 pm
Viewing 8 posts - 241 through 248 (of 248 total)