Viewing 15 posts - 18,811 through 18,825 (of 22,215 total)
Also, is this a transactional system or a BI system? 60 columns for some of the BI systems I've seen is pretty standard.
January 8, 2009 at 12:41 pm
Vijaya Kadiyala (1/8/2009)
SQL Server performs a join between two sets of row data using the merge
join algorithm. The inputs are two separate sets of row data. Output...
January 8, 2009 at 11:39 am
Something I hadn't thought of earlier, but you might check the ANSI settings on the connection string from Access. If you use the ANSI standard settings, performance should be fine,...
January 8, 2009 at 9:31 am
Ah, then it's not going to be solved by tweaking indexes and messing with the execution plan. Something is going on in the network or with the Access app.
January 8, 2009 at 9:13 am
I don't see the execution plan...
January 8, 2009 at 8:50 am
jonathan allen (1/8/2009)
OrgName
FROM Organisation
ORDER BY OrgName
Clustered Index Scan on Primary Key - 95%
Sort (on Indexed OrgName...
January 8, 2009 at 8:40 am
The execution plan is your friend.
That will tell you what's occurring within the query.
January 8, 2009 at 8:28 am
I would put the customer information in a common table. 40 customers = 40 tables, with 40 different queries and 40 different indexes and 40 different maintenance plans... Oh, and...
January 8, 2009 at 7:32 am
Well, there are no guarantees, but I'd say, it depends on what your script is doing. Your standard, every day, every second, script that's updating a set of tables... it...
January 8, 2009 at 6:04 am
I agree with Peso.
Think about it. First, you'd need 365 seperate tables for just one year worth of data. Second, your queries would have to be changed, every single day,...
January 8, 2009 at 6:01 am
I've got SQL Server 2000, 2005 and 2008 running on one machine along with three different copies of Express. All with no issues.
My understanding is that you can install Management...
January 8, 2009 at 5:47 am
From what you've laid out, it sounds OK. Usually, when dealing with a many-to-many table like this, I let the foreign keys also define the primary key. Otherwise you need...
January 8, 2009 at 5:42 am
If the errors you hit result in a disconnection from SQL Server, there's nothing that can be done to catch or handle those errors. As for the rest, look up...
January 8, 2009 at 5:41 am
I don't understand either.
Can you show what you've tried that hasn't worked?
January 7, 2009 at 1:04 pm
It sounds like you need to get rid of the cursor and just run a query using the data in a join or possibly as part of the where clause.
January 7, 2009 at 1:02 pm
Viewing 15 posts - 18,811 through 18,825 (of 22,215 total)