Viewing 15 posts - 32,896 through 32,910 (of 39,817 total)
Not sure about RHIE, but a friend got his CCIE a few months ago. He had to take a written test, a long one and then had a year to...
November 27, 2006 at 7:45 am
Where is the server located? Is it local or remote?
This is a connection problem. You can check the machine where SQL is running and see if the service is...
November 26, 2006 at 10:00 am
There's one here now: http://www.sqlservercentral.com/forums/messages.aspx?forumid=334
Be careful what you write.
November 26, 2006 at 9:59 am
Log PI from Golden Gate, Log Explorer from Lumigent, Apex Log from Apex, or Log Rescue from Red Gate can help you out if you save off the log backups.
November 26, 2006 at 9:59 am
select vehicleid, max( renewdate)
from licenses_renew
group by vehicleid
If you need trans id, wrap this in a select like
select transid, vehid, renew
from (select vehicleid, max( renewdate) as renew
from licenses_renew
group...
November 26, 2006 at 9:56 am
do you mean
- perform update 1
- perform update 2
- check for error
if error, undo updates 1 and 2
if not, do nothing
- do update 3
continue?
If...
November 26, 2006 at 9:53 am
small company or "old" application. seems like as they age, more and more people get rights to do this stuff.
I'm a "DBAs only" for schema changes. Developers can run them...
November 26, 2006 at 9:52 am
Thanks again for the comments. Rest assured everyone is looking these over and they will be considered before anything is changed.
The email list is now in fact Red Gate's and...
November 26, 2006 at 9:42 am
Thanks and you'll still be able to express opinions. I think having a vendor section in the forums is a good idea and I'll work on getting something setup for...
November 24, 2006 at 5:31 pm
Thanks for the comments and I definitely have some things to think about.
I'd like to see more reviews, but they're tough to do. The only way I can be sure...
November 24, 2006 at 8:52 am
Subjects maybe, but the others aren't necessarily worth the join effort. From/to come from a table with lots of data as well. And this way the system can be...
November 24, 2006 at 8:36 am
Use a table to store your periods/dates/etc and join with it. That should get you a long way there.
November 23, 2006 at 10:10 am
Is the SQL Server running as an adminsitrative account on the server? I think that is an issue. Hard to remember since I haven't used this in a long time.
It...
November 23, 2006 at 10:10 am
These come from different places and they can get out of synch. I think one is the registry and one if the file information.
November 23, 2006 at 10:08 am
Viewing 15 posts - 32,896 through 32,910 (of 39,817 total)