Viewing 15 posts - 2,236 through 2,250 (of 6,486 total)
Start with the basics: make sure to spend some time in SQL Express, getting some good indexing going on the tables, so as to "help" whatever views and/or queries you...
November 26, 2008 at 6:12 pm
The biggest gains you get out of converting would be to move your queries to executing from the server, and not from the local Access instance. If you simply...
November 26, 2008 at 2:40 pm
Chris Morris (11/26/2008)
I'll test it for speed tomorrow using a permanent table. A whole minute for returning 30,000...
November 26, 2008 at 2:32 pm
nishant.sagar (11/26/2008)
November 26, 2008 at 2:30 pm
The message is telling you the fix: you cannot use
Insert MyTable
Select *
.....
You need to explicitly list out the columns you want to insert into. In other words:
Insert...
November 26, 2008 at 2:17 pm
...and - we're doing it again. By virtue of this thread alone - we're HIGHLIGHTING the "ugly threads" which mean they get more facetime, and (probably) more answers than...
November 26, 2008 at 11:56 am
I'm no specialist in 2007, but if you click on the "office" icon (top left corner), you should get a "manage" option, which then gets you to the compact and...
November 25, 2008 at 7:26 pm
You have to be careful with ident_current, since it
Returns the last identity value generated for a specified table or
view. The last identity value generated can be for any session...
November 25, 2008 at 3:06 pm
Lynn Pettis (11/25/2008)
November 25, 2008 at 12:12 pm
Steve Jones - Editor (11/25/2008)
November 25, 2008 at 10:33 am
Lynn Pettis (11/24/2008)
Matt Miller (11/24/2008)
November 24, 2008 at 10:07 pm
There was a very similar thread to this a little while back. You might care to do a search using the SSC google search box (top right on most...
November 24, 2008 at 11:53 am
I'd tend to agree with smunson. Once you convert the data to SQL Server, you could use something real-time like triggers to allow you to "react" to data changes...
November 24, 2008 at 10:36 am
Jack Corbett (11/22/2008)
Matt Miller (11/22/2008)
And Jack has got the jack of of trades thing going on, covering most ares in a single bound.
Thanks, but don't forget the the second half...
November 22, 2008 at 11:36 am
In addition to the excellent info from Lynn - the biggest thing to see is that in most cases you don't "pick" the index, the query compiler picks the index....
November 22, 2008 at 11:18 am
Viewing 15 posts - 2,236 through 2,250 (of 6,486 total)