Forum Replies Created

Viewing 15 posts - 106 through 120 (of 617 total)

  • RE: New SSRS 2008 R2 installation

    Sounds like a classic "double hop" problem. Read this and see if it helps:

    http://www.sqlservercentral.com/articles/Double+Hop/76743/

  • RE: Continuing career with SQL

    They do recommend that you have a few years of experience but it certainly does not have to be SQL 2005. In fact if I remember correctly they want...

  • RE: Changing Identity Columns

    L' Eomot Inversé (10/22/2012)


    crussell-931424 (10/22/2012)


    The effective result is different for a table that has had records from a table that has never had any records. Don't know why. It just...

  • RE: Changing Identity Columns

    john.arnott (10/21/2012)


    Good topic for a follow-up QOD (hope I don't steal any thunder here):

    If the code presented had one more statement amnd asked for the max(Ident)...

    CREATE TABLE IdentTest

    ( Ident...

  • RE: Query plan with a total cost of over 600%

    Ok, I apologize for being lazy. My only excuse is that I was busy and being stupid. :hehe:

  • RE: Query plan with a total cost of over 600%

    Plan Explorer?

  • RE: GO Part 2

    SQL-DBA-01 (10/8/2012)


    The question was not clear at all...at a surface while using 'notgo', the entire script should prone to a failure..

    Please read the explanation and the previous 79 posts. ...

  • RE: Active flag on IP Addresses flag of TCP/IP Properties in Configuration Manager

    The Dynamic Port is set to blank for all IPs including IPAll on both instances.

    The default instance is using port 1433 on all IPs. The named is using 4322...

  • RE: Practice exam for 70-451

    Thanks! I saw several of those type questions in the flash cards and didn't really figure they would show up in the exam. Of course I did see...

  • RE: Practice exam for 70-451

    Has anyone used Transcender exams? I tried the sample exam and was fairly impressed. Has anyone tried them then taken the exam? Does the question difficulty/style match...

  • RE: Data cache DMV

    So should this work? Or are there any exceptions I should take into account?

    SELECT database_id, COUNT(1) AS page_in_use FROM sys.dm_os_buffer_descriptors GROUP BY database_id

  • RE: Confirm an install is using a MSDN license

    Thanks. That's pretty much what I thought. Now I just need to convince my boss.

  • RE: Transactions

    L' Eomot Inversé (9/25/2012)


    Good question.

    Nice blg entry too, apart from "BACKUP/BACKUP" instead of "BACKUP/RESTORE".

    +1

    I have you followed but for whatever reason didn't get an email about the new post. ...

  • RE: Inner Join

    sknox (9/26/2012)


    For a deeper understanding of what's going on, try this code:

    CREATE TABLE #TABLE1

    (

    Col1 INTEGER

    ,Desc1 char(3)

    )

    CREATE TABLE #TABLE2

    (

    Col2 INTEGER

    ,Desc2 char(3)

    )

    INSERT INTO #TABLE1...

  • RE: Log file is Full

    Yes. In full recovery mode you MUST run log backups in order to clear the log. This won't shrink the log, but it will clear it so that...

Viewing 15 posts - 106 through 120 (of 617 total)