Viewing 15 posts - 91 through 105 (of 369 total)
I prefer to use SELECT NULL vs. SELECT * or SELECT 'x' or SELECT 1 for my existance tests. Selecting a NULL is a bit more indicative that nothing is...
September 15, 2009 at 7:25 am
See my response http://www.sqlservercentral.com/Forums/FindPost754136.aspx
to thread http://www.sqlservercentral.com/Forums/Topic751882-361-1.aspx
Note that we are using GUIDs exclusively for most of our PKs. Very similar to your application. It gives us a lot...
September 9, 2009 at 1:43 pm
In order to cast a text string to the XML datatype, the text string must be valid XML. The text column that is returned from sys.dm_exec_sql_text is not XML.
See...
September 2, 2009 at 8:02 am
Found the fix! I.e., RTFM
After installing the PDF iFilter, it is recommended that you set your system PATH environment variable to the "bin" folder of the "Ifilter" installation.
For 64-bit...
August 31, 2009 at 12:13 pm
You should be able to full-text index varbinary(max) data that is pure "text". Just specify a value of "txt" for the companion file type column.
I don't know if the...
August 28, 2009 at 8:37 am
Database size issues aside, as that is a business / environmental issue, I would still give the Adobe iFilter a try.
We are a SaaS-based company, hosting databases for our customers....
August 28, 2009 at 7:37 am
califny (8/26/2009)
Thanks. Is it any way to workaround?
None that I've found. We use XML extensively as a transport mechanism (i.e., to eliminate an extensive list of scalar parameters and/or...
August 26, 2009 at 9:13 am
See my post 768830 which has links to other Full-Text resources.
August 25, 2009 at 10:05 am
First off, you should install the 64-bit version of SQL Server 2008 on a Windows 2008 64-bit server.
Secondly, SQL Server 2008 SP1 has both a 32-bit and 64-bit version as...
August 25, 2009 at 9:57 am
You can't. It is a bug (of sorts). See the Microsoft Connect entry (265956): https://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx?FeedbackID=265956
Please vote and enter your comments.
August 24, 2009 at 7:48 am
khalprin (8/21/2009)
Thanks, that works. I'll need to read up on OPENXML
See post 774356 for a list of Microsoft white papers on XML to read.
August 21, 2009 at 2:04 pm
It depends upon what you wish to do with the XML. Just store it, "shred" it into a relational structure, etc.
In addition to the documentation in the Books Online...
August 20, 2009 at 9:59 am
Create a full-text index and use CONTAINS to search the contents of a binary file. However, you'll need to have a separate column that contains the file type (e.g,...
August 20, 2009 at 9:43 am
Thanks to all of the contributors to my post.
Lowell (8/19/2009)
noone has mentioned the TSQL bitwise operators yet. pipe (|)and carat(^) for flipping bits, and ampersand for comparisons(&)
Yes, I DO have...
August 20, 2009 at 7:47 am
Viewing 15 posts - 91 through 105 (of 369 total)