Forum Replies Created

Viewing 9 posts - 16 through 24 (of 24 total)

  • RE: master..sysdatabases.status codes

    The status code contains a decimal representation of the bit mode data.

    In your case, value 28 = 4 + 8 + 16

    Which means all of the conditions below.

    4 = select...

  • RE: Script for getting the statistics of a table

    My guess is you're probably referring to the multiple rows result set.

    If so, you want to limit the query by index id type.

    Try append this clause to the query

    ...

  • RE: BCP datafile load in specific table columns

    Your BCP format file should look something like this.

    (Substitute the appropriate SQL version number and collation name)

    8.0

    1

    1 SQLCHAR 0 1024 "\r\n" 2 data SQL_Latin1_General_CP1_CI_AS

  • RE: Deletes take forever

    You can turn off logging by changing the database recovery model to 'simple', using ALTER DATABASE command.

    Not recommended during online processing window, as it affects all other processes.

  • RE: Using BCP across different collations

    1) The code page option allows you to specify the format of the output character type when you export from SQL Server, and input format when import to SQL. One...

  • RE: Bulk insert formatfile problem

    The error suggests there is problem with the destination table definition. Make sure the column name and data type match.

    It would also be helpful if you post the table definition...

  • RE: Physical file size

    1) Typically, you'd have multiple files when you have direct control of seperate physical disk devices for data placement, and for the purpose of performance. But since you're already on...

  • RE: EXECUTE PROCESS TASK - FTP Files via .CMD File

    You need to code the cmd file to something like this:

    echo open ThisFTPSite ThisPort> Tempfile

    echo MyUserName>> Tempfile

    echo MyPassWord>> Tempfile

    echo bin>> Tempfile

    echo put File1>> Tempfile

    echo put File2>> Tempfile

    echo put File3>> Tempfile

    echo...

  • RE: Trans Log Backup in Maintenance Plan is NOT deleting old log files as requested

    Deleting old backup file is one of the last step that gets executed.

    It gets executed only after all of the backup steps are completed sucessfully.

    Any prior error would prevent this...

Viewing 9 posts - 16 through 24 (of 24 total)