Forum Replies Created

Viewing 15 posts - 1,441 through 1,455 (of 1,654 total)

  • RE: HELP while connecting to a remote SQL Server

    Unfortunately I can't see the error messages so I have to guess about the errors. What you should do is first make sure that there is a login for N800\harihan_lavanya...

    [font="Verdana"]Markus Bohse[/font]

  • RE: Database Mail

    Ivan,

    the fact that SQL Agent grey's out the Test button seems to be some bug in Management Studio, I have the same problem even after installing SP1.

    About SQL Agent not...

    [font="Verdana"]Markus Bohse[/font]

  • RE: @Query Parameter in sp_send_dbmail???

    Gex,

    Can you post your statement plz. It's hard to tell what's wrong without knowing your exact statement. Personally I don't have any problems using the @query parameter.

    Markus

    [font="Verdana"]Markus Bohse[/font]

  • RE: Table rows missing in copied database

    Is it possible that your backup file contains more than one backup ? It sounds to me like one of those classical cases where you have two or more backups...

    [font="Verdana"]Markus Bohse[/font]

  • RE: SQLH2 stops functioning

    Hi Folks,

    as always as soon as you post a problem, suddenly you find the answer. The version is registered in the table sys_config, and somehow the information from this...

    [font="Verdana"]Markus Bohse[/font]

  • RE: How could I substibute dbo.properties properties from sql server 2000 to sql server 2005?

    Carl,

    I can't check it now (no SQL2005 server at hand), but most system tables/views in 2005 are in the sys schema and you have to call them like sys.properties.

    Markus

    [font="Verdana"]Markus Bohse[/font]

  • RE: Urgent help needed

    Hi Joe,

    thanks for your reply. All the jobs are running fine. The databse is in full recovery mode and transaction log backups are made every hour. The memory (4gb) is...

    [font="Verdana"]Markus Bohse[/font]

  • RE: problem with sysindexes

    Dave,

    have you tried running DBCC CHECKALLOC ? In my experience errors in checkdb are most of the time related to disk errors.

    Also at http://www.sqlfe.com/ you find a utility which enables...

    [font="Verdana"]Markus Bohse[/font]

  • RE: sp_blocker_pss80

    Santhosh,

    Exec sp_helptext 'sys.fn_get_sql'  will give you the code for this function, but I don't understand why you would need that.

    Markus

    [font="Verdana"]Markus Bohse[/font]

  • RE: Question of the Day for 15 Mar 2006

    Ernie,

    did you check that the name of your Excel sheet is actually Sheet1. If you use a non-english version of Excel for example, the sheet will have a different name.

    Markus

    [font="Verdana"]Markus Bohse[/font]

  • RE: sp_blocker_pss80

    To be honest, I haven't had alook at sp_blocker_pss80 and who to integrate fn_get_sql_handle but maybe you can find some ideas in this article. http://vyaskn.tripod.com/fn_get_sql.htm

    Markus

    [font="Verdana"]Markus Bohse[/font]

  • RE: Scripting out maint plans

    Derek,

    I don't think you can script the actual maintenance plan, but you can script the job(s) created by the maintenance plan. Go to SQL Agent\Jobs and select script job as...

    [font="Verdana"]Markus Bohse[/font]

  • RE: sp_blocker_pss80

    You could use fn_get_sql. This way the statement won't be truncated.

    DECLARE @handle binary(20)

    SELECT @handle = sql_handle

        FROM master..sysprocesses

        WHERE spid = @@SPID

    SELECT [text]

       ...

    [font="Verdana"]Markus Bohse[/font]

  • RE: Is is possible to change a Cas Sensative SQL 2000 DB ?

    Dave,

    one thing to keep in mind when using different collations on one server is the fact that the tempDB will always have the default server collation. This can cause errors...

    [font="Verdana"]Markus Bohse[/font]

  • RE: Where are error codes

     Although I know that it is becoming a mortal sin to do a SELECT on sys tables  ... Is this what you are looking for?:

    select * from master.sysmessages

     
    In SQL...

    [font="Verdana"]Markus Bohse[/font]

Viewing 15 posts - 1,441 through 1,455 (of 1,654 total)