Forum Replies Created

Viewing 15 posts - 3,466 through 3,480 (of 8,761 total)

  • RE: FullText Index on Image

    torfi (7/13/2016)


    Takk, takk Eirikur. This was a great relief. I've been struggling with this problem nearly a week :w00t:

    Ekkert mal

    ๐Ÿ˜Ž

    You are welcome

  • RE: Columns to row

    Phil Parkin (7/13/2016)


    Eirikur, is your test database really called 'TEEST'? ๐Ÿ™‚

    Yees

    ๐Ÿ˜Ž

  • RE: Columns to row

    Quick suggestion

    ๐Ÿ˜Ž

    USE TEEST;

    GO

    SET NOCOUNT ON;

    IF OBJECT_ID(N'dbo.Test') IS NOT NULL DROP TABLE dbo.Test;

    CREATE TABLE [dbo].[Test](

    [PK] [int] IDENTITY(1,1) NOT NULL,

    [COLUMN1] [nvarchar](50) NOT NULL,

    [COLUMN2] [nchar](10) NULL,

    [COLUMN3] [nchar](10) NULL,

    [COLUMN4] [nchar](10) NULL,

    CONSTRAINT [PK_Test] PRIMARY...

  • RE: FullText Index on Image

    torfi (7/13/2016)


    Thanks for the advise put it didn't change anything. Now I created the index like this:

    CREATE FULLTEXT INDEX ON MalBokunSkyrsla

    ( Skjalid TYPE COLUMN Filextension Language 1039) KEY...

  • RE: Get start and end date row by row calculation based on duration

    Quick suggestion towards a SQL Server 2008 solution, which is fine on smaller sets but may need to be improved for large sets. If you are on SQL Server 2012...

  • RE: FullText Index on Image

    GSquared (7/12/2016)


    NVARCHAR won't hold RTF files, just the text. I would expect VARBINARY instead of IMAGE, for RTF files.

    This is wrong, NVARCHAR and VARCHAR will hold RTF files just...

  • RE: sp_rename - ERROR

    SQL!$@w$0ME (7/12/2016)


    I would like to recall this post. I was running under wrong database.

    Don't worry about removing it;-)

    ๐Ÿ˜Ž

    Suggest you look into colour coding the connections in SSMS and paying attention...

  • RE: Logon Banner for SSMS

    peden (7/12/2016)


    I have a requirement to display a "banner" with a warning message every time somebody "logs on to the database". I looked into possibly implementing a logon trigger,...

  • RE: SQL Prove Memory Pressure - High Buffer Cache Hit Ratio but Low Page Life Expectancy

    sqld-_-ba (7/12/2016)


    Our production server (VM + SAN) has 32 GB of RAM, the database size is ~80GB. The application uses TempDB heavily - disk is hit ~100 MBps both reads...

  • RE: FullText Index on Image

    Quick question, why are you using IMAGE data type and not NVARCHAR?

    ๐Ÿ˜Ž

  • RE: FullText Index on Image

    torfi (7/12/2016)


    Iยดm trying to create FullText Index on Image field witch contains text in rich text format. Iยดm from Iceland and we use several characters based on our language like...

  • RE: Parsing Non-Standard String into a Standard Format

    joshdbguy (7/11/2016)


    This is fantastic, thank you!

    You are very welcome.

    ๐Ÿ˜Ž

  • RE: SSMS search/replace and regex

    These changes have been slightly annoying but looks like they are slightly improving with each release, make certain you have the latest release of SSMS.

    One particularly annoying thing was...

  • RE: Setting up a new server

    Quick though, NUMA node 2 only has 4 cores, possibly that should be your maxdop limit.

    Depending on the type of workload I normally set the Cost Threshold for Parallelism...

  • RE: Dax Measure Formula Query

    If I understood correctly this could be a solution

    ๐Ÿ˜Ž

    Foreign Sales X:=CALCULATE

    ( SUM(Sales[SalesAmount])

    ,ALL(Sales)

    ,FILTER(ALL('Market'),'Market'[Market]<>"Ireland")

    )

    Domestic Sales X:=CALCULATE

    ( SUM(Sales[SalesAmount])

    ,ALL(Sales)

    ,FILTER(ALL('Market'),'Market'[Market] = "Ireland")

    )

Viewing 15 posts - 3,466 through 3,480 (of 8,761 total)