Forum Replies Created

Viewing 15 posts - 2,731 through 2,745 (of 8,753 total)

  • RE: Help with a query runs forever but returns nothing.

    Here is another option, no need to concatenate the key columns

    ๐Ÿ˜Ž

    INSERT INTO [addb20].[Target_MergeAMD4_WithData].[dbo].[ConfigOption]

    (

    [Active]

    , [ConfigOptionGUID]

    , [ConfigOptionTypePropertyId]

    ...

  • RE: linked ole objects in table

    gisles (11/14/2016)


    Yes, this is in all of them.

    Manipulating the CF files in T-SQL is not trivial, the internal format is a FAT format which can be slightly twisted to work...

  • RE: Are the posted questions getting worse?

    Brandie Tarvin (11/14/2016)


    AGGGGGHHHHHH!

    I don't know if I'm having a language barrier issue with this vendor rep or if this person is truly this clueless.

    VendorRep: Make sure to restore this copy...

  • RE: SQL complex join with One to Many relationships

    raymak (11/14/2016)


    Thank you. ๐Ÿ™‚

    You are very welcome.

    ๐Ÿ˜Ž

  • RE: sp_configure slow to apply

    adb2303 (11/14/2016)


    Hi,

    Thanks for the response.

    SQL Server version

    Microsoft SQL Server 2008 R2 (SP3) - 10.50.6220.0 (X64) Mar 19 2015 12:32:14 Copyright (c) Microsoft Corporation Enterprise Edition...

  • RE: sp_configure slow to apply

    adb2303 (11/11/2016)


    Hi,

    I have just upped the cost threshold for parallelism to 50 on two of our test servers:

    SP_CONFIGURE 'advanced', 1

    GO

    RECONFIGURE WITH OVERRIDE

    GO

    SP_CONFIGURE 'cost threshold for parallelism',50

    GO

    RECONFIGURE WITH OVERRIDE

    GO

    SP_CONFIGURE

    This took 4m33s...

  • RE: Stolen Server Memory and Database Cache Memory

    Jose Marcelo Dias de Oliveira (11/14/2016)


    Eirikur Eiriksson (11/12/2016)


    Jose Marcelo Dias de Oliveira (11/10/2016)


    Hi

    I have the same behavior in 2 SQL Servers where Stolen Server Memory and Database Cache Memory counters...

  • RE: Restore trans log(s) from vss snapshot-based backuo

    124420294 (11/14/2016)


    sql server 2016.

    if sql 2005 support transaction log roll forward, I think, it should be also supported for 2016.

    A VSS file backup is not the same as an...

  • RE: RBS folders are reaching 200GB

    hurricaneDBA (11/14/2016)


    Hi everyone

    I hope you're all doing great

    We've implemented SP 2013 using SQL server 2012 with file streaming enabled and RBS.

    Now we have over 35 databases with...

  • RE: MICROSOFT SQL SERVER LICENSE TERMS

    IT researcher (11/14/2016)


    As i said earlier "In the license terms under the โ€˜Scope of Licenseโ€™ there mentioned โ€œYou may not publish the software for others to copyโ€."

    Which is not...

  • RE: Find column values with Pattern

    Another thing to pay attention to is the cost of using COUNT, it implies that the whole table must be scanned and aggregated, much heavier on the database than using...

  • RE: Find column values with Pattern

    John Mitchell-245523 (11/14/2016)


    Eirikur Eiriksson (11/14/2016)


    John Mitchell-245523 (11/14/2016)


    OK, this query will look at all columns with data length of 15 or more and show the number of values with the requested...

  • RE: Find column values with Pattern

    Here is a query I often use, adjusted to this requirements

    ๐Ÿ˜Ž

    USE TEEST;

    GO

    SET NOCOUNT ON;

    DECLARE @PATTERN NVARCHAR(MAX) = N'INC[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]';

    DECLARE @SEARCH_TEMPLATE NVARCHAR(MAX) = N'

    UNION...

  • RE: Find column values with Pattern

    John Mitchell-245523 (11/14/2016)


    OK, this query will look at all columns with data length of 15 or more and show the number of values with the requested pattern. Beware that...

  • RE: Insert into table

    wikus (11/14/2016)


    Thank you very much for all the replies.

    You are very welcome.

    ๐Ÿ˜Ž

Viewing 15 posts - 2,731 through 2,745 (of 8,753 total)