Forum Replies Created

Viewing 15 posts - 196 through 210 (of 323 total)

  • RE: Minimum Permissions needed -Maintenance Plans

    Without blowing away my existing configurations, I'd have to guess here: but it seems logical to me that you would need to be a sysadmin to be able to setup,...

  • RE: sp_add_jobstep

    DECLARE @commandtext varchar(2000)

    SET @commandtext = 'this

    is

    my

    multiline

    command'

    exec sp_add_jobstep @command = @commandtext, ...

  • RE: one more import issue

    Set your import to use the '~' as the column delimter and '*<cr>' as your row delimter. By default it will be thinking the row delimter is a <cr> or...

  • RE: extend the timeout duration

    I've had the problem too. I workaround it by selecting my answer and copy-to-clipboard before hitting submit. That way if something goes wrong, I can refresh the original post and...

  • RE: ActiveX inserting a computed date. PLEASE HELP!!!

    1. Make sure you are using a datetime data type and not a smalldatetime, because "1853/01/01" and "1753/01/01" are outside the range smalldatetime supports.

    2. Depending on your...

  • RE: Unable to restore from backup

    Microsoft have a support article on this:

    PRB: System Database Backups Cannot be Restored on a Different Build of SQL Server

    http://support.microsoft.com/default.aspx?kbid=264474

     

  • RE: Shrink File status

    DBCC SHRINKDATABASE does not show it's progress, and how quick it will go depends on how much data needs to be moved, the speed of your server, and whatelse it's...

  • RE: Data loss when using Begin Tran and Commit

    Taking a guess your app code  may have been

    EXECUTE mySproc1

    and your sproc may have been something like

    create mySproc1

    as

       BEGIN TRAN

         Insert something ...

    GO -- end of mySproc1

    If this was...

  • RE: Design Advice Wanted - Date/Time

    Stick with one datetime data typed column. Your GUI / Client Program should be responsible for enforcing that a date and time be entered. Just turn off NULLS in the...

  • RE: Truncate vs delete

    True. TRUNCATE TABLE does not shrink the size of the physcial database files on disk. It also doesn't cause your transaction log to unnecessarily grow like a DELETE Table will.

     

    There...

  • RE: Simple dba with several developers

    Take a look at Roles based security in BOL. You may want to create a developers role, or you can use the existing ones.

    If you add someone to the db_ddladmin...

  • RE: Updating table from csv file

    Definately use a temp table, import the txt file to the temp table, and manipulate your data there, then just copy it out to where you need it at the...

  • RE: Why is this happening?

    I wish... I've had to deal with a number of databases that had an initial / minimum size specified too high.

    to quote from BOL:
    The target size for data and log...

  • RE: Slow connection.

    IS your SQL Server starved of memory? or is it starving the OS of memory?

    In Enterprise Manager, right click your server, choose properties, and hit the Memory tab. Keep...

  • RE: Why is this happening?

    Randy

    Try these simple steps:

    -- Ask SQL Server to update and display file usage

    EXEC sp_spaceused @updateusage= 'TRUE'

    -- Get SQL Server to DEFRAG the data inside the files,

    -- and then...

Viewing 15 posts - 196 through 210 (of 323 total)