Forum Replies Created

Viewing 15 posts - 4,786 through 4,800 (of 5,103 total)

  • RE: Error 7399 OLE DB provider microsoft.jet......

    Have you checked this Registry key:

    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Jet\4.0\Engines\SystemDB

     on the failing server!!

  • RE: Database Implementation Question

    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!

     

  • RE: User Administration

    Bad NEWS on that one   you will have to doit on each Database that you Already have or Create a script  and run it...

  • RE: User Administration

    EM --> Right Click the Database, Select Properties and then Permissions!

  • RE: Does SQL Server exist

    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

  • RE: OODMS

    BE CAREFUL!

    I worked with one   a long time ago it was painful when we needed scaling!!

    If you are planing to use a...

  • RE: Strange userdefined Function problem

    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...

  • RE: MSDE Questions

    Use the MSDE 2000 Deployment Resource kit

  • RE: Trigger or Constraint...you decide!

    Your answer is Here

  • RE: How To Check if Job is Running?

    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') ...

  • RE: Force a scheduled job to FAIL

    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') ...

  • RE: Force a scheduled job to FAIL

    Use Another job to MONITOR the running time and act accordingly!

  • RE: Help

    Or if you want your own sp:

    CREATE Table DataTable (Area varchar(2), Message varchar(100), Store_Num  varchar(8))

    GO

    Insert into DataTable (area, Message, Store_num) Values ('CN', 'Missing Sales as of 9:59am ', 'BK2345')

    Insert...

  • RE: looping a cursor in a looped cursor

    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

     

  • RE: Why cant my query update a linked table?

    check this out

     

Viewing 15 posts - 4,786 through 4,800 (of 5,103 total)