Forum Replies Created

Viewing 15 posts - 1,216 through 1,230 (of 2,903 total)

  • RE: backup on standby sql server

    My understanding is that you can't do that. Once you put the database in 'normal mode', that recovers it and no more transaction logs can be applied. It is...

  • RE: automatic backup production DB''''s to test server

    Abhijeet,

    Please do not 'hijack' other people's posts.

    Proper practice:

    1. start your own thread.

    2. do not 'hijack' other threads.

    3. pay attention to when a thread was started...some you have posted this question...

  • RE: Testing Log Shipping for Disaster Recovery

    Abhijeet,

    Please do not 'hijack' other people's posts.

    Proper practice:

    1. start your own thread.

    2. do not 'hijack' other threads.

    3. pay attention to when a thread was started...some you have posted to were...

  • RE: Stopping log shipping temporarily

    Abhijeet,

    Abhijeet,

    Please do not 'hijack' other people's posts.

    Proper practice:

    1. start your own thread.

    2. do not 'hijack' other threads.

    3. pay attention to when a thread was started...this one is over 3 years...

  • RE: Database backup on Standy Server

    Abhijeet,

    Please do not 'hijack' other people's posts.

    Proper practice:

    1. start your own thread.

    2. do not 'hijack' other threads.

    3. pay attention to when a thread was started...this one is over 3 years...

  • RE: Switching Database state

    Please start a new thread....don't 'tag' your question onto someone else's thread. Especially one over a year old.

    -SQLBill

  • RE: DateDiff??

    This might give you a solution:

    SELECT CAST(25/24 AS VARCHAR(2)) + ' Hours' + ' and ' + CAST(25%24 AS VARCHAR(2)) + ' Minutes'

    Note: There is one space before Hours, one...

  • RE: sp_grantdbaccess from other database

    Have you tried 'fully qualifying' the name?

    databasename.owner.table

    northwind.dbo.customers

    -SQLBill

  • RE: query question

    You might have to make this a table alias....

    LEFT JOIN

    [SELECT description, id, type, call_req_id, last_mod_dt FROM act_log] A ON call_req.persid...

  • RE: Antivirus Scanning...File Exclusions...Why do it?

    Okay, you know the antivirus won't be able to scan your database files. But it will try. So, do you really gain anything from seeing all the error messages that...

  • RE: Current Date minus one???

    There are no hyphens in DATETIME datatype. Check the BOL. Quote: Values with the datetime data type are stored internally by Microsoft SQL Server as two 4-byte integers. The...

  • RE: Optional DateTime parameter stored procedure.. HELPPP!

    BTW-you don't say what problem you are having....so....

    Remember, if you have a parameter then you must input SOMETHING.

    EXEC @company_name = 'MyComp',

    @employee_name = 'Smith',

    ...

  • RE: Optional DateTime parameter stored procedure.. HELPPP!

    If a parameter can be NULL, I make the parameter default to NULL and then use a WHERE clause like this:

    WHERE (BeginDateTime >=

    CASE WHEN @BDateTime...

  • RE: Please Help!!!...moving MSSQL db

    You could change the name of the dev server database, move it to the production server, do a INSERT INTO and select all the data from the production database tables...

  • RE: Error Message

    Did you check to see if the DNS server was down at the time it failed?

    -SQLBill

Viewing 15 posts - 1,216 through 1,230 (of 2,903 total)