Viewing 15 posts - 3,421 through 3,435 (of 4,272 total)
The profile specifies the email that the message come FROM. If you want to send to more than one recipient, you can specify more than one email address in...
October 5, 2009 at 8:26 am
You can do that. There are some difficulties associated with that. But we would be trying to stay away from dynamic SQL. This also opens the process...
October 5, 2009 at 8:18 am
SQL Does the work it is sent to do, and the work it is sent to do is controlled by Access. But if your front-end is querying linked tables...
October 4, 2009 at 9:41 pm
You can often minimize it by making sure that you set aside enough memory for the OS. This all depends on what else you have running and how much...
October 4, 2009 at 7:56 pm
The reason all the tables had dbo was that was the table owner.
I'm guessing that the reason you are getting terrible performance is that the access engine is doing all...
October 4, 2009 at 7:39 pm
For reports that are run with a defined set of parameters every week you might consider data driven reports.
CEWII
October 4, 2009 at 7:27 pm
SELECT SERVERPROPERTY('LicenseType')
Mode of this instance of SQL Server.
PER_SEAT = Per Seat mode
PER_PROCESSOR = Per-processor mode
DISABLED = Licensing is disabled.
Base data type: nvarchar(128)
October 4, 2009 at 7:25 pm
Well you can't do it quite that way, but you can accomplish the same thing using SYNONYMs.
A synonym is very much like an alias. You could create a synonym...
October 4, 2009 at 4:08 pm
GilaMonster (10/4/2009)
Elliott W (10/4/2009)
October 4, 2009 at 3:54 pm
RBarryYoung (10/4/2009)
Elliott W (10/4/2009)
...As the table grows is less obvious which is the better performer..
No, as the table grows, it becomes clearer and clearer that temporary tables outperform table variables....
October 4, 2009 at 11:53 am
Grant Fritchey (10/4/2009)
October 4, 2009 at 11:48 am
Yet even more agreement with Jeff. Big files stored in SQL is just not the best solution. Link in SQL pointing to the file is the best solution..
CEWII
October 4, 2009 at 10:48 am
I thought I was agreeing..
But I was also making a larger point about there being lots of factors that controls how it will perform..
As the table grows is...
October 4, 2009 at 8:56 am
Paul White (10/3/2009)
Elliott W (9/23/2009)
October 3, 2009 at 8:28 pm
repent_kog_is_near (10/2/2009)
CEWIII login in through Win Authen; so I do not see my login in under Security->Logins
Dan
Then you would have to change it for the whole group that is allowing...
October 2, 2009 at 7:35 am
Viewing 15 posts - 3,421 through 3,435 (of 4,272 total)