Viewing 15 posts - 346 through 360 (of 583 total)
As far as updating data, I am equally comfortable using either ADO or DAO. If ADO is more efficient, that is what should be used. But when manipulating objects inside...
February 24, 2005 at 8:54 am
I decided that maybe I should check my idea of only allowing one record at a time to be attached to a form to make sure that it is really...
February 23, 2005 at 11:43 am
I agree, the Access Projects are the way to go.
Back when I was doing developement in Access 2000, if I recall correctly, there was no way to import other types...
February 23, 2005 at 11:19 am
I have written several successful applications that did update SQL data using linked tables using Access queries, DAO or ADO code. The last big project I worked on I actually translated all of...
February 23, 2005 at 11:06 am
While working on this article, I found that Access 2003 had references to DAO and ADO by default. I haven't done a lot with Access for the last 2 years and...
February 23, 2005 at 8:39 am
Here is an example using Ping:
create procedure usp_ReturnNameFromIP @IP varchar(15),@Name varchar(100) output
as
set nocount on
create table #ping (line varchar(1000))
declare @answer varchar(1000)
declare @command varchar(1000)
declare @pointer int
set @command = 'ping -a...
February 21, 2005 at 8:21 pm
I have the lock monitoring set up and so far no tempdb problems since it was set up. The application itself has logging of all statements, so if I know...
February 20, 2005 at 1:38 pm
If the query doesn't exist, you will get the 7874 error. Try checking to see if the query exists before deleting it. Here is an example of checking for the...
February 19, 2005 at 9:27 pm
What do you mean by "in parallel"?
You can run MSDE and SQL 2K on the same machine at the same time. At least one of them has to have an...
February 16, 2005 at 8:55 pm
Since you are storing the average in a column, you can join on the grade lookup table:
select Student, score1, score2, score3, [Avg], grade_letter as Grade from scores join GradeTable_tbl on [Avg]...
February 16, 2005 at 8:50 pm
Look in to "Information Schema Views"
February 13, 2005 at 2:35 pm
Maybe something like
select count(*) visitors, isnull(page1,0) + isnull(page2,0) + isnull(page3,0) + isnull(page4,0) + isnull(page5,0) + isnull(page6,0) + isnull(page7,0) + isnull(page8,0) + isnull(page9,0) + isnull(page10,0) pageCount
from pagehits group by isnull(page1,0)...
February 6, 2005 at 1:31 pm
Here is a script that migh also help you come up with a plan. It assumes that the import table is called Excel and the derived table is called derived.
truncate...
February 5, 2005 at 8:43 pm
Here is a script to get you started. You will have to also write a script to set up the jobs. Probably the best way to get a sample is...
February 5, 2005 at 7:57 pm
Viewing 15 posts - 346 through 360 (of 583 total)