Viewing 15 posts - 301 through 315 (of 499 total)
I'm guessing its the security warning dialog box (which is not visible). If you run your command from a command prompt, when MSAccess opens does it display any security...
June 12, 2009 at 4:33 pm
Surely value1 = value3 would just evaluate to false and return no rows, assuming (value2 = value2 AND value1 <= value3 - in which case it by my understanding...
June 12, 2009 at 3:53 pm
Florian Reischl (6/12/2009)
Tom Brown (6/12/2009)
See BOL.
But I couldn't say that without also advising you to look at the numerous articles on this site about...
June 12, 2009 at 2:40 pm
you have FROM FROM on line 2.
sometimes you just need someone else to look at the code 😉
If its still not giving the results you want, post...
June 12, 2009 at 2:27 pm
You can use a STATIC cursor instead.
See BOL.
But I couldn't say that without also advising you to look at the numerous articles on this site about cursors and how to...
June 12, 2009 at 2:20 pm
at a command prompt
SQLCMD -L
The output is a bit variable though - probably due to network response times, but its good for a quick idea of what's there.
also OSQL -L
but...
June 12, 2009 at 2:13 pm
My first idea on reading the OP was a simple directory listing of the DATA directory - sort by date. I would probably find a bunch of files with...
June 12, 2009 at 2:05 pm
If you want word matches then full-text search is the way to go. If you are OK with partial word matches (e.g search for 'miss' - results include 'mission'...
June 11, 2009 at 9:21 am
Ten years ago I was team leader in a small software house. When things went wrong there was a bit of a ...
June 11, 2009 at 3:26 am
No you can't just shrink a table on its own. - SHRINKFILE acts on a database filegroup. (data or log)
The table would have to reside on its...
June 11, 2009 at 1:47 am
tosscrosby (6/10/2009)
Tom Brown (6/10/2009)
Deleting data does not free up the space on the hard-disk.You need to shrink the files
see DBCC SHRINKFILE in BoL
Don't shrink the files unless you're out of...
June 10, 2009 at 8:26 am
My first thought is to accept Visual studios error and check the data type conversion.
Is the column ID_Facultare a BIGINT or just INT?
can you post the table def too?
June 10, 2009 at 6:51 am
Deleting data does not free up the space on the hard-disk.
You need to shrink the files
see DBCC SHRINKFILE in BoL
June 10, 2009 at 6:43 am
I have seen such read locking handled in an application with a separate lock table, where all access to the table goes through the application - the application keeps track...
June 10, 2009 at 6:15 am
I usually run OSQL -L from a command prompt
It only gives a list of servers, and no other information,
June 10, 2009 at 5:25 am
Viewing 15 posts - 301 through 315 (of 499 total)