Viewing 15 posts - 6,781 through 6,795 (of 9,643 total)
Can you post the VB.NET code that is attempting to connect to a database?
What authentication method did you specify when installing SQL Server Express, mixed or Windows?
What OS is...
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
December 1, 2008 at 7:04 am
Have you considered replication? Express can be a subscriber and based on what you are saying you don't need to be able to write to the Express database.
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
December 1, 2008 at 6:56 am
Do you have the option of SQL Server 2008? SQL Server 2008 introduces the Filestream data type which is designed for applications such as yours.
If you cannot use 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
December 1, 2008 at 6:55 am
I agree with Tony, and others, that you need to evaluate all options and choose those which create the best application. I used to be a do it all...
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
December 1, 2008 at 6:51 am
Grant, glad there were no serious injuries. Another reason why I heat with oil. Even the past couple of years:P
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
December 1, 2008 at 5:01 am
The INTO needs to go immediately after the select list and before the from, so your code would need to be this:
select
account.nameof...
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
November 29, 2008 at 10:01 am
It depends on what you want to do. My personal preference is to use an identity column as the primary key which I use in relationships and for updates...
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
November 29, 2008 at 9:53 am
Is that login an administrator on the PC? If not you would need to have granted that login access to the SQL Server explicitly.
Also, the SQL Server Agent service...
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
November 29, 2008 at 9:42 am
GilaMonster (11/29/2008)
Jeff Moden (11/29/2008)
GilaMonster (11/29/2008)
Though, if you look, most of those certs are not SQL related...
True enough... but they are suppose to imply the ability to think and 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
November 29, 2008 at 9:37 am
There are 2 ways to create a temp table.
Create Table #temp
(
colA int,
colB...
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
November 29, 2008 at 9:35 am
Try converting the SUM(si.Qty) to a float as well. That shoul dnot be necessary, but I can't think of any reason why the code would not return a decimal...
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
November 29, 2008 at 9:29 am
GilaMonster (11/29/2008)
Jack Corbett (11/22/2008)
GilaMonster (11/22/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
November 29, 2008 at 9:26 am
barb.wendling (11/29/2008)
The command I executed to stop the trace:
declare @TraceID int
exec sp_trace_setstatus @TraceID, 0
The result:
Msg 214, Level 16, State 3, Procedure sp_trace_setstatus, Line 2
Procedure expects parameter '@traceid' of type 'int'.
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
November 29, 2008 at 9:24 am
Lynn,
Yes you are right, I actually don't use views all that often and wasn't sure if a CTE could be used in a view. Then I got an error...
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
November 28, 2008 at 2:41 pm
It depends. I'd use a temp table or table variable if I am updating/deleting data from that set of data or accessing the data multiple times and now 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
November 28, 2008 at 2:21 pm
Viewing 15 posts - 6,781 through 6,795 (of 9,643 total)