Viewing 15 posts - 5,521 through 5,535 (of 9,644 total)
Grant,
I'm reading it as 600 million rows (627,966,462) from the Full Text Engine.
I'd also be interested in the execution plan from the Coalesce function query.
You might also get better...
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
March 31, 2009 at 8:13 am
Can you post the table DDL and some test data as recommended in the first link 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
March 31, 2009 at 7:29 am
When you create your dataset, you select Command Type - Stored Procedure. This will get the parameters for you and use the correct ADO.NET command type with parameters.
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
March 31, 2009 at 7:26 am
Forgive my ignorance, but what is DSV?
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
March 31, 2009 at 7:24 am
If you are using the OLEDB Provider you need to replace the "@" with "?".
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
March 31, 2009 at 7:13 am
What is the user being used to connect using the VB app? Does the user have permissions to execute sp_SQLSMTPMail?
I typically recommend against sending email from a trigger, unless...
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
March 31, 2009 at 7:11 am
Read/Write permissions to what?
Does the person executing the procedure have permissions to manage security on the database (dbo, db_securityadmin)? If not you need to look at managing...
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
March 31, 2009 at 7:07 am
It sounds like the array is only being populated by the selected items, so if only 1 item is selected you only have 1 value in the array. Try...
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
March 31, 2009 at 7:01 am
I just wish I had a door that someone could close. I'd keep mine closed. You'd have to see our space, but we have a hall with 4...
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
March 31, 2009 at 5:04 am
Lynn Pettis (3/30/2009)
Jack Corbett (3/30/2009)
Lynn Pettis (3/30/2009)
Jan Van der Eecken (3/30/2009)
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
March 30, 2009 at 3:44 pm
Lynn Pettis (3/30/2009)
Jan Van der Eecken (3/30/2009)
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
March 30, 2009 at 3:38 pm
If you do a sp_helptext on sys.server_principals or sys.database_principals you can see that MS is only showing roles and default logins/users and the logged in user intentionally. I would...
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
March 30, 2009 at 3:18 pm
I'll chime in, can you connect to the database server from another application like SSMS?
It looks like a similar issue with a resolution can be found here
I found the link...
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
March 30, 2009 at 1:59 pm
I think you just want a LEFT OUTER JOIN. Something like this:
DECLARE @funds TABLE (fund VARCHAR(10), isopen BIT)
DECLARE @trans TABLE (fund VARCHAR(10), createDate DATETIME, ticketAmt DECIMAL(10, 2))
INSERT INTO @funds...
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
March 30, 2009 at 1:50 pm
You can use an expression in the ToolTip property and if you set it to Nothing then you will not have a tooltip. Something like this:
IIF(Fields.ColumnName.Value = "A", "Show...
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
March 30, 2009 at 12:53 pm
Viewing 15 posts - 5,521 through 5,535 (of 9,644 total)