Forum Replies Created

Viewing 15 posts - 151 through 165 (of 189 total)

  • RE: Physical Server or a Virtual Machine?

    From MS help for the sys.dm_os_sys_info view, note the bit I have added bold highlight to - WTF!:

    virtual_machine_type_desc - nvarchar(60) - Describes the virtual_machine_type column. Not nullable.

    ValueDescription:

    None - SQL Server...

  • RE: Physical Server or a Virtual Machine?

    I just tried both versions included in the SQL from the article on my local machine which is running SQL 2008 R2 SP2 on 64bit Windows 8.1 (latest updates) and...

  • RE: Single Quotation Marks in SQL

    I know the article is this simple to highlight the issue but I assert in real life you would not do this.

    If you are doing dynamic SQL then unless you...

  • RE: SSRS In a Flash

    All of this is all well and good until you try to use it like:

    • Use custom authentication so you can use it on a web app across the internet
    • Use the...

  • RE: Find dependencies between field and sp/function

    We used a very similar code except that we output the schema, routine name and type (e.g. sp, function):

    set nocount on

    declare @SearchFor varchar (100)

    set @SearchFor = 'FieldNameForExample'

    select distinct

    object_schema_name(SO.Id) as [Schema],

    SO.[Name],

    case...

  • RE: SQL Server 2012 service accounts

    Small note when the question of the day comes through in the newsletter email all I see is:

    "For SQL Server 2012 on a stand alone server, Microsoft recommends using domain...

  • RE: Hybrid Databases

    I found myself agreeing with what you were saying in the editorial until you mentioned Reporting Services - it's so messed up (unless they've fixed it in 2012), it needs...

  • RE: Five Rules For Sucessful Conversations With DBAs

    Nowhere in my response did I say anything at all about asking for permissions etc...

    Obviously asking for sysadmin rights just because it makes life easier you should expect to get...

  • RE: Five Rules For Sucessful Conversations With DBAs

    Some of what you've said makes perfect sense.

    However on the other hand it sounds like you are saying that DBAs have a license to be complete arseholes and that "collaboration...

  • RE: Changing SQLServerCentral - Newsletter Layout

    I never read the newsletter on anything other than desktop so for me the fixed width is a pain.

    If it could have just been the old style but with less...

  • RE: FTS Near Operator

    I was caught out by words like "the", "to" etc... which I thought would not be counted by near given that common words like those are generally not considered by...

  • RE: CASCADE - 1

    Basic question designed to seem like a trick?

    This applies equally to SQL Server 2005 and 2008 not just 2008R2 and 2012.

  • RE: Parsing Parameters in a Stored Procedure

    Jeff Moden (11/2/2012)


    peter.row (11/2/2012)


    Hey Diego nice article. I understand what you meant about the implied performance concerns and I found Jeff to be very abrasive virtually to the point of...

  • RE: Parsing Parameters in a Stored Procedure

    Hey Diego nice article. I understand what you meant about the implied performance concerns and I found Jeff to be very abrasive virtually to the point of being offensive.

    Although Jeff...

  • RE: Report Builder or Reporting Services?

    When you use SSRS (the product not BIDS bad naming in the article) in a web app that you sell as a product then it has to be Report Builder...

  • Viewing 15 posts - 151 through 165 (of 189 total)