Forum Replies Created

Viewing 15 posts - 136 through 150 (of 369 total)

  • RE: Database objects & version control- Best practices?

    Take a look at message 474053 which describes our method.

    http://www.sqlservercentral.com/Forums/FindPost474053.aspx

    I describe how we store each object as a separate file in the source code control system (currently Perforce, but Visual...


    [font="Arial Narrow"](PHB) I think we should build an SQL database. (Dilbert) What color do you want that database? (PHB) I think mauve has the most RAM.[/font]

  • RE: Truncate/Delete

    SA (4/14/2009)


    You can delete the data from the table which has the foreign key or you can disable constraint checks and then delete.

    So it really depends on your database...


    [font="Arial Narrow"](PHB) I think we should build an SQL database. (Dilbert) What color do you want that database? (PHB) I think mauve has the most RAM.[/font]

  • RE: searching part of word using Full Text Index

    A few things to solve your problem. All are in the BOL.

    1. to search for plurals, word variants, etc. see FORMSOF and INFLECTION.

    http://technet.microsoft.com/en-us/library/ms142566(SQL.90).aspx

    Example:

    WHERE CONTAINS(curriculum_vite, 'FORMSOF (INFLECTIONAL, skate)')This matches curriculum_vite...


    [font="Arial Narrow"](PHB) I think we should build an SQL database. (Dilbert) What color do you want that database? (PHB) I think mauve has the most RAM.[/font]

  • RE: setting up noixse words for a full text search

    In SQL Server 2005, "Noise Words", also known as "Stop Words", are global to each instance. So to have a different noise word list for a database, you'll have...


    [font="Arial Narrow"](PHB) I think we should build an SQL database. (Dilbert) What color do you want that database? (PHB) I think mauve has the most RAM.[/font]

  • RE: TSQL

    Noel McKinney (4/13/2009)


    It appears the correct answer is determined using the RAND() function.

    Best explanation yet for the correct, er, incorrect answer!:-D


    [font="Arial Narrow"](PHB) I think we should build an SQL database. (Dilbert) What color do you want that database? (PHB) I think mauve has the most RAM.[/font]

  • RE: Load data from XML files

    Jonathan Mallia (4/8/2009)


    search for OPENXML... it will probably be your final solution...

    Don't use OPENXML! Use XQuery.

    See: http://www.sqlservercentral.com/blogs/michael_coles/archive/2008/01/20/stop-using-openxml-please.aspx


    [font="Arial Narrow"](PHB) I think we should build an SQL database. (Dilbert) What color do you want that database? (PHB) I think mauve has the most RAM.[/font]

  • RE: How can I Pass a Table variable in Stored Procedure?

    You can pass the data to the stored procedure as an XML document. You should use the XML data type for the parameter.

    Then the stored procedure can perform a...


    [font="Arial Narrow"](PHB) I think we should build an SQL database. (Dilbert) What color do you want that database? (PHB) I think mauve has the most RAM.[/font]

  • RE: Ignore the ones which are NULL?

    Related to "parameter sniffing", query optimization, OPTION (RECOMPILE) and this type of "catch-all" query parameterization, check out Erland Sommarskog's "connect" entry at: https://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx?FeedbackID=244298

    Another good reason to upgrade to SQL Server...


    [font="Arial Narrow"](PHB) I think we should build an SQL database. (Dilbert) What color do you want that database? (PHB) I think mauve has the most RAM.[/font]

  • RE: TSQL

    Vijaya Kadiyala (4/1/2009)


    My Asnwer is perfectly valid i.e will display 1..6.. if we execute this query in 2000.

    We should have this question specific to the SQL Server version.

    Thanks -- Vijaya...


    [font="Arial Narrow"](PHB) I think we should build an SQL database. (Dilbert) What color do you want that database? (PHB) I think mauve has the most RAM.[/font]

  • RE: Full Text Search Thesaurus file

    Your example is exactly what the Thesaurus is for. There is no quick way to populate it. You'll have to add the terms to the Thesaurus as per...


    [font="Arial Narrow"](PHB) I think we should build an SQL database. (Dilbert) What color do you want that database? (PHB) I think mauve has the most RAM.[/font]

  • RE: Full text search

    Vijaya Kadiyala (3/31/2009)


    Hi

    Check out the below link

    http://deepakrangarajan.blogspot.com/2009/02/full-text-index-sql-2005.html

    Thanks -- Vijaya Kadiyala

    http://www.dotnetvj.com

    While it is nice to post links it would be nice if you would:

    1. Put the proper URL tags around your...


    [font="Arial Narrow"](PHB) I think we should build an SQL database. (Dilbert) What color do you want that database? (PHB) I think mauve has the most RAM.[/font]

  • RE: Full text search

    See related thread: http://www.sqlservercentral.com/Forums/Topic685529-145-1.aspx


    [font="Arial Narrow"](PHB) I think we should build an SQL database. (Dilbert) What color do you want that database? (PHB) I think mauve has the most RAM.[/font]

  • RE: Full Text Search Thesaurus file

    kavi (3/29/2009)


    The thesaurus files are in XML format with a global file (tsGLOBAL.xml) and then 18 language specific files. By default all of the files have sample XML that...


    [font="Arial Narrow"](PHB) I think we should build an SQL database. (Dilbert) What color do you want that database? (PHB) I think mauve has the most RAM.[/font]

  • RE: Full Text Search Thesaurus file

    I don't think that you want every synonym for every word in every language to be added to the thesaurus file(s).

    The thesaurus file is used for alternate names and/or spellings...


    [font="Arial Narrow"](PHB) I think we should build an SQL database. (Dilbert) What color do you want that database? (PHB) I think mauve has the most RAM.[/font]

  • RE: Extracting XML File that is stored as a text data type

    RBarryYoung (3/31/2009)


    Nice example, JohnG. Mind if I quote it in my Blog sometime?

    Sure, no problem. Glad that I could be of assistance.

    Side bar (or why I had to...


    [font="Arial Narrow"](PHB) I think we should build an SQL database. (Dilbert) What color do you want that database? (PHB) I think mauve has the most RAM.[/font]

Viewing 15 posts - 136 through 150 (of 369 total)