2
votes
Can Database Mirroring Be Setup On MS SQLServer Between Two Clusters
At least in 2005 and 2008, the answer is yes. I don't personally have experience with clustering …
11
votes
What are the uses for Cross Join?
If you have a "grid" that you want to populate completely, like size and color information for a particular article of clothing:
select
size,
color
from
sizes CROSS JOI …
2
votes
How to change a column’s “Row Source” in Access table at run-time?
I don't know whether or not this is an option for you, but I would recommend separating the table and filtering options, setting up a form to do the data entry and modification and using code to se …
1
vote
Read-only Access data source
To build on Matt's answer, I would recommend a combination of adOpenForwardOnly and adLockReadonly: ForwardOnly because you just need to insert those trades into SQL Server, and Readonly so you are …
