Forum Replies Created

Viewing 15 posts - 9,001 through 9,015 (of 22,214 total)

  • RE: How to kill Job and associaed command dynamically(through commands)

    Session ID > 50 is not a good way to determine system processes. Instead use a join to sys.dm_exec_sessions to use is_user_process something like this:

    SELECT *

    FROM ...

  • RE: sql server 2008 r2 sp1 intellisense not working

    Check the compatibility level of the database you're querying against. If it's an older version, that can prevent Intellisense from working. Other than that, ensure that it's enabled and understand...

  • RE: How to kill Job and associaed command dynamically(through commands)

    You can query sys.dm_exec_requests in combination with sys.dm_exec_sql_text to identify the query and session and then kill it.

  • RE: SCUD?

    I occasionally refer to CUD, Create, Update, Delete, when discussing the parts of ORM tools that I (sometimes) don't have problems with. Nothing in Bingle either. I think you may...

  • RE: Are the posted questions getting worse?

    rodjkidd (1/23/2014)


    Koen Verbeeck (1/23/2014)


    rodjkidd (1/23/2014)


    ...and told him to search the internet for videos of Grant.

    WHAT HAVE YOU DONE?!?

    He He - I know - can we turn the internet for a...

  • RE: Where to go from here?

    Also check at sqlpass.org both for local training and free online training.

  • RE: Where to go from here?

    Depending on your location, I'd suggest finding the nearest user group and the nearest SQL Saturday event. Those two places will enable you to begin to network with other locals....

  • RE: Administering a Data Warehouse sql server 2008R2

    From the sounds of things, you're not so much looking at data warehousing as you are the performance of the queries being used against the data warehouse. If so, I'd...

  • RE: Database in Recovery mode

    SQLRNNR (1/22/2014)


    Grant Fritchey (1/22/2014)


    praneethydba (1/22/2014)


    HI,

    I am happy to tell you, my database is up now.....

    Online now.....:-)

    Thanks a lot for your support...

    Thanks

    Praneeth

    Congrats! That's great!

    Now, run a backup.

    No, schedule regular backups and...

  • RE: Database in Recovery mode

    praneethydba (1/22/2014)


    HI,

    I am happy to tell you, my database is up now.....

    Online now.....:-)

    Thanks a lot for your support...

    Thanks

    Praneeth

    Congrats! That's great!

    Now, run a backup.

  • RE: Query for top 10 CPU utilization

    You can look at sys.dm_exec_query_stats to get an idea of CPU use on queries. But, that DMV is dependent on what is currently in cache. So queries that have aged...

  • RE: how to avoid sub queries and FUNCTIONS in where clause ?

    Your first stop must be the execution plan. You can guess at causes to performance issues, but without the execution plan, they're just guesses. And I totally agree, joining view...

  • RE: query time question

    While I don't argue with everyone's caveats, let's focus just a bit. If we're talking about a simple query:

    SELECT a.*

    FROM MyTable AS a

    WHERE a.GuidColumn = 'Appropriate value';

    And that column is...

  • RE: Autogrowth, shrink and database performance

    I'm pretty sure the express limit is the data file only, independent of the log. Documentation that I could find isn't completely clear though. Several places it says "10gb of...

  • RE: Any problem with installing SQLServer 2012 on Windows 2012?

    Been running it that way for quite a bit with no issues. My workloads aren't terribly heavy though.

Viewing 15 posts - 9,001 through 9,015 (of 22,214 total)