Forum Replies Created

Viewing 15 posts - 16 through 30 (of 39 total)

  • RE: Copy Jobs between servers

    you can create a script of the existing job by right clicking on the job, then 'All Tasks' the Generate SQL Scripts.

  • RE: clustering

    When implementing a 4node cluster, you may also consider your OS. I think Win2K Advanced Server supports only up to 2node. You have to go to Datacenter to...

  • RE: Auto Shrink - When does the shrink db execute?

    SQL Server will try to shrink the files when found out that the files has about 25% of free space during its periodic checks (checkpoints). It also reduces the...

  • RE: Not in

    quote:


    I wonder if anyone can help me decided the best coding to choose for this job

    Insert into tablec

    Select a.col1, a.col2, b.col1, b.col2...

  • RE: Scheduling DTS package

    what is the package trying to accomplish?

    I run into similar problem when trying to call a oracle script using sql+ from DTS package. I forgot 'exit' command...

  • RE: Error 3624

    I think the error is undocumented. You may want to send the erorlog together with the stack dump file to Microsoft.

  • RE: Need a more efficient DTS package

    if the table is small, then dts package should be ok, but you may run into issues in the long term.

    if you have only select privilege on the...

  • RE: BCP or DTS

    I prefer using bcp specially when inserting millions of rows.

  • RE: identity column

    he deleted all the rows, so i dont see any problem with reseeding it to 1.

  • RE: procedure failing when called from DTS

    I am no very sure but I think temp tables are not permitted on the DTS packages.

    you can verify it for yourself.

  • RE: insert statement

    look for any process that is blocking your transaction.

  • RE: SELECT INTO and IDENTITY columns

    you may want to change the way you are recreating your table. try creating the target table schema with your additional identity column first, then move the data using 'insert...

  • RE: Filegroups fun

    I would suggest to put the indexes back once all the data are loaded. doing it this way will yield better performance.

  • RE: shrink logs

    I already encounter the same problem and what I did is I shrink the file in a small chunk. On my case, I shrink it by 1GB at a...

  • RE: database logs

    quote:


    Is there a way to check what happened to a specific database at a particular time? Are there any logs? ...

Viewing 15 posts - 16 through 30 (of 39 total)