Viewing 15 posts - 136 through 150 (of 175 total)
Thanks for replying Steve. I'm not going to have direct access to the pipe which will essentially be an encrypted tunnel created by the two hardware devices. I'm taking a...
October 21, 2009 at 1:24 pm
Thanks all. I am going to explore the compression options.
October 21, 2009 at 9:08 am
Can the other party convert to a standard backup file and then encrypt using a non-proprietary, non-red gate method?
October 20, 2009 at 10:43 am
Thanks for your respsonse.
>> like to know how often are you planning to move the data from onsite to offsite.
The system we are evaluating has two-modes, traditional run the job...
October 20, 2009 at 8:51 am
Red Gate SQL Data Compare will generate DELETE, UPDATE and INSERT statements to synch databases.
October 12, 2009 at 4:00 pm
Copy from a template file where your template has all the formatting and macros you need.
Untested code
DECLARE @cmd VARCHAR(1000)
DECLARE @TemplateFile VARCHAR(200)
SET @TemplateFile = 'Template.xls '
DECLARE @DestinationFile VARCHAR(200)
SET @DestinationFile = 'MyFile.xls...
October 12, 2009 at 12:58 pm
Are you getting an error? If so, what is it?
A potential workflow alternative may be to:
-delete the file
-copy from a template to make a new file
-write your data
October 9, 2009 at 12:39 pm
BEGIN TRY functionality is awesome, but alas I am on 2000.
October 9, 2009 at 10:54 am
See http://www.db-staff.com/index.php/microsoft-sql-server/62-dba-tips-Query to archive a backup file using winrar without access to the server desktop
September 28, 2009 at 12:24 pm
This looks good thanks.
DELETE #Test_Destination
FROM #Test_Destination a
inner join #Test_Staging b
on a.id=b.id and a.Date=b.Date
INSERT INTO #Test_Destination
SELECT a.*
FROM #Test_Staging a
left join #Test_Destination b
on a.id=b.id and a.Date=b.Date
where b.id is null
September 21, 2009 at 2:00 pm
Yes, this is what I am looking for. Thanks.
September 21, 2009 at 8:35 am
That updates all manufacturers with the same MIN date in the #ProductInfo table
I need the MIN date per product.
The updated #Manufacturers table would look like:
ManufacturerID,Manufacturer_Date
1,1/1/2009
2,2/15/2009
3,1/15/2009
September 18, 2009 at 9:55 am
I think the OP wanted to distinguish between recurring and one-time unavailabilities.
I see your point though. There could really be a type field with the choices being 'recurring' and 'one-time'.
I...
September 17, 2009 at 11:40 am
You could have 3 fields: starttime,endtime,dayofweek.
If dayof week is populated then this would indicate a recurring unavailability. If not populated then it is the specific dates in starttime and endtime....
September 15, 2009 at 3:09 pm
Check the views in the msdb database that start with dbo.sysmail*.
September 14, 2009 at 12:14 pm
Viewing 15 posts - 136 through 150 (of 175 total)