Forum Replies Created

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

  • 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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Memory Clerks Discrepancy

    Is your system running NUMA of any flavor?

    Does this yield multiple rows?

    SELECT [type],

    [name],

    memory_node_id,

    ...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • 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,

    ...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • 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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • 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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • 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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • 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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • 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?

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • 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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • 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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • 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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • 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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • 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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Memory Clerks Discrepancy

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

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Strange error, cannot script out jobs from SQL.

    Check the owner of the job(s) in querstion. It may be owned by an SID that does not resolve to a valid login which could be giving SMO heartburn.

    SELECT ...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

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