Forum Replies Created

Viewing 15 posts - 1,006 through 1,020 (of 1,131 total)

  • RE: SQL Error when accessing databases

    Did you apply the MDAC Service Pack to the web servers ?

  • RE: Distributed Transaction failure

    Is the client Windows 2003 or XP ?

    There are a couple of reasons:

    For Windows XP, Windows Firewall is enabled on the computer. By default, Windows Firewall blocks the MSDTC program.

    See...

  • RE: Trigger question for partial rollback

    Do not use an "AFTER INSERT" trigger, but try using an "INSTEAD OF INSERT" trigger

    that inserts into the same table.

    CREATE TRIGGER [trgTest]

    ON [dbo].[tblMyLog]

    FOR INSTEAD OF INSERT

    AS

    set nocount...

  • RE: SQL Error when accessing databases

    If you run a google search versus microsoft.com, you will find 2 fixes for the problem.

    Product: MDAC 2.7

    Solution: Apply SP1

    URL: htp://support.microsoft.com/kb/322144/EN-US/

    Product: SQL Server 2000

    Solution: Apply SP1

    URL: http://support.microsoft.com/kb/302409/EN-US/

  • RE: scary? - changing sa password on production server

    To comply with Sarabannes-Oxley, no one, including the DBAs, are allowed to use generic accounts such as "sa". Instead, each DBA connects using an separate account. To prevent anyone...

  • RE: Copy files accross the network.

    Does the SQL Server service account have rights on the remote server ?

    Also, since you are using the adminstrative share (c$), the account will need be a member of the...

  • RE: Not associated with a trusted SQL server connection

    The SQL Server could be configured to only allow Window Accounts to connect and not allow SQL Server accounts.

    Are you using the MSDE edition ? If so, integrated security...

  • RE: SQL Serer using too much memory

    Task Manager does not provide accurate memory usage information for AWE. Specificly, the memory indicated for sqlservr.exe is never correct.

    You must use the Performance Monitor to retrieve information on...

  • RE: Sql 2005 Setup on RAID-5

    Here are the benchmark numbers from running the SQLIOStress utility on 2 servers where one is RAID-5 and the other is RAID-1.

    The results are seperated by !

    DB File Placement!Data and...

  • RE: Non-Admins Creating Stored Procedures

    Here is quote from a major bank's new security access policy:

    "No member(s) of any staff or consulting group involved in the development of information systems can request access to...

  • RE: SubQuery

    Am I missing something ?

    Doesn't this SQL do the job ?

    select *

    , convert(varchar,convert(datetime,Date_Lst_Iss),103)

    from dbo.Part_Mast

    where Part_Num LIKE '258095GB%'

    order by Part_Num

  • RE: Where are tempdb definitions stored?

    The physical attributes for tempdb are stored in master.dbo.sysaltfiles.

    At startup, tempdb is created from model and then the physical attributes are applied such as changing the recovery mode to simple,...

  • RE: DTS Package tries to login using old sa login

    Were you aware that when you change a DTS package, the prior versions are still retained ?

    Under some circumstances ( that I have yet to determine), an older version...

  • RE: Querying time values spanning 2 days

    Note that with a 24 hour clock, to determine if a specific time is with a range that spans midnight, such as 9:00 PM to 6:00 AM, two checks are...

  • RE: Help Creating this trigger

    Some quirks with triggers:

    1. Triggers are invoked based on the statement but the statment may or may not have update any rows. For example, this statement will cause the...

Viewing 15 posts - 1,006 through 1,020 (of 1,131 total)