Viewing 10 posts - 1 through 10 (of 10 total)
Hi,
1. You should see Microsoft SQL SERVER 7.0 in Start-Programs
2. VERSION 7 in registry
3. open EM, click Microsoft SQL Server, right click in the right part of the window, open...
June 24, 2004 at 1:45 am
Hi,
try to check client tools of your users. Only EM from sql 2000 client tools can register named instance od SQL server.
June 23, 2004 at 11:38 am
Hi,
try stored ptocedure sp_dbfixedrolepermission
June 22, 2004 at 8:03 am
Hi,
try to exec simple query from Server A to Server B and reverse
(on ServerB: select * from ServerA.master.dbo.sysobjects,
on ServerA: select * from ServerB.master.dbo.sysobjects)
So you can check where is problem...
June 22, 2004 at 3:46 am
Hi,
yes, it's true. When you execute SQL profiler, you execute sql profiler procedures. Only sysadmin can execute profiler procedures (sp_trace_setstatus...).
June 21, 2004 at 8:43 am
Hi,
you can create a table with the same structure, initialized empty from existing one with
select * into TAB2 from TAB1 where 1=2
but identity column will be also created
June 21, 2004 at 7:48 am
There is 0 in your result set. And that is problem. You cannot use 0 in your query cast(cast({A} as varchar) as datetime)
try: select cast(cast(0 as varchar) as datetime)
and you'll get error.
June 21, 2004 at 6:46 am
hi,
try to set "Use Remote Collation" property of your linked server.
June 21, 2004 at 6:35 am
Hi,
i think you have problem with your data. Try query
select [service date] from [errormode detailed]
and check int value from [service date]. I hope you'll find int value which isn't in right format.
June 21, 2004 at 6:08 am
Viewing 10 posts - 1 through 10 (of 10 total)