Viewing 15 posts - 826 through 840 (of 1,409 total)
What have you tried so far? What are the errors you encountered?
I think if you add a "Execute Process Task" to your package, you should be able to get it....
August 16, 2013 at 2:45 am
But remember: the LOG backups are primarily for recovering lost data. It is not intended to do auditing. There are other features and tools to do auditing.
August 16, 2013 at 12:58 am
OnlyOneRJ (8/16/2013)
Will APEX SQL ttol help me to read Log files which are backed up every 3 hours..
I don't have any experience with their tool, I just googled a bit...
August 16, 2013 at 12:55 am
OnlyOneRJ (8/16/2013)
If Database size is around 20 GBand Backup taken once a day and Log backup every 3 hours then what can be set??
There is too little information. Like I...
August 16, 2013 at 12:47 am
Contact Microsoft and ask for it 😛
http://support.microsoft.com/contactus/?ws=support&SegNo=1#livehelp_contact
August 16, 2013 at 12:08 am
It depends... It al boils down to good capacity planning and disksize monitoring.
Aks the business/developers for the expected growth of the database. Set the initial size to the expected size...
August 15, 2013 at 11:57 pm
To shorten the cut-over time, you should create full backups (at least of the greater databases) and restore these on the new instance with norecovery. If you do this the...
August 15, 2013 at 6:04 am
Jeff Moden (8/15/2013)
I would hope not. There's no join criteria in the FROM clauses causing HUGE 4 way Cartesian Products.
Thank for pointing that out. I was so focused on...
August 15, 2013 at 5:43 am
Does this statement work?
CREATE VIEW v_WhatsUp_Assyst
AS
SELECT nDeviceID
, nDefaultNetworkInterfaceID
, item_id
, item_keya COLLATE Latin1_General_CI_AS as 'item_keya'
, nDeviceGroupID
, sGroupName COLLATE Latin1_General_CI_AS as 'sGroupName'
, nDefaultNetworkInterfaceID
, sNetworkName COLLATE Latin1_General_CI_AS as 'sNetworkName'
FROM WhatsUp_Assyst_replicatie.dbo.device
, WhatsUp_Assyst_replicatie.dbo.item
, WhatsUp_Assyst_replicatie.dbo.DeviceGroup
, WhatsUp_Assyst_replicatie.dbo.NetworkInterface
UNION...
August 15, 2013 at 5:37 am
SQL Surfer '66 (8/15/2013)
August 15, 2013 at 5:28 am
Sorry, I was too much copying...
Remove the COLLATE commands from all ID fields. Only leave the COLLATE commands on the VARCHAR fields.
August 15, 2013 at 5:17 am
Make sure that all SQL related services are stopped. This also includes the SQL Browser and possibly a third party backup application. Also make sure that no applications connect to...
August 15, 2013 at 5:09 am
Make sure the job_id in the select correspondents with the job_name in the start command. That's a mistake I have made in the past 😉
August 15, 2013 at 5:02 am
CREATE VIEW v_WhatsUp_Assyst
AS
SELECT nDeviceID COLLATE Latin1_General_CI_AS
, nDefaultNetworkInterfaceID COLLATE Latin1_General_CI_AS
, item_id COLLATE Latin1_General_CI_AS
, item_keya COLLATE Latin1_General_CI_AS
, nDeviceGroupID COLLATE Latin1_General_CI_AS
, sGroupName COLLATE Latin1_General_CI_AS
, nDefaultNetworkInterfaceID COLLATE Latin1_General_CI_AS
, sNetworkName COLLATE Latin1_General_CI_AS
FROM WhatsUp_Assyst_replicatie.dbo.device
, WhatsUp_Assyst_replicatie.dbo.item
, WhatsUp_Assyst_replicatie.dbo.DeviceGroup
,...
August 15, 2013 at 4:56 am
After you noticed that the database couldn't come online and it was due to a mistype, you could just execute another ALTER DATABASE command with the correct filepath. That would...
August 15, 2013 at 4:34 am
Viewing 15 posts - 826 through 840 (of 1,409 total)