Forum Replies Created

Viewing 15 posts - 901 through 915 (of 2,487 total)

  • RE: DTS Package Problems

    You can adjust the size of the commit by playing around with the 'Fetch Buffer Size' and 'Insert Batch Size' figures on the Options tab of the Datapump properties dialog....

  • RE: EXEC sp_start_job in ASP page

    Who owns the job? Users cannot see/execute jobs that they don't own.

     

  • RE: MSDB size rocketed

    Here's a quick way.

    EXEC sp_MSforeachtable 'sp_spaceused @objname =''?'''
     
  • RE: Flat Files

    Ok, here's a way I would probably end up doing it. This is pretty rough, I did do a bit a fiddling around to get some of the data to line...

  • RE: Any helping hand

    As mentioned in my earlier post, the main bottleneck you seem to be encountering is transferring the files to the OLAP server. There is nothing that DTS, or SQL Server...

  • RE: Any helping hand

    As mentioned in my earlier post, try using ROBOCOPY from the Windows Resource Kit.

     

     

  • RE: Importing a Variable File Name

    Check the articles over at http://www.sqldts.com about changing the text file connection.

     

  • RE: MSDB size rocketed

    Is this data, log or both? Allocated space or used space?

    Could be all you need to do is shrink the log file.

     

  • RE: Obtaining A Job Name

    You could alter your stored procedure to accept the Job ID uniqueidentifier as a parameter.

    Then in the job that calls the stored procedure, add the SQL Agent token [JOBID]. Then...

  • RE: How can I get an Excel export to look like ordinary cells?

    Best I've come up with is to put borders on the table in the report design. Make sure you use the thinnest line possible, otherwise you'll end up with huge...

  • RE: reuse a DTS job

    As long as the structure of the tables is the same, you can replace TABLE_1 and TABLE_2 with your new tables names dynamically and everything will work great. If however...

  • RE: Any helping hand

    Also, using Data Driven queries in the DTS packages will slow things down a lot. This causes the package to process data from the source in row-by-row method instead of...

  • RE: Any helping hand

    Just to make sure I'm understanding what you've posted, the total time from steps 1 to 7 is 6 hours??

    If so then I'd look at the main bottleneck in your process...

  • RE: Automate showcontig and defragment objects

    While Dan's comments are quite legitimate, you can use the WITH TABLERESULTS option on the DBCC SHOWCONTIG command to return the results in a table format. This make it easy...

  • RE: Reset indexes

    Do you mean the IDENTITY values??

    If so, check DBCC CHECKIDENT in Books Online.

     

Viewing 15 posts - 901 through 915 (of 2,487 total)