Forum Replies Created

Viewing 15 posts - 6,166 through 6,180 (of 9,241 total)

  • RE: nologging option like Oracle?

    Glenstr (1/3/2012)


    at least a transaction log backup taken before putting into simple recovery mode

    The recommendation you were given was to switch to bulk logged recovery model!

    Glenstr (1/3/2012)


    then a full database...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: SQL Server Migration

    Saggy (12/30/2011)


    Hi Guys...

    How to migrate sql server database

    for user databases, detach copy and re attcah them or back them up and restore them.

    Saggy (12/30/2011)


    and all system databases...

    you don't! You...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: DBUser Roles Script

    avoid using the SYSUSERS table, sys.database_principals should be used instead. Incidentally, you make no provision for any certificates and their mapped users that may be in use

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Connection string for SQL server

    Sumanta Roy (12/23/2011)


    Hi,

    I apologize that this question is not purely for SQL server DBA's but I need help understanding DSN entries provided in ODBC to connect to SQL server. I...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Create new folder and copy file using xp_cmdshell

    opc.three (12/22/2011)


    Sure...but how would you copy the file (without xp_cmdshell)?

    Via a VB script ran as a SQL agent job step!

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Create new folder and copy file using xp_cmdshell

    personally i find this easier to create the path

    exec xp_create_subdir 'G:\somepath\mynewfolder'

    or

    exec xp_create_subdir '\\myserver\myshare\mynewfolder'

    If the folder doesn't exist it will create it 😉

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: master DB

    Dhirju (12/22/2011)


    how to restore master database?

    Ensure you restore the model and MSDB too.

    Do you have any experience of starting\operating SQL Server in single user mode?

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Slipstream SP1 + CU2 - SQL Server 2008 R2 RTM

    slipstream is used at product install not post product install. You will have to apply the service pack as usual.

    For future reference see my article at this link[/url] detailing...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Power Outage - Now Backups to Shared Drive Fail

    daveFromIll (12/21/2011)


    We have a set up where our backups are backed up to a shared drive on a another server on a nightly basis. This was working fine until...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: LOGSHIPPING ERROR

    mahesh.dasoni (12/17/2011)


    Log are been backed up every 15 mins on primary server & same is copied and restored on DR server every 15 minutes.

    But in MSDB database(Primary server)-the table log_shipping_monitor_primary...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Problem with RDP

    To stop services remotely open the services.msc on your machine. In the top left of the services console where you see "Services (local)", right click and select "connect to another...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: How to transfer the logins and the passwords between instances of SQL Server 2005 and SQL Server 2008

    pallavi.unde (12/16/2011)


    I run the script below

    USE master

    GO

    IF OBJECT_ID ('sp_hexadecimal') IS NOT NULL

    DROP PROCEDURE sp_hexadecimal

    GO

    CREATE PROCEDURE sp_hexadecimal

    @binvalue varbinary(256),

    @hexvalue varchar (514) OUTPUT

    AS

    DECLARE...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Restricting access to SQL Server instances based on source IP or hostname?

    Chris Metzger (12/21/2011)


    Is anyone doing this? I am attempting to restrict access per instance (multiple instances per SQL Server) so that only a specific source IP or hostname can...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Using and Creating Mount Points in SQL Server

    okbangas (12/21/2011)


    A little piece of missing information: You describe some of the differences between MBR and GPT, but in my opinion you lack the most important one: MBR can only...

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • RE: Unable to remove t-log file

    khandelwal_arun (12/20/2011)


    The issue has been resloved thanks for your prompt help... 🙂

    I really appriciate your prompt and helpful response....

    Thanks,

    Care to share the resolution, it may help others in future

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

Viewing 15 posts - 6,166 through 6,180 (of 9,241 total)