Viewing 15 posts - 2,236 through 2,250 (of 3,668 total)
I take it that you have a separate distributor in your replication set up?
When you switch to compatibility level 90 you may notice that it takes a while as SQL...
April 30, 2007 at 1:29 pm
The article could almost have a title of "how not to manage a project".
The sucesss of a project depends on managing user expectations and keeping them informed as to...
April 30, 2007 at 1:24 pm
There are somethings I really like about management studio
April 25, 2007 at 12:19 pm
The other thing you will notice with SSMS is that it is S.....L....O.....W.
It speeds up a bit with SP2a on it but SQL Query Analyser is still much faster.
April 23, 2007 at 12:20 pm
Your description is a bit vague.
When I delete large numbers of records from a table then rather than fill up the log file with one massive DELETE I do something...
April 21, 2007 at 8:31 am
SELECT * FROM mydatabase.myname.Tmp_FORUM_TOPICS WHERE TOPIC_ID IS NULL
This will find the offending data rows.
You can then determine whether to delete those rows or reassign TOPIC_ID. After doing this you...
April 21, 2007 at 8:28 am
The thing with a DATETIME or SMALLDATETIME field is that you have built in data validation for that reason I would prefer to store dates in date fields.
If you are...
April 21, 2007 at 8:26 am
Don't forget that when you do schema changes to underlying tables your should do sp_refreshview on the dependent views.
It is worth mentioning the WITH CHECK option. If you have...
April 21, 2007 at 8:19 am
Doesn't the Windows XCOPY cope with the open file?
The alternative would be
NET STOP YourService
XCOPY drive.spec\*.MDB drive:spec
NET START yourService.
Down time should be pretty short.
April 9, 2007 at 8:51 am
There doesn't seem to be an ANSI standard equivalent of BIT or TINYINT.
BIT fields I can live without because I like to have a specific "Don't know" value rather than...
April 9, 2007 at 8:44 am
Joe,
How do you feel about the naming of the integer types?
When I started programming integer meant 16 bit, long integer meant 32 bit. Not everything has shifted up a...
April 2, 2007 at 10:14 am
Depends how far behind schedule you are and what the causes are.
If the project manager under-estimated the timescales then there is not a lot you can do about it.
If you...
March 27, 2007 at 11:58 am
The bit that concerns me is the BOL entry that warns that this takes 1/8th of the server memory. So a 16GB box is going to lose 2GB RAM...
March 27, 2007 at 11:48 am
Yes indeed and as its on a 1TB I was relieved when it reported no errors.
The suspicion is that as the staging table is TRUNCATEd the pointers in the index...
March 27, 2007 at 11:40 am
We have databases getting on for a TerraByte and have to be very careful with replication.
If you generate a snapshot then while the snapshot is being generated the tables get...
March 21, 2007 at 3:08 pm
Viewing 15 posts - 2,236 through 2,250 (of 3,668 total)