Forum Replies Created

Viewing 15 posts - 556 through 570 (of 1,219 total)

  • RE: Shift Column values to the left

    To continue where Sean left off:

    Or at least add a CHECK constraint:

    CHECK (NOT (len(isnull(AlternateName1, '')) = 0 AND (len(AlternateName2) > 0 OR len(AlternateName3) > 0) OR

    len(isnull(AlternateName2, '') > 0 AND...

    [font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]

  • RE: FileStream

    I don't really understand your question. Can you elaborate?

    [font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]

  • RE: Accidental DBA - Where to Start? (General Question)

    And to add to Jeff's and Gail's posts: restores. A lot of people take backups. Not everyone restore their backups, or understand how they should do in a disaster scenarios.

    There...

    [font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]

  • RE: Sql Server Authentication

    There are no such procedures or functions exposed. The entire login sequence has a couple of packets of its on the TDS specification, and the verification of SQL logins are...

    [font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]

  • RE: Trigger Issue...

    I don't really have any more ideas that I have offered previously (and in which I don't believe fully). Did you compare StartTime for the INSERT statement with the StartTime...

    [font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]

  • RE: At what point do stoplists actually start improving performance ?

    isuckatsql (9/18/2013)


    Since i don't know every new technology being developed, it is easier to remove the words that are unlikely to be searched.

    I don't think that this is a very...

    [font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]

  • RE: Trigger Issue...

    Do you make the same observations, even if you do not include the showplan events in the trace?

    [font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]

  • RE: Trigger Issue...

    I realiased that my post was a little terse, so I should try to qualify it a bit.

    Say that you have a trace which captures SP:StmtCompleted. Say that you inside...

    [font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]

  • RE: Msg 4862, Level 16, State 1, Line 1

    Can you attach your data files and your format files?

    There is a bug in the SQL Server Central software, so that backslash-n is dropped from the posts, which has serious...

    [font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]

  • RE: Trigger Issue...

    It's difficult to say exactly what is going on without access to the database, but there is an overhead of putting the rows for inserted and deleted to the version...

    [font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]

  • RE: Help On Query

    vignesh.ms (9/17/2013)


    this is very urgent somebody help...

    In addition to Sean's comment - you also help yourself by using a more descriptive subject line for your post. I've noticed that you've...

    [font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]

  • RE: At what point do stoplists actually start improving performance ?

    I am not sure why you would add 10000 stopwords. Stopwords are common words that are useless to search on. For instance words like "then", "for", "and". If you add...

    [font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]

  • RE: Since Text and NText are being deprecated, what is the best data type to use for a Full text Index ?

    The answer is that it depends on what you want to index. If you want to index texts stored as such, you use varchar or nvarchar. If you want to...

    [font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]

  • RE: Server Side trace for Blockings not working as expected!!

    In your example, there is:

    <frame line="457" stmtstart="56510" stmtend="56610" sqlhandle="0x03002b009fbde449363f36010ea200000100000000000000"/>

    This can be translated to SQL code with

    SELECT object_name(objectid),

    stmt = substring(text, 56510/2, (56610 - 56510)/2)

    FROM ...

    [font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]

  • RE: Work Files / Min Increased almost 10 fold.

    When you add an index on a table, all query plans for that table are flushed from the cache and the queries are recompiled. If you have queries on the...

    [font="Times New Roman"]Erland Sommarskog, SQL Server MVP, www.sommarskog.se[/font]

Viewing 15 posts - 556 through 570 (of 1,219 total)