473,394 Members | 1,828 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

db COnversion

Hi I have an overgrown Access APP.
I want to put it in a 64 bit environment but I need to convert it to
something, I need help on this, what is the easiest route and tools for
either SQL or VB.NET there seems a lot of syntax to be changed and far from
hiring a team of programmers I would like to know if there is a shortcut.

Thanks.
Nov 21 '05 #1
4 926
R Paulson,

I would not take to much expectations from the idea of performance benefits
by upgrading to a 64Bits environment. (In VBNet the Integer stays even
32Bits and would therefore need probably slightly more processing than now,
although the new 64Bits processors have a higher cycle times so that will
probably not be recognized)

As mostly with Microsoft software will the current software run on the next
OS version.

However going from Access to SQL server will probably give you benefit as
well as better maintenance in future with creating programs OOP and more
posibilities to get the bottle necks from your programs and optimize it for
your need.

However as I have seen in this newsgroups is there not an easier tool for
it, than hiring some developpers. Set your current programs in whatever
structured description format and start programming again.

You can as well think about using Access on your SQL server by the way.

However as mostly with Access have you as well a maintenance problem and are
you now not able to optimize it.

I hope this gives some idea's,

Cor
Nov 21 '05 #2
Cor,
Some actual information on the performance of 32bit integers on 64bit
platforms.

http://blogs.msdn.com/joshwil/archiv...28/413320.aspx
As well as 64bit integers on 32bit platforms.

Of course with Josh's specific example I would use Buffer.BlockCopy &
probably not worry about the performance...

Hope this helps
Jay

"Cor Ligthert" <no************@planet.nl> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
|R Paulson,
|
| I would not take to much expectations from the idea of performance
benefits
| by upgrading to a 64Bits environment. (In VBNet the Integer stays even
| 32Bits and would therefore need probably slightly more processing than
now,
| although the new 64Bits processors have a higher cycle times so that will
| probably not be recognized)
|
| As mostly with Microsoft software will the current software run on the
next
| OS version.
|
| However going from Access to SQL server will probably give you benefit as
| well as better maintenance in future with creating programs OOP and more
| posibilities to get the bottle necks from your programs and optimize it
for
| your need.
|
| However as I have seen in this newsgroups is there not an easier tool for
| it, than hiring some developpers. Set your current programs in whatever
| structured description format and start programming again.
|
| You can as well think about using Access on your SQL server by the way.
|
| However as mostly with Access have you as well a maintenance problem and
are
| you now not able to optimize it.
|
| I hope this gives some idea's,
|
| Cor
|
|
Nov 21 '05 #3
Cor,
FWIW: A couple more interesting "real life" links on the performance of
64bit Windows XP.

http://www.microsoft.com/windowsxp/u...loringx64.mspx

Specifically:
http://www.cakewalk.com/x64/whitepaper.asp

Unfortunately my app uses Interop so testing it under 64bit is not an option
right now. However I am looking at moving the Interop piece to be a
replacable plug in, allowing the 64bit to use something other then Interop.
My app is primarily text (XML) processing so 32-bit vs 64-Bit Integer size
is imaterial. I would expect a slight increase in performance under 64bit
due to the greater number of registers (the JIT is able to enregister more
variables) and the increased amount of memory (less disk swapping). However
my app may be IO bound...

Jay
"Cor Ligthert" <no************@planet.nl> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
|R Paulson,
|
| I would not take to much expectations from the idea of performance
benefits
| by upgrading to a 64Bits environment. (In VBNet the Integer stays even
| 32Bits and would therefore need probably slightly more processing than
now,
| although the new 64Bits processors have a higher cycle times so that will
| probably not be recognized)
|
| As mostly with Microsoft software will the current software run on the
next
| OS version.
|
| However going from Access to SQL server will probably give you benefit as
| well as better maintenance in future with creating programs OOP and more
| posibilities to get the bottle necks from your programs and optimize it
for
| your need.
|
| However as I have seen in this newsgroups is there not an easier tool for
| it, than hiring some developpers. Set your current programs in whatever
| structured description format and start programming again.
|
| You can as well think about using Access on your SQL server by the way.
|
| However as mostly with Access have you as well a maintenance problem and
are
| you now not able to optimize it.
|
| I hope this gives some idea's,
|
| Cor
|
|
Nov 21 '05 #4
Jay,

Thanks, both very interesting articles. I have seen in previous messages
from you about your use of pluggins and see in the second article your
problem.

When I think on the 80-20 rule, than are in my opinion in text processing
always things as replace and spellchecker bottleneck's. Maybe can you
benefit in that area from this new technology. However I agree with you that
when it is normal flat processing you will probably have no benefit, again
accoording to the 80-20 rule.

As first thought reading about WOW64, I had the idea "Windows95 is back
again" history repeats (DosOnW32). While there is of course probably learned
a lot from that.

Cor



Nov 21 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Stub | last post by:
Docs says that "The compiler does not use an explicit constructor to implement an implied conversion of types. It's purpose is reserved explicitly for construction." I put up code of three cases...
7
by: Michael Lehn | last post by:
Hi, I have a question regarding the conversion of objects. When is the conversion done by the constructor and when by the operator. My feeling tells me that the constructor is preferred. But...
16
by: TTroy | last post by:
Hello, I'm relatively new to C and have gone through more than 4 books on it. None mentioned anything about integral promotion, arithmetic conversion, value preserving and unsigned preserving. ...
31
by: Bjørn Augestad | last post by:
Below is a program which converts a double to an integer in two different ways, giving me two different values for the int. The basic expression is 1.0 / (1.0 * 365.0) which should be 365, but one...
11
by: Steve Gough | last post by:
Could anyone please help me to understand what is happening here? The commented line produces an error, which is what I expected given that there is no conversion defined from type double to type...
2
by: Alex Sedow | last post by:
Why explicit conversion from SomeType* to IntPtr is not ambiguous (according to standart)? Example: // System.IntPtr class IntPtr { public static explicit System.IntPtr (int); public...
3
by: Steve Richter | last post by:
here is a warning I am getting in a C++ .NET compile: c:\SrNet\jury\JuryTest.cpp(55) : warning C4927: illegal conversion; more than one user-defined conversion has been implicitly applied while...
0
by: Lou Evart | last post by:
DOCUMENT CONVERSION SERVICES Softline International (SII) operates one of the industry's largest document and data conversion service bureaus. In the past year, SII converted over a million...
0
by: dataentryoffshore | last post by:
Get a Discount up to 60% on data entry, data capture, dataentry services, large volume data processing and data conversion services through offshore facilities in India. Offshore data entry also...
21
by: REH | last post by:
It it permissible to use the constructor style cast with primitives such as "unsigned long"? One of my compilers accepts this syntax, the other does not. The failing one chokes on the fact that the...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.