Viewing 15 posts - 46 through 60 (of 62 total)
I've been a big fan of Identity columns for years. At least since v 6.5. [ I think I used it in version 6.0, but that was years ago. ]
But,...
December 16, 2002 at 11:43 am
If at all possible, I'd recommend getting a new server for the upgrade. This forces you to really document the key system info such as linked servers, sp_configure, logins,...
December 16, 2002 at 11:23 am
Thanks, I missed that at first. But with the correct password, I now get error = 0, but after rollback, the table is empty - no non-logged records.
December 12, 2002 at 12:14 pm
Yes,
make sure it can store nulls.
but try below,it puts a null
into a datetime field.
create table ##test
(myddd datetime null, myaaa varchar(10) )
insert into ##test values ( NULL, '111')
select *...
November 26, 2002 at 6:24 pm
If you use a global temp table,
the object name will show up in the tempdb exactly as ##AC_Updates. This is unlike a non-global temp table. So you need...
November 26, 2002 at 6:19 pm
If the "application" you are refering to includes database triggers, procedures, etc, then you can search the syscomments table.
Better still, dump all triggers and procedures to a text file, and...
November 26, 2002 at 6:01 pm
If you must use a third-party solution, use the one you are using for all your other system backups. Veritas is good.
but I agree with Steve, do what ever...
November 26, 2002 at 5:41 pm
If you just want to occasionally look at the activity, perhaps Lumient Log explorer will work,
but if you have a real business/application need, then either use a table trigger,...
November 26, 2002 at 5:30 pm
I remember reading this same tread months ago.
Good attitude, experience, and knowledge. But if you really want some insight, put your self in the hiring managers position....
November 26, 2002 at 5:20 pm
I've seen this error with SQL7 & NT4.
And, the solution was just as prescribed by MS (no action required).
If the master database did not exist at all,
then in...
November 26, 2002 at 4:58 pm
Andy, Keep pushing the limits! Gotta agree with you, there is more to data integrity than just nightly backups. As for solutions, as you have indicated, it all depends....
October 28, 2002 at 1:06 pm
In this time of zero latency between systems, snapshot does seem a bit outdated.
But you were right-on with the focus on Business requirements. In many of the large corporations...
October 10, 2002 at 7:27 am
Thanks for highlighting.
Worthy of going into a best practices category! I suspect quite a few of us overlook the 24 hour exposure of our backups until the nightly...
September 30, 2002 at 8:30 am
If you are looking for a way to fully automate both the backup of the primary server, and to then restore the secondary server, you may want to take a...
September 26, 2002 at 5:29 am
Gotta agree with Andy.
Would love to use WA, but there is always something...that is the issues Andy outlined.
Actually, cannot think of a situation where we used WA for any web...
June 25, 2002 at 11:55 am
Viewing 15 posts - 46 through 60 (of 62 total)