Viewing 15 posts - 4,786 through 4,800 (of 5,103 total)
Have you checked this Registry key:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Jet\4.0\Engines\SystemDB
on the failing server!!
February 12, 2004 at 12:43 pm
For Security Purposes Access is superior to MSDE 2000. Period!
The Fact that the mdf can be grabbed and attached somewhere else makes MSDE usless for YOUR purposes!
February 12, 2004 at 12:38 pm
Bad NEWS on that one you will have to doit on each Database that you Already have or Create a script and run it...
February 12, 2004 at 12:08 pm
EM --> Right Click the Database, Select Properties and then Permissions!
February 12, 2004 at 11:57 am
Before you do ANYTHING you need to have a login with Access to those servers!!!
1. Use: This Trick
2. Query the master..sysdatabases table
February 12, 2004 at 8:38 am
I have 3 comments!
1. why are you using TOP xxx ... WITHOUT ORDER BY in your sp?
2. why are you using TOP 100 PERCENT if that is not a view ?
3. Do you...
February 12, 2004 at 8:20 am
how about:
CREATE PROCEDURE IsJobRunning @JobName as varchar(100) = Null as
--check!!
if (@JobName IS NULL)
RETURN -1
Declare @theID as uniqueidentifier
--get the ID
Select @theID = A.job_id
FROM OPENROWSET('SQLOLEDB','dbServerName'; 'Uname'; 'pwd' , 'SET FMTONLY OFF exec msdb.dbo.sp_help_job') ...
February 11, 2004 at 10:41 am
how about:
CREATE PROCEDURE IsJobRunning @JobName as varchar(100) = Null as
--check!!
if (@JobName IS NULL)
RETURN -1
Declare @theID as uniqueidentifier
--get the ID
Select @theID = A.job_id
FROM OPENROWSET('SQLOLEDB','dbServerName'; 'Uname'; 'pwd' , 'SET FMTONLY OFF exec msdb.dbo.sp_help_job') ...
February 11, 2004 at 10:39 am
Use Another job to MONITOR the running time and act accordingly!
February 11, 2004 at 6:41 am
It really looks that you DON'T need cursors For that!!!
you may want something Like:
SELECT p.ID, Sum(o.OrderAmount)
FROM People p Left outer join Orders o on p.ID = o.UserId
Group by p.ID
February 6, 2004 at 3:21 pm
Viewing 15 posts - 4,786 through 4,800 (of 5,103 total)