Viewing 15 posts - 2,206 through 2,220 (of 3,711 total)
One aspect I forgot to include was when someone uses MS Office to connect to your databases. I'm thinking of MS Excel and the pivot report/charts. I haven't...
January 15, 2008 at 4:27 pm
LICH (1/15/2008)
Also "Analyser" should be "Analyzer"
Not if you're British it shouldn't.
January 15, 2008 at 4:24 pm
Sorin Petcu (1/15/2008)
INSERT INTO @InputBuffer(EventType,Parameters,EventInfo) EXEC (@SQL)
gave me an error:
Server: Msg 197, Level 15, State 1, Line 65
EXECUTE cannot be used as a source when inserting into a...
January 15, 2008 at 4:21 pm
If the length of your ntext field is under 4000 characters then cast it to a VARCHAR and use the REPLACE statement.
January 12, 2008 at 9:02 am
This is a mamoth task. I would omit SQL6.5 from the presentation. In about 4 years time there will be DBAs working who were not born when SQL6.5...
January 12, 2008 at 9:00 am
Have you got a server somewhere where you can do a test restore of your backup. I know restoring system databases is a pain but for peace of mind...
January 12, 2008 at 8:55 am
January 8, 2008 at 1:02 pm
ISO8859 seems to refer to Latin character sets.
Can you give a specific example of what is going wrong?
I use XML EXPLICIT when I need a specifc layout but only when...
January 8, 2008 at 12:58 pm
I deployment and rollback scripts for everything as a matter of course that way I know I have a way of installing and uninstalling software in a hurry if need...
January 8, 2008 at 12:53 pm
I would create a table that holds a flag.
Have your trigger set the flag
Set up a schedule job that runs every minute or so with a task that says
IF EXISTS(SELECT...
January 8, 2008 at 12:47 pm
January 8, 2008 at 12:42 pm
Sad:
Just found out why it was so important to back up the database master key.
Forgot to put a WHERE clause on a DELETE/UPDATE.
Selfish:
Implements something in LIVE 5 minutes before leaving...
January 8, 2008 at 12:38 pm
Do you have the option to move use another server as your distributor?
I'm thinking that if your production server fills due to growth in your distribution database then this will...
January 6, 2008 at 11:54 am
I'm not sure about that Jeff.
I have come across situations where the firehose cursor is faster than the loop.
I pinned it down to the loop running many separate queries where...
December 28, 2007 at 3:59 pm
SELECT P.*
FROM PurchaseOrders AS P
INNER JOIN (
SELECT PurchaseOrderNumber, Max(Posuf) AS LastPosuf
FROM PurchaseOrders
GROUP BY PurchaseOrderNumber
) AS PM
ON P.PurchaseOrdernumber = PM.PurchaseOrdernumber
AND P.Posuf = PM.LastPosuf
December 28, 2007 at 2:48 pm
Viewing 15 posts - 2,206 through 2,220 (of 3,711 total)