Viewing 15 posts - 856 through 870 (of 1,988 total)
That entirely depends on what the access database is doing with them, but yes potentially.
January 26, 2018 at 8:05 am
Well anything that pulls system time will jump by that time, it might also tweak with scheduled job runs which might not be a big deal if it's a 5...
January 26, 2018 at 7:52 am
Just put IsMember at the front of the order by 😀
SELECT TOP 1 * FROM @T ORDER BY IsMember DESC, NEWID()
January 25, 2018 at 2:27 pm
Before getting into any of the deeper issues with this, you still haven't addressed the cartesian join which was brought up multi times in the last thread you started is...
January 25, 2018 at 9:51 am
January 25, 2018 at 8:36 am
January 24, 2018 at 3:45 pm
5000 inserts a day is a pretty light load, if your reports are having performance issues then yes adding indexes is a good idea. Unless you have some kind of...
January 24, 2018 at 12:02 pm
Well what kind of reporting tool are you using for the front end? Like Eric said don't try to have one giant anything that does everything for you. Identify elements...
January 23, 2018 at 8:53 am
How dynamic are these files going to be? How many total possible, are the file names dynamic?
January 18, 2018 at 9:59 am
Well your constraint is slightly different than just not null. Depending on the size of that varbinary column that could be quite a lot it actually does have to check...
January 17, 2018 at 3:32 pm
It looks like you have to use merge instead of insert if you want values from the old table in the output clause. So something like this.
[code...
January 16, 2018 at 11:09 am
Viewing 15 posts - 856 through 870 (of 1,988 total)