Forum Replies Created

Viewing 15 posts - 106 through 120 (of 286 total)

  • RE: bcp question

    Jeff Moden (9/30/2010)


    SQL_Quest-825434 (9/24/2010)


    sqlapprentice (9/24/2010)


    sjimmo (9/24/2010)


    The problem lies in that fact that xp_cmdshell does not recoginize lang windows paths but we can still use shortend path names with tilde (~)...

  • RE: bcp question

    Jeff Moden (9/30/2010)


    SQL_Quest-825434 (9/24/2010)


    sqlapprentice (9/24/2010)


    sjimmo (9/24/2010)


    The problem lies in that fact that xp_cmdshell does not recoginize lang windows paths but we can still use shortend path names with tilde (~)...

  • RE: bcp question

    sqlapprentice (9/24/2010)


    sjimmo (9/24/2010)


    The problem lies in that fact that xp_cmdshell does not recoginize lang windows paths but we can still use shortend path names with tilde (~) in them.

    This is...

  • RE: bcp question

    Any ideas whats wrong ? 😉

  • RE: bcp question

    Hello,

    when I use this:

    declare @sql varchar(max)

    set @sql = '"C:\Program Files\Microsoft SQL Server\90\Tools\Binn\BCP.exe" "SELECT top (1) [Deadlockgraph].query(''/TextData/deadlock-list'') FROM dbname.dbo.tablename" queryout d:\xmlfile.xdl -T -c -q'

    exec master..xp_cmdshell @sql

    this is the error:

    Msg 214,...

  • RE: SQL Server blocking

    gmamata7 (9/20/2010)


    Hi,

    I would like to have a script to monitor blocking. The script should run every 2 mins and if it finds the blocking, it should send an email to...

  • RE: Log Shipping

    GilaMonster (9/20/2010)


    AndrewSQLDBA (9/20/2010)


    I was experiencing the chain being broken when a full backup was taken.

    Andrew, there's something else happening that's breaking the log chain, because full backups do not.

    Perfect...

  • RE: Log Shipping

    GilaMonster (9/20/2010)


    Full backups do not truncate the transaction log. They do not break log shipping.

    Hello Gail,

    I cannot understand this "They do not break log shipping" as I am...

  • RE: Log Shipping

    AndrewSQLDBA (9/20/2010)


    Hello Everyone

    I am performing log shipping between two boxes. But I have had to write the code for the secondary box because the secondary box is in a DMZ....

  • RE: Increase buffer size programmatically in SQL 2000 using T-SQL

    It can be done via a registry setting and, yes, that CAN be done via undocumented T-SQL sprocs

    Jeff,

    Can you quote the how this can be done.. just curious to...

  • RE: Windows Group Membership Checker

    Is there any reason of using Variables and not using Temp tables ?

  • RE: Reorganize and rebuilding of indexes, transaction log growth

    SqlServerLover (8/21/2010)


    One of our DBA says that she does not do reorganizing and rebuilding of indexes on daily and monthly schedule througth maintainance plan, because it will grow the...

  • RE: Could not open error log

    twebster-856509 (8/22/2010)


    Hey Guys

    i am at loss, im getting the following error message on one of our SQL Servers sitting on a clustered SQL environment, this error has only started...

  • RE: Restoring from one instance to another...

    just to add 50 Cents more to what george mentioned:

    The restore would fail if it is not given exclusive access.

    Add this before your restore:

    alter database db_name_to_restore

    set single_user with rollback immediate

    waitfor...

Viewing 15 posts - 106 through 120 (of 286 total)