Viewing 15 posts - 811 through 825 (of 1,048 total)
I am not an MS Access expert, but perhaps you can set up a pass through query instead of trying to do it as a linked table.
August 5, 2010 at 8:17 am
The processing power of the CPU needs to be properly scaled to the size and speed of memory and I/O throughput capability of the disks and network. It is possible...
August 5, 2010 at 8:13 am
see if this will work for you:
select ImgGroup, [filename]
from Gallery G
JOIN (select ImgGroup, max(GalleryID) as ID from Gallery group by ImgGroup) Link
ON G.GalleryID = Link.ID
The GalleryID is identity in the...
August 5, 2010 at 7:11 am
Make sure you have created a database master key in the database. Whether you are using encryption or not that has to be created.
LOL for some reason I missed...
August 2, 2010 at 3:20 pm
How long do your snapshots take? Apps need to be written in such a way as to be able to handle an occasional timeout no matter what is causing...
August 2, 2010 at 12:08 pm
never heard of that except when used with UNION
August 2, 2010 at 12:03 pm
Sir,
What you are asking is considerably beyond the framework of this forum. Your post is not alot different than this one:
"Our company is building a new N-tier order entry system....
July 29, 2010 at 2:32 pm
if you restore a database you must reinitialize the mirroring. meaning you'll have to backup the database and restore it to the mirror. The replication can be re-initialized without...
July 29, 2010 at 2:23 pm
select * from table1
where col1 in (select col1 from table2 where col2 = 123)
This is actually a correlated subquery and it works because col1 is valid column in table1....
July 27, 2010 at 10:26 am
that will work as well, just requires a little more TSQL than just restoring the service master key and certificate.
July 26, 2010 at 7:49 am
I am not understanding what you mean by the "computer account" you are referring to. Do you mean the Windows user account that the SQL Server service is running under?
July 26, 2010 at 7:28 am
My suggestion was assuming you can write a C# program to bulk insert the file into the stage table first.
It could determine the column order of the file then...
July 22, 2010 at 2:31 pm
I would bulk insert this file into a stage table first then do the insert into the production table by specifying the column names in the order you want them...
July 22, 2010 at 8:52 am
Your company needs to hire good software engineer(s) who understand not only software but relational database architecture to design a good solution to this.
It would save them some time if...
July 22, 2010 at 8:07 am
Viewing 15 posts - 811 through 825 (of 1,048 total)