Forum Replies Created

Viewing 15 posts - 1,981 through 1,995 (of 2,387 total)

  • RE: Parallelism and lock problem

    Run sp_configure 'max degree of parallelism ', 2 in your case to limit 2 processors to use in parallel plan execution at system level.

    In order to get more dead lock...

  • RE: Concatenate

    Use xp_cmdshell to run DOS command "copy a.txt + b.txt c.txt" to create concatenate file c.txt and then run the DTS package.

  • RE: Maintenance Plan VS Dump Database

    Make sure there are no insert/delete/update activites to your user database during your test.

  • RE: EXCEPTION_ACCESS_VIOLATION

    EXCEPTION_ACCESS_VIOLATION comes mostly from application bugs. I would send result of sqldiag.exe and the .dmp file to microsoft. You wouldn't be charged if it really is a bug.

  • RE: Maintenance Plan VS Dump Database

    I tested backup of "pubs" database with both maintenance plan and manually backup and both backup files have exactly same size.

    The only possible cause I could think in your case...

  • RE: sort (union tables) desc

    Run this.

    Select * from (

    Select equipno,activitydate,activitytime from Table1

    Union all

    Select equipno,activitydate,activitytime from Table2

    Union all

    Select equipno,activitydate,activitytime from Table3

    Union all

    Select equipno,activitydate,activitytime from Table4

    ) as k Order by Activitydate desc ,activitytime desc

  • RE: Maintenance Plan VS Dump Database

    Check whether you have database optimization job scheduled to run prior the database backup job in maintenance plan.

  • RE: DTSRun utility

    Basically, there is no difference except you don't have to add parameters for login and password. For details, See BOL "dtsrun Utility".

  • RE: Importing from Excel with date as table name?

    You have to add bracket [] to your table name if you could do it in the wizard. For example.

    select * from 31-01-2001 will failed but select * from [31-01-2001]...

  • RE: SQL Server Memory Problems

    What issues do you have after seeing memory is consumed by SQL Server? Any other applications run in same server?

    SQL Server memory allocation has benn configured dynamically to use all...

  • RE: Performance Monitor Problem

    What do you mean reboot SQL Server? Do you reboot the machine or just restart SQL Server?

    You only need to restart SQL Server (SQL Server and Agent services).

    Stop SQL...

  • RE: TempDB is Full Error

    Beath,

    Your TEMPDB is too small in both data and log files. I would suggest to increase them to 200/100MB as starting and monitor the usage for later adjustment.

    As John...

  • RE: DTSRun utility

    Have you tried to use /E parameter run packages under windows authentication?

  • RE: Restore both *.bak and *.trn

    There is no difference in restoration of database backup/transaction log backup between your original and new servers. You just need to restore database and logs with option "norecovery" untill...

  • RE: New View cannot be added without error

    Can you post the script that you used to create the view?

Viewing 15 posts - 1,981 through 1,995 (of 2,387 total)