Viewing 15 posts - 571 through 585 (of 920 total)
A million of us?!?!?! There are a million of us??
No wonder the jobs are scarce. Perhaps the answer to the employment problem and the central question of this...
January 29, 2009 at 6:53 pm
In cases where the OP is unwilling to contribute to his own success, it might be tempting to reply:
OK, if you want me to read your mind, you have to...
January 27, 2009 at 9:58 am
Lynn,
I've been following the other thread mentioned above. Based on the expected outcome he just posted (which had exactly 0 relation to the sample data provided), if you choose...
January 21, 2009 at 2:43 pm
I've done both Oracle and SQL Server and I'll take SQL Server any day. For my money, Oracle is needlessly complex, tool poor, and requires a significantly greater amount...
January 16, 2009 at 4:16 pm
Yes, while I don't have as many answers as several of the folks here, I swear I want to start some of the replies I do have with:
First you stand...
December 23, 2008 at 6:04 pm
I can't believe I've missed out on 50 pages of this discussion (especially the beer recommendations (Guinness for daily upkeep, Cave Creek Chili Beer for those times when a hangover...
December 23, 2008 at 4:36 pm
Well, since you're updating multiple tables, you might just trap the update statements into scripts and run several in parallel. If you're not adding new columns on a regular...
December 23, 2008 at 2:17 pm
How large is the database?
How often do you backup the logs?
Are there scheduled maintenance jobs running during the slow periods on either the SQL Server or the SAN?
How 'large' are...
December 23, 2008 at 1:09 pm
This looks like it generates update statements that increment every datetime column in the database by 1 day.
Is that really what you want to do? I'd be curious as...
December 23, 2008 at 10:48 am
I'm not sure if I really understood the problem since those update statements looked a little strange, but you may be under the impression that just because you have a...
December 1, 2008 at 1:49 pm
I'm a little confused. Couldn't you just select CustomerAddressID?
Or try this:
Select CustomerID + '-' + AddressTypeID
November 13, 2008 at 2:41 pm
I wouldn't recommend a full backup everytime something changes. The "standard" methodology is to take backups of the transaction log at regular intervals between full backups. With the...
November 7, 2008 at 5:28 pm
This form will let you set more than 1 variable
select @variable1 = column1, @variable2 = column2 from ...
November 6, 2008 at 3:06 pm
I'm sorry, Access isn't my area of expertise, but can't you type them all in one query window and execute them all serially by just clicking 'execute' on the window?
Or...
October 23, 2008 at 2:18 pm
You're updating two different objects, so you'll need two update statements.
Why do you need to combine them?
Unless you want all the rows in those two tables to be the values...
October 23, 2008 at 12:46 pm
Viewing 15 posts - 571 through 585 (of 920 total)