Viewing 15 posts - 346 through 360 (of 541 total)
How often do you log ship?
Depending on your db size and table size you should reindex in small chunks.
You can also set log shipping to execute every 5 mins during...
October 16, 2009 at 11:41 am
October 16, 2009 at 10:23 am
Those views are in SP1 but i would suggest to upgrade to SP3.
RELEASE NOTES:
Installing SQL Server 2005 SP3 on a Failover Cluster Instance
How to apply sp3 to a clustered MS...
October 16, 2009 at 9:49 am
krypto69 (10/14/2009)
my boss asked me to :
Could you provide me with any screen shots that demonstrate encryption for the transit of data from our DB’s?
How...
October 14, 2009 at 3:02 pm
Try this:
BULK INSERT OrdersBulk
FROM 'c:\file1.txt'
WITH
(
FIRSTROW = 2,
MAXERRORS = 0,
FIELDTERMINATOR = ',',
ROWTERMINATOR = '',
ERRORFILE = 'c:\file1_error.txt'
)
October 14, 2009 at 8:38 am
kaushikrsharma (10/9/2009)
1)Please code up a stored procedure that takes a single parameter and allows the calling application to insert multiple records into a single table
-- ================================================
-- Template generated from Template...
October 9, 2009 at 2:23 pm
brown9071 (10/6/2009)
I understand well the security configuration of the linked server, in that you can control access...
October 7, 2009 at 12:55 pm
balbirsinghsodhi (10/7/2009)
------
ALTER TABLE
Transac_Archive_Stage
SWITCH TO
Transac_Archive PARTITION 6
GO
Msg 4972, Level 16,...
October 7, 2009 at 12:37 pm
You should download this whitepaper and read it.
it's got a lot of pictures which will help you greatly.
It shows you step by step on how to install and configure the...
October 7, 2009 at 11:29 am
I'm sure it was a delay in SMTP server.
September 16, 2009 at 2:12 pm
you have to create a linked server and use fully qualified table names in your trigger.
September 8, 2009 at 2:41 pm
This is from another forum. I used this many times in the past to capture last executed time of stored procedures. It uses the syscacheobjects table.
---------------------------------------
Ok, we came up with...
July 30, 2009 at 10:34 am
yes you can as long as that user has appropriate rights for those tables that the sp is modifying.
July 30, 2009 at 10:08 am
July 30, 2009 at 9:48 am
Viewing 15 posts - 346 through 360 (of 541 total)