Forum Replies Created

Viewing 15 posts - 1,021 through 1,035 (of 1,222 total)

  • RE: Reporting Service

    For SQL 2005, goto control panel, Add/Remove Programs and select Change. You should see a link "To install a new component, click here". Click on the link and...

  • RE: Tracing the user

    You can do this using products such as Lumigent's Log Explorer if you stil have the transaction logs for when the sproc was changed. There are other similar products...

  • RE: Writing to sysjobhistory

    It is up to you (in your master sproc) to do the error handling and decide whether you should abort or not. You can control what happens so I...

  • RE: Writing to sysjobhistory

    Why not just change the "On failure action" for the step to be "Goto the next step" instead of "quit the job reporting failure" (this is on the Advanced tab...

  • RE: tables marked for replication

    Have a look at

    sp_helparticle @publication = 'publication'

    where 'publication' is the name of your publication.

    Alternatively, you can use table sysarticles to see all table that...

  • RE: tables marked for replication

    Have a look at

    sp_helparticle @publication = 'publication'

    where 'publication' is the name of your publication.

    Alternatively, you can use table sysarticles to see all table that...

  • RE: DTS packages issues!

    In SQL Server Agent create a new job. In that job create 2 steps - one for each of the packages. The job steps will both be type...

  • RE: sql 2000 backup schedules, dts schedules - where stored

    DTS packages are scheduled using SQL Server Agent.

    The tables you need to look at are sysjobs and sysjobschedules (both in MSDB).

    You may find sp_help_job and sp_help_jobschedule useful as...

  • RE: SQL 2000 startup parameter

    I don't think so but you could use the Server Network Utility to disable all protocols. This should mean the only option for connections is Shared Memory which only...

  • RE: SQL 2005 & 2000 instances on same box & SP''''s

    There is no need to worry about using differeny directories. By default, the common files for SQL 2000 are in "C:\Program Files\Microsoft SQL Server\80" and the common files for...

  • RE: Question of the Day for 21 May 2007

    It would be more accurate to include the name of the schema (column TABLE_SCHEMA) in the query. There is potential with the solution for tables in different schemas to...

  • RE: Restrict Agent Jobs

    You cannot deny a sysadmin access to any database object - they are allowed to see and doing anything they see fit. Hence, even if you use the DENY...

  • RE: Restrict Agent Jobs

    There is no need to deny access - if you are not a sysadmin you can only see your own jobs anyway.

  • RE: Login failed, Error:18456

    Are the passwords for x\a and y\a the same ? If they are, you will be able to connect because of a feature of windows called passwthrough authentication (i.e....

  • RE: Getting the JOB_ID from within a Job

    This is easily done using SQL Server Agent Tokens (have a look at sp_add_jobstep in Books Online).

    In your job step, you can get the job name using the token [JOBID]

    e.g.

    Declare...

Viewing 15 posts - 1,021 through 1,035 (of 1,222 total)