Viewing 15 posts - 4,486 through 4,500 (of 9,643 total)
Bruce W Cassidy (8/4/2009)
Bob Hovious (8/4/2009)
Or we could just go back to flat files. Screw relational AND hierarchical databases.
[font="Verdana"]Here's a suggestion: we could come up with a...
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
August 4, 2009 at 3:55 pm
It would be something like this (I might not have it perfect):
[bit_val]==False ? Null(DT_BOOL) : [bit_val]
If the datatype of the bit column is bool you may have to do a...
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
August 4, 2009 at 2:55 pm
I don't know if you can do this with FP 2.6, but using the OLEDB provider you may be able to do a select statement as your source and explicitly...
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
August 4, 2009 at 1:53 pm
What OS (XP, Vista, Server 2003, Server 2008)?
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
August 4, 2009 at 12:21 pm
Perhaps if you posted actual table structures so your example matches your original explanation we might be able to help. Please read the first article linked in my signature...
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
August 4, 2009 at 11:25 am
SQL Server doesn't care about white space so yeah you can do that with any function as long as the CASE or inner function returns the right data type for...
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
August 4, 2009 at 10:15 am
Here are some resources about why you should not shrink:
http://www.sqlskills.com/BLOGS/PAUL/post.aspx?id=a2b9f8a7-ec99-43a5-b365-40143cbb9180
http://www.sqlskills.com/BLOGS/PAUL/post.aspx?id=08f8fcc0-8ec7-4403-8257-2d6bf6293e73
http://www.sqlservercentral.com/articles/64582/
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
August 4, 2009 at 10:12 am
No attachment.
Do you have a DDL trigger defined that should have caught this and didn't?
You should have a row in the Default Trace for this. IT would show as...
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
August 4, 2009 at 10:08 am
Check out joins in BOL. You need an INNER JOIN.
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
August 4, 2009 at 10:03 am
JC,
I wouldn't use CAST, I'd use either the LEFT() or SUBSTRING() function. This will work:
DECLARE @TestVal INT
SET @TestVal = 3
SELECT
LEFT(CASE @TestVal
...
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
August 4, 2009 at 9:32 am
You could have opened a big can of worms here. I have not had a lot of experience with ORM tools, I have used Linq To SQL in a...
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
August 4, 2009 at 8:51 am
Duplicate post. Please reply here.
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
August 4, 2009 at 8:41 am
You have 3 options:
1. Select the Allow Nulls checkbox on the Parameter setup page. This will put a checkbox next to the parameter that the user will have...
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
August 4, 2009 at 8:40 am
Elliot definitely gave you some good advice. My experience has been that you need to find a mentor and the best way to do that is to get to...
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
August 4, 2009 at 8:35 am
To the Artist formerly known as . formerly known as Bob Hovious,
I did read the article and, like I said, I reserved my judgement until reading the article. I...
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
August 4, 2009 at 8:31 am
Viewing 15 posts - 4,486 through 4,500 (of 9,643 total)