Forum Replies Created

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

  • RE: Cannot Create 2012 database

    Enable and start that service first. Then try connecting to MAINPC\SqlExpress using SSMS 2012.

  • RE: JobName Not found error

    That still does not resolve the issue of someone having a job_id parked in some code somewhere and that job_id ceasing to exist when a job is dropped and recreated....

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

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

  • RE: FLOAT vs DECIMAL..

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

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

  • RE: .tbl file Execution

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

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

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

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

  • RE: Cannot enable Lock pages in memory

    32-bit? Did you enable AWE?

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

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

    Did you install Express Edition?

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

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

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