Forum Replies Created

Viewing 15 posts - 1,801 through 1,815 (of 7,168 total)

  • RE: SQL View not Exporting to Excel via DTS Package

    What does your logging say when run through SQL Server as compared to when it runs successfully through SSDT?

  • RE: Login failure

    I am happy you got to the bottom of it. I try to call these out whenever I can, it's not a knock, just pointing out the preferred syntax for...

  • RE: Memory Clerks Discrepancy

    Is your system running NUMA of any flavor?

    Does this yield multiple rows?

    SELECT [type],

    [name],

    memory_node_id,

    ...

  • RE: Job Execution Details

    OK, so not by a schedule which means something or someone besides the Agent scheduler kicked it off.

    Anything from this after adding your job name?

    SELECT j.name,

    ...

  • RE: High fragmentation of indexes

    Dung Dinh (2/28/2013)


    As your point,I should rebuild or re-organize indexes on this table after this job is done nightly.

    Yes. As often as you have a maintenance-window to keep those indexes...

  • RE: SELECT INTO vs INSERT INTO

    When you use INSERT INTO are you adhering to the requirements to achieve a minimally logged operation?

    From Books Online INSERT (Transact-SQL):

    Using INSERT INTO…SELECT to Bulk Import Data with Minimal Logging

    You...

  • RE: Memory Clerks Discrepancy

    The queries are a little off in my environments too, with clerks being about 10-15% higher. All I can think of is that clerks are operating a lower level than...

  • RE: does index also change the output?

    Jeff Moden (3/1/2013)


    Actually, the change of an index CAN very much change the result especially where UPDATEs are concerned.

    I think we covered the OP's question about SELECT statements so I...

  • RE: SQL View not Exporting to Excel via DTS Package

    Define "breaks." Do you receive an error or does the package execution succeed but no data is present in the Excel file?

  • RE: Add existing packages - bulk copy?

    Just for clarity, msdb.dbo.sysdtspackages90 is where Pakages were stored in SQL Server 2005. In SQL Server 2008 they are stored in msdb.dbo.sysssispackages.

    Here is a PowerShell script already written that needs...

  • RE: SELECT INTO vs INSERT INTO

    npranj (2/28/2013)


    Hi,

    I am trying to create a temporary table. It will contain approx 25 million rows to start with and will increase in future.

    I tried

    Option1: SELECT col1 into #tempT...

  • RE: High fragmentation of indexes

    Dung Dinh (2/28/2013)


    Hi all,

    I have a table Order with primary key ID column is uniqueidentifier data type on server B. Nightly, a synchronization job runs to synchronize orders from server...

  • RE: bcp error

    Did you get it resolved?

    A shot in the dark:

    You specified home\mssqlserver

    mssqlserver is the hidden instance name handed to default instances of some versions of SQL Server. Are you sure it...

  • RE: Application does not work with named instances?!

    shannonjk (2/26/2013)


    There is no where in the software that I know of to call out a port number but I will check with them to see if that is possible!

    If...

  • RE: Memory Clerks Discrepancy

    The 'SQL Plans' cache includes plans for both 'Ad Hoc' and 'Prepared' queries.

Viewing 15 posts - 1,801 through 1,815 (of 7,168 total)