Forum Replies Created

Viewing 15 posts - 1 through 15 (of 17 total)

  • RE: Get Error Description in SQL Server 2000

    Some error messages are template and need to raiseerror first, check for the error number and get error description, at that point, you will get the target objects (table name,...

  • RE: Get Error Description in SQL Server 2000

    MS SQL 2000 already has system stored procedure in msdb that returns error description from messages table. The system stored procedure is named "sp_get_message_description"

  • RE: xp_cmdshell vs DOS command prompt running osql

    Thank you all for your responses.  I found out that the account running SQL Server does not have permission on SQL server folder where binn files are located.  I grant...

  • RE: Active Directory - SQL integration

    Check "Publishing SQL Server in Active Directory" article in SQL Server Magazine, the document ID is InstantDoc ID 41841.  This may help.

     

    Mohamed 

  • RE: cpu usage 100%

    Since tables are experiencing heavy inserts check if you have indexes on these tables, if yes try to minimize index usages because server may be spending most of the time updating indexes in each...

  • RE: Import HTM

    Yes I did have the same problem, I use temp tables to store the result then run a query on the temp table.  I am not sure about views though,...

  • RE: Import HTM

    Check this stored procedure  sp_makewebtask on BOL to build an html template and populate it with the data then use master.dbo.xp_smtp_sendmail stored procedure to send your email as an HTML...

  • RE: sp_spaceused tablename for each database

    I just saw your question online, I am sorry for being late to give an answer, but the following query allow you to iterate through each table in each database...

  • RE: Viewing SQL Trace Output

    Write script to start trace and stop it, save the result into a table.  Put this script into job ans schedule to run on daily basis.  You can then:

    -- Use sp_makewebtask...

  • RE: Number of Transactions per day

    you can explore the transaction log as Lumigent does by checking the following:

    --#1 in SQL 7.x & above

    DBCC LOG (database)

    --#2 in SQL 2000

    SELECT * FROM ::fn_dblog(1,NULL)

  • RE: updating multiple rows in one shot

    TRY UPDATE FROM as follow:

    UPDATE a

    SET c1 = b.c1

    FROM b

    INNER JOIN a

    ON a.c1 = b.c1

    WHERE b.c2 = 'some condition'

    AND a.c2 = 'some condition'

    Edited by...

  • RE: Jobs not running at all

    quote:


    I will create a new job again and check if I have the proper permission on the location of the backup files....

  • RE: Error 17883

    quote:


    Try

    http://support.microsoft.com/?id=810885

    http://support.microsoft.com/default.aspx?scid=kb;en-us;319892

    I already installed the security patches ...


  • RE: Error 17883

    quote:


    What about running Profiler and Perfmon to monitor whats happening on the server when the problem occurs. This will hopefully enable you...

  • RE: Error 17883

    quote:


    In fact that's what I did. As I mentioned, I already installed the security patches located on the links you specified....

Viewing 15 posts - 1 through 15 (of 17 total)