Viewing 14 posts - 46 through 59 (of 59 total)
I think I got my answer.:-)
Just change the clustered index to:
CREATE CLUSTERED INDEX IX_YourTable_ColA
ON #YourTable (ColA,ColB)
22441
22462
22483
22554
24191
24282
25461
26241
October 2, 2009 at 3:44 pm
This code is great.
Now let's assume we want ColC to be sequenced in ColA ascending, ColB ascending order.
How would your code be modified to accomplish that?
2244NULL
2246NULL
2248NULL
2255NULL
2419NULL
2428NULL
2546NULL
2624NULL
October 2, 2009 at 3:34 pm
It depends!
How many users will be using the FE?
How many records will be in the BE?
Your network speed?
Etc.
I make lots of FE applications(over 200 in last 18 months).
I have found...
September 18, 2009 at 11:16 am
Like Lynn's code I do.
I am using SQL Server 2000 and solved the problem without the "over" statement and Join.
If I had more time, I may be able come...
August 24, 2009 at 3:08 pm
It appears to me that Lynn's code assumes the data is entered in time_stamp order and the ID for the previous Time_Stamp is one less than the current record.
Where as...
August 24, 2009 at 2:46 pm
May not be the most elegant way to solve, but it works.
CREATE TABLE #MyMeter(
ID int identity(1,1) PRIMARY KEY,
Value ...
August 24, 2009 at 1:29 pm
Not a problem.
Here is a great list to subscribe to for "Access".
After you get a login you have access to years of questions and answers to common and unique problems.
I...
June 17, 2009 at 1:45 pm
Try this link: http://www.teacherclick.com/access2003/t_10_2.htm
How to create an Update Query in Access 2003
June 17, 2009 at 1:32 pm
Which version of Access are you running?
If you are running the script one time or on occasions you would create a query to perform the operation.
June 17, 2009 at 12:34 pm
Try this,
Update [YourTableNameHere] Set M1C = M1Q * 10 where M1 = 'Glue'
June 15, 2009 at 4:41 pm
One thought.
If the OP is using SQL Server Express there is a Maximum 4GB database size limitation.
Will this pose a problem in the future if the DB is going to...
May 28, 2009 at 3:06 pm
Maybe you already found your answer but, I tried a Google for "Cannot connect to WMI provider" and found a possible solution at:
http://social.msdn.microsoft.com/Forums/en-US/sqltools/thread/468b8484-2729-4a06-bfc3-efe54507dcb6
May 14, 2009 at 4:33 pm
Sorry, we need a little more information.
1) Is this an access .mdb file?
2) Is this an access .mdb front end linked to an access .mdb data back end?
3) Is this...
May 14, 2009 at 4:24 pm
Try to check for your duplicate prior to adding the record.
In the BeforeUpdate event in the text box of your possible duplicate field try something like this:
Private Sub txtYourFieldName_BeforeUpdate(Cancel As...
May 4, 2009 at 5:26 pm
Viewing 14 posts - 46 through 59 (of 59 total)