Forum Replies Created

Viewing 15 posts - 316 through 330 (of 816 total)

  • RE: Log Shipping Principles

    Can I take a full Back Uo of the Pimary Database, during Log Shipping?

    You can take full backup on primary anytime but if you restoring the log backup in...

  • RE: Configuring Database Mail

    1) is database mail enabled?

    2) if yes, then have you configured any profile to send mail?

    3) if yes, then are you able to send test mail by that profile?

  • RE: Dashboard style monitoring tools

    for this....you can configure the threshold limit for sql files and similarly threshould for physical drive OS counters which will generate the alerts/message as soon threshold limit is about to...

  • RE: Dashboard style monitoring tools

    we use litespeed...spotlight and PA(Performance Analysis)

    edit :-

    spotlight for live monitoring

    PA for analysis of past.

  • RE: combine two columns into a single column

    if you mon and year is int then :-

    select convert(varchar(20),monvalue)+'/'+ convert(varchar(20),year) as datewise, ans from yourtable

    And if mon and year are varchar then :-

    select monvalue +'/'+ year as datewise, ans...

  • RE: Who created the job?

    if even there are jobs with same name and account on other server..so what?

    I no where said that job is created with same account. What I said was same job...

  • RE: Who created the job?

    ii) i have a job which is running under a disabled windows account and still the job runs fine. How is this possible? The job owner is a disabled account,...

  • RE: Backup error

    No luck . i tried to another drive to backup database. same error ' noreoverable i/o error occurred'

    are you sure your database is online? How are you taking your...

  • RE: Backup error

    if your database is accessible and healthy then instead of taking the backup to problamatic location, you can take it to some other location( other drive).

    OR

    are you saying that...

  • RE: Backup error

    how big is your database? Do you have enough space on the disk where you putting the backup file if not then you need to amend the location as :-

    backup...

  • RE: Backup error

    is the location exist which is mentioned for backup? Seems like the path is no more accessible.

    Also not sure what do you mean by recover the backup?

    as long...

  • RE: pls provide the query for get the List of users having access to sqlserver and their roles.

    In addition to above, to check the permission for a perticular user, you can use sp_helprotect.

    For Ex. :-

    exec sp_helprotect @username='test'

  • RE: Backup & Restore

    01. Not able to restore if the structure of the drives are different. If my primary db is on D and F drives, while restoring the same database on different...

  • RE: Backup & Restore

    do you really need full backup or differential backup can be considered?

  • RE: Proc runs slow only during business hours?

    i would like to see :-

    1) If the query is using select * or select required columns

    2) any filter condition (like where) is uisng the proper candidate for filter...

Viewing 15 posts - 316 through 330 (of 816 total)