Viewing 15 posts - 31 through 45 (of 79 total)
What's the reason behind the question?
Grant & Gail,
wow! thanks for the quick responses. your insight is instructive.
If I'm understanding SQL 2005 DBMS correctly, the DBMS "engine" has...
December 3, 2008 at 7:59 am
Kolivad,
I went to the link, and it looks the solution applies to SQL 2000. Do you have a comparitive solution for Access db?
Gouthama Kolivad (12/2/2008)
December 2, 2008 at 10:00 am
I'm experiencing a far more unusual problem than the .ldb. Basically, its not even appearing when I try to open the corresponding .mdb.
see http://www.sqlservercentral.com/Forums/FindPost612028.aspx for a complete...
December 2, 2008 at 9:54 am
Hensbergen,
Thanks for the quick reponse.
No, there's no .ldb. While the .mdb is open, in the following manner:
I goto the folder where the .ldb is supposed to be...
December 2, 2008 at 9:45 am
BTW rebooting clears the proccache and the data in memory... so maybe that would have been enough.
Would this also clear any locks on an .mdb run locally?
December 2, 2008 at 6:59 am
I don't see the .ldb file when I open up the folder while the Access .mdb is open. For example, when I open up the .mdb file in question, the...
December 2, 2008 at 6:53 am
Sam, did you every find how to do the conversion?
December 2, 2008 at 5:52 am
Hansi and Garadin,
Nice! thanks.
Are you able to produce a modification to the code which puts a separating line above the Total row? (between the data and the last...
December 1, 2008 at 9:58 am
Barry,
...Modified in terms of changing a column description, adding a column, doing some type of work on the Table Definitions itself, NOT the underlying data...is this correct from when...
November 7, 2008 at 9:44 am
Just out of curiousity, I asked this other question on this board, but under another topic forum
I just thought this was pertinent to my subject. Do you have any thoughts...
November 5, 2008 at 8:56 am
R BARRY YOUNG;
Thanks! The code you provided
ALTER TABLE [testData]
ADD lastupdate datetime default(getdate())
worked!
I configured the TableAdapter with your suggested implementation:
Update testData
SET note=@note, lastupdate = getdate()
linked it to an ObjectDataSource on my...
November 5, 2008 at 8:37 am
Tim Meers,
Does the code you suggested provide the last time a table was updated?
I went directly into a table in SQL 2005, and change a column. I closed...
November 5, 2008 at 7:12 am
Rbarry young and Jonathan,
Once again, I appreciate your assistance. Forgive me that I'm still on a learning curve with SQL and the Visual Studio IDE. After reviewing your suggestions,...
November 4, 2008 at 1:10 pm
rbarryyoung (10/29/2008)
umanpowered (10/28/2008)
CREATE VIEW vwMainTable_LastUpdated
AS
SELECT MAX(LastUpdated) as [TableLastUpdated] From...
November 3, 2008 at 12:56 pm
Thanks for replying, Jonathan,
Here is what I was thinking:
Rather than have a table which shows this:
Column 1, Column 2, Column 3, Column Last updated
....
(with data in each...
October 29, 2008 at 6:49 am
Viewing 15 posts - 31 through 45 (of 79 total)