Viewing 15 posts - 6,076 through 6,090 (of 9,643 total)
Check out this article, http://www.sqlservercentral.com/articles/TSQL/62867/ as it addresses this issue.
February 6, 2009 at 7:00 am
You need to check the data_type column in information_schema.columns for IMAGE or varbinary and when varbinary then if the character_maximum_length = -1.
February 6, 2009 at 6:52 am
Sounds like something you should be doing within Excel with VBA, so an Excel site may be a better place to ask the question.
February 6, 2009 at 6:44 am
This works. There may be a more efficient way, but now you will be on the front page of "Active Threads" again too.
SET DATEFORMAT dmy
DECLARE @lookup TABLE
...
February 6, 2009 at 6:41 am
Cool. Thanks for posting what you found. I love it when I learn something new.
February 5, 2009 at 10:36 am
As I've read through the responses a common theme has been that people already know what is right and wrong or moral or ethical, yet can someone provide a definition...
February 5, 2009 at 9:00 am
I don't know about order, but you do not need to reorganize and rebuild, do one or the other, and there are scripts available here and other sites for determining...
February 5, 2009 at 8:46 am
The one thing I understand about UNION and UNION ALL is that UNION ALL should perform a bit better because it does not have to eliminate duplicates (sort and compare)...
February 5, 2009 at 8:36 am
A block occurs when a resource has been locked by an process and another process with an incompatible lock type attempt to acquire a lock on the same resource. ...
February 5, 2009 at 8:22 am
I don't believe that there is a way to do this in a Matrix.
February 5, 2009 at 8:15 am
First I am going to suggest that you read this article[/url] as it addresses some things you are doing in your trigger that are not best practices.
Secondly, can you...
February 5, 2009 at 8:05 am
Peso (2/5/2009)
I don't think you need a recursive function for this.Please post your table structure and some proper sample data.
Also post your expected result.
Seconded
February 5, 2009 at 7:15 am
Can you post the DDL and sample data so we can possibly try to duplicate the error and test any solution?
February 5, 2009 at 7:10 am
Here are a couple of links that may help you:
http://support.microsoft.com/default.aspx/kb/325197
http://support.microsoft.com/kb/273972
It sounds like the second one may be more like your issue.
February 5, 2009 at 7:07 am
DT_NTEXT is the SSIS equivalent to nvarchar(max) which is what you want to use in SQL Server for converting an ACCESS memo column because ACCESS uses UNICODE.
February 5, 2009 at 6:58 am
Viewing 15 posts - 6,076 through 6,090 (of 9,643 total)