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.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a 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
...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
February 6, 2009 at 6:41 am
Cool. Thanks for posting what you found. I love it when I learn something new.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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)...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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. ...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
February 5, 2009 at 8:22 am
I don't believe that there is a way to do this in a Matrix.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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?
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
February 5, 2009 at 6:58 am
Viewing 15 posts - 6,076 through 6,090 (of 9,643 total)