2
votes
How to import a SQL Server .bak file into MySQL?
The .BAK files from SQL server are in Microsoft Tape Format (MTF) ref: http://www.fpns.net/willy/msbackup.htm
The bak fil …
0
votes
Are GUID collisions possible?
Impossible if the users have different machines with network cards, and even if not it is still an extremely marginal almost theoretical risk.
Personally I'd look elsewhere as it is more l …
2
votes
How much compatibility do the DB engines have at the SQL level?
I worked on one project where it was an absolute requirement to support many databases, including at least Access, SQL Server and Oracle.
So I know that it can be done. Mostly DML (SELECT,U …
1
vote
Is there a class or method in Java that will check if a string is a SQL Server keyword?
why not start with this stored procedure and modify it to suit your needs …
4
votes
Perl ADO thinks printed output in stored procedure is an error!
This is to be expected as it's what ADO does and the Win32::ADO is quite a thin layer above it.
ref: knowledge base note tha …
1
vote
How can I copy a SQL Server 2005 database from production to development?
Assuming that you can connect to both DB's from the same machine (which almost always you can - I do it with my production servers via a VPN).
For each table
DELETE FROM dev …
