Forum Replies Created

Viewing 15 posts - 2,656 through 2,670 (of 7,164 total)

  • RE: JobName Not found error

    MyDoggieJessie (12/21/2012)


    John Mitchell-245523 (12/21/2012)


    I would guess that you can't start a job remotely via a linked server. You could try using Powershell or SSIS instead. Or you could...

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

  • RE: Cannot Create 2012 database

    Sanity check before you change anything. You are trying to connect to MAINPC\SQLExpress through SSMS 2012, corrrect? Have you verified SQL Browser service is running?

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

  • RE: FLOAT vs DECIMAL..

    For $ I would recommend an exact numeric data type with the scale you need to satisfy your accounting requirements.

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

  • RE: Best way to get execution plans?

    BenWard (12/21/2012)


    ah cool. Good to know I'm not abusing the udf 🙂

    well...2000 function calls x 13 months of data per report, while not the typical abuse-pattern, in some circles it...

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

  • RE: .tbl file Execution

    What exactly does your .tbl file contain and by "execute" do you mean "import"?

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

  • RE: Best way to get execution plans?

    No worries. You're doing fine with the use of Scalar UDFs. The way you are using them is actually the only way I support their use. I just do not...

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

  • RE: Converting BLOB to different datatypes

    Not unless you can deserialize the object using a SQLCLR object to review its properties, which I highly doubt. There is no native Java capability in SQL Server that would...

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

  • RE: FLOAT vs DECIMAL..

    Comparing FLOAT and REAL to DECIMAL and NUMERIC is not really fair. The former are approximate numeric data types and the latter are exact numeric data types. I am leaving...

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

  • RE: Cannot enable Lock pages in memory

    32-bit? Did you enable AWE?

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

  • RE: CTE Usage

    The CTE syntax itself does not require a leading semi-colon. Rather the preceding statement must be terminated with a semi-colon.

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

  • RE: Connect to other Server types other than DB Engine

    Did you install Express Edition?

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

  • RE: Best way to get execution plans?

    BenWard (12/17/2012)


    Hello,

    I have a database used for reports that has a bunch of scalar functions on it that generate assorted record counts etc. Scalar functions we know are inefficient but...

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

  • RE: Performance wise (view or Temp Table )Which one is better

    Regular views offer nothing from a performance standpoint. Views are simply replaced by their definition in the query submitted for execution and then optimized as if the query submittor had...

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

  • RE: Memory Settings Help Please

    Locking pages in memory is definitely something to consider enabling if you are seeing Windows trim the working set from SQL Server. If this were happening you would see sudden...

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

  • RE: Use of Parallelism.

    Have you updated your statistics recently on both databases? If statistics are up to date on one and not the other SQL Server can generate or pick different execution plans...

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

Viewing 15 posts - 2,656 through 2,670 (of 7,164 total)