Forum Replies Created

Viewing 15 posts - 8,116 through 8,130 (of 22,214 total)

  • RE: SQL 2014 per Core Licensing

    Glad you found the answer. I always go back to Microsoft for licensing questions. They're going to be the ones to enforce it, so you might as well find out...

  • RE: SQL 2014 On Windows Azure

    Absolutely. Just go here to sign up for a free trial[/url]. If you have an MSDN license, you have up to $150 in credit you can play with in Azure.

  • RE: users connected to a database

    Or upgrade to 2014.

    According to MS, that column was added with 2012, so all you can do is left joins to the sys.dm_exec_requests.

    Although, you might take a look at Adam...

  • RE: How to decrease size of table/database

    If it's a one time thing, shrink it. One, two or three shrinks over the life of a database is no big deal. It's the people scheduling monthly, weekly, daily...

  • RE: Mysterious performance issue when joining a view

    The good news is, you have full optimization, so the optimizer didn't time out leaving you with a junk plan. The bad news is, yikes.

    I suspect you may have some...

  • RE: Cursors

    Either google-fu is failing me or I'm delusional about the recording of the discussion (both possible). Sorry.

  • RE: Cursors

    No, i'm sorry Stefan, I don't have a specific resource on that one. It's something that came out of multiple talks with Oracle people to get an understanding of what...

  • RE: Cursors

    To a degree, what people think of as cursors in Oracle (and maybe in other DBMS, I'm not sure) are two things, one of which we have in SQL Server....

  • RE: Foreign Key Question

    Assuming TableA is the parent to TableB and that's the parent to TableC, then your delete order should be:

    TableC

    TAbleB

    TableA

    If you try anything else, you'll get referential constraint errors, as it...

  • RE: Data Missing In Database

    Data can be cached on the servers outside SQL Server, then the queries against SQL Server won't ever show that data. But that's the only thing I can think of...

  • RE: Does running multiple SQL queries in the same SP cause latency ?

    isuckatsql (5/15/2014)


    "By the way, just we're clear, dbo.cb is an indexed view? What's the key value on?"

    dbo.cb is a Table not am Indexed View.

    The primary key is ID.

    Thanks

    Then where are...

  • RE: List of sql statements that makes dml or ddl to particular table. How to know ?

    You can get some idea of what's accessing it by querying sys.dm_exec_query_stats and combining that with sys.dm_exec_sql_text and looking for your particular table. But, that's only going to show the...

  • RE: Sql Profiler - 2008R2

    And don't use the Profiler gui against a production server. It can add to your problems because it buffers data in a different way than server-side trace.

  • RE: Sql Profiler - Duration

    Sure, the duration in SSMS includes the time it takes to move the query and the results across the network. Trace and extended events just measure the time it takes...

  • RE: Schema bound views and indexes

    mssqlsrv (5/15/2014)


    I am doing the rebuild process once only.

    If I don't drop the views and indexes which are schema bound to table,

    Will that affect my insert statements on table?

    Yes, it...

Viewing 15 posts - 8,116 through 8,130 (of 22,214 total)