Viewing 15 posts - 16 through 30 (of 44 total)
In Access, a combo box with this statement is attempting to navigate to a particular record by synchronizing the form with the underlying recordset. There is an Access combo box...
April 12, 2004 at 6:22 am
The SHIFT-return thing also works in many word processors including Microsoft Word.
April 7, 2004 at 9:03 am
In my experience, the file you're restoring FROM has to be on the same server as the database you're restoring. SQL restore only "sees" what is on its own box.
April 7, 2004 at 9:02 am
Thanks, Steve, but could you give a bit more detail? Where am I setting this DSN-less connection? And how? As I said before, we don't want to manually redirect hundreds...
April 5, 2004 at 6:22 am
To run the code described in the previous posts, does the user have to have administrative rights to their machine?
April 2, 2004 at 2:07 pm
A bit of extra information: we're running SQL 2000 on Windows 2000 and will be migrating to Windows 2003.
April 2, 2004 at 1:58 pm
Zoul: Just a suggestion: if you use named parameters in VB you're less likely to miss a comma. Example:
.Parameters.Append .CreateParameter(name:="@Site", type:=adInteger, direction:=adParamInput, value:=gintSite)
March 22, 2004 at 6:27 am
Here's a snippet of a function I wrote to strip out any non-alpha characters from a name, such as apostrophes and hyphens. You can add a third criterion to the...
March 22, 2004 at 6:17 am
Question: if I set up a job to run sp_updatestats, will this significantly impact performance of my server or network? I'm scheduling the job to run at 2 am when...
March 16, 2004 at 6:23 am
We had major memory leak problems with SQL 7, but they magically went away when we upgraded to SQL 2K.
Dana
March 16, 2004 at 6:11 am
Hit submit too soon ... disregard previous entry.
Regarding your statement: "Unless issueing the rollback/committ stops the proc ... " - doesn't it? I've always assumed that once you rollback, that's...
March 10, 2004 at 7:00 am
Regarding your statement: "Unless issueing the rollback/committ stops the proc ... " - doesn't it? I've always assumed that once you rollback, that's the end of it. Note my...
March 10, 2004 at 6:57 am
Since you're going to roll back if any errors happen, you don't need an error variable:
insert statement ....
If @@ERROR <> 0
ROLLBACK ---no need to go further!
update statement ....
If...
March 9, 2004 at 6:57 am
Just a minor point ... I've found that when testing a field for a number of values, the IN function is more manageable and easier to read than a series of OR...
February 27, 2004 at 6:41 am
How about this:
EMPLOYEE TABLE
EmpID (primary key)
LName
FName
TeamID ... foreign key to Team Table
TEAM TABLE
TeamID (primary key)
TeamName
DivisionID ... foreign ID to Division Table
DIVISION TABLE
DivisionID (primary key)
DivisionName
ChannelID ... foreign key to Channel Table
CHANNEL...
February 24, 2004 at 6:52 am
Viewing 15 posts - 16 through 30 (of 44 total)