Viewing 15 posts - 8,251 through 8,265 (of 18,926 total)
Why exactly do you think you need to do this?
January 14, 2010 at 11:41 am
Don't always believe Microsoft :-).
Try this and I'm pretty sure it'll work :
Create a linked server from SQL Server to the Access DB.
Then build a SP for the source...
January 14, 2010 at 3:38 am
Please show us sample output, I have a guess at that you want but I'm not sure.
January 13, 2010 at 9:53 am
It doesn't work for me... I only get 483 messages back on google. I remember having 1-2 more than that!
January 13, 2010 at 9:46 am
If you look at the 2nd query if see a key lookup. That happens when the server uses an index to find the correct data to match the where...
January 13, 2010 at 6:52 am
That's what anaylisis services and cubes where built for.
Sharepoint might also be a solution if they need to share a lot of their work and input "changes" in the reports...
January 13, 2010 at 6:48 am
Nothing we can do about point 1 and I can't confirm without going there myself...
For point #2
http://www.codeproject.com/KB/database/DiagnoseProblemsSQLServer.aspx
January 12, 2010 at 9:50 am
Some ERPs I've worked with are installed client side. That's mostly where I'm coming from.
AS For HDs and format queries, I wouldn't worry too much about this. The...
January 12, 2010 at 7:34 am
It's not that expensive... once the data is in ram it's pretty fast.
Also if you want your program to always display exactly the data that the view/query/sp returns it's a...
January 11, 2010 at 12:55 pm
That gets a list of columns that the query will return (format only).
The where 1<2 makes sure the sql returns the columns without having to run the query at all...
January 11, 2010 at 12:10 pm
The code compiles fine with me on 2008.
The error I'm getting in 2005 is that substring requires an int for its input parameters. If you change those 2 variables...
January 11, 2010 at 11:15 am
Ya that's what I meant in my first message... but how do you do error handling in this method?
I mean once you start reenabling all the constraints, it must fail...
January 11, 2010 at 10:50 am
Jeffrey Williams-493691 (1/7/2010)
Okay - I see what I was missing the first time. Thanks.
Don't worry Jeff, that concept took about 2 hours to sink in my thick skull. ...
January 8, 2010 at 4:26 am
1 - What is slow? 2 secs per run times 1000 run is obviously a long time to wait after something. However what would be a fast run...
January 8, 2010 at 4:23 am
also one last thing to note... a covering index could make this query fly without hurting inserts too much...
create index whatever on dbo.TblName (part_number, workstation) INCLUDE (date_entered).
But again...
January 7, 2010 at 2:06 pm
Viewing 15 posts - 8,251 through 8,265 (of 18,926 total)