IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

MS SQL Server Discussion :

Log shipping : erreur backup/restore


Sujet :

MS SQL Server

  1. #1
    Expert éminent sénior
    Avatar de orafrance
    Profil pro
    Inscrit en
    Janvier 2004
    Messages
    15 967
    Détails du profil
    Informations personnelles :
    Âge : 47
    Localisation : France

    Informations forums :
    Inscription : Janvier 2004
    Messages : 15 967
    Points : 19 075
    Points
    19 075
    Par défaut Log shipping : erreur backup/restore
    Bonjour,

    J'essaye de configurer le Log Shipping sur un environnement de test SQL Server 2005.

    Je vais donc sur ma base primaire AdventureWorks et dans les propriétés j'ajoute une secondary database comme suit après m'être connecté sur le server distant :
    - génération du backup full sur la primary et restore dans la secondary
    - copy file : c:\backup (répertoire de mon server secondaire)
    - standby

    Lors de l'étape "Restoring backup to secondary database", j'ai l'erreur suivante :
    System.Data.SqlClient.SqlError: RESTORE cannot process database 'AdventureWorks' because it is in use by this session. It is recommended that the master database be used when performing this operation. (Microsoft.SqlServer.Smo)
    j'ai trouvé ceci : http://dwexperience.blogspot.com/200...-database.html mais j'ai pas compris comment contourner le problème

  2. #2
    Rédacteur

    Avatar de SQLpro
    Homme Profil pro
    Expert bases de données / SQL / MS SQL Server / Postgresql
    Inscrit en
    Mai 2002
    Messages
    21 888
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Var (Provence Alpes Côte d'Azur)

    Informations professionnelles :
    Activité : Expert bases de données / SQL / MS SQL Server / Postgresql
    Secteur : Conseil

    Informations forums :
    Inscription : Mai 2002
    Messages : 21 888
    Points : 53 121
    Points
    53 121
    Billets dans le blog
    6
    Par défaut
    Peut tu communiquer avec exactitude le code ?

    A +

  3. #3
    Expert éminent sénior
    Avatar de orafrance
    Profil pro
    Inscrit en
    Janvier 2004
    Messages
    15 967
    Détails du profil
    Informations personnelles :
    Âge : 47
    Localisation : France

    Informations forums :
    Inscription : Janvier 2004
    Messages : 15 967
    Points : 19 075
    Points
    19 075
    Par défaut
    le T-SQL exécuté ?

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    -- Execute the following statements at the Primary to configure Log Shipping 
    -- for the database [TESTORA102\TSTMSQL].[AdventureWorks],
    -- The script needs to be run at the Primary in the context of the [msdb] database.  
    ------------------------------------------------------------------------------------- 
    -- Adding the Log Shipping configuration 
     
    -- ****** Begin: Script to be run at Primary: [TESTORA102\TSTMSQL] ******
     
     
    DECLARE @LS_BackupJobId	AS uniqueidentifier 
    DECLARE @LS_PrimaryId	AS uniqueidentifier 
    DECLARE @SP_Add_RetCode	As int 
     
     
    EXEC @SP_Add_RetCode = master.dbo.sp_add_log_shipping_primary_database 
    		@database = N'AdventureWorks' 
    		,@backup_directory = N'\\iter\cfs\public\duboisf\save' 
    		,@backup_share = N'\\iter\cfs\public\duboisf\save' 
    		,@backup_job_name = N'LSBackup_AdventureWorks' 
    		,@backup_retention_period = 2160
    		,@backup_threshold = 60 
    		,@threshold_alert_enabled = 1
    		,@history_retention_period = 5760 
    		,@backup_job_id = @LS_BackupJobId OUTPUT 
    		,@primary_id = @LS_PrimaryId OUTPUT 
    		,@overwrite = 1 
     
     
    IF (@@ERROR = 0 AND @SP_Add_RetCode = 0) 
    BEGIN 
     
    DECLARE @LS_BackUpScheduleUID	As uniqueidentifier 
    DECLARE @LS_BackUpScheduleID	AS int 
     
     
    EXEC msdb.dbo.sp_add_schedule 
    		@schedule_name =N'LSBackupSchedule_TESTORA102\TSTMSQL1' 
    		,@enabled = 1 
    		,@freq_type = 4 
    		,@freq_interval = 1 
    		,@freq_subday_type = 4 
    		,@freq_subday_interval = 15 
    		,@freq_recurrence_factor = 0 
    		,@active_start_date = 20080205 
    		,@active_end_date = 99991231 
    		,@active_start_time = 0 
    		,@active_end_time = 235900 
    		,@schedule_uid = @LS_BackUpScheduleUID OUTPUT 
    		,@schedule_id = @LS_BackUpScheduleID OUTPUT 
     
    EXEC msdb.dbo.sp_attach_schedule 
    		@job_id = @LS_BackupJobId 
    		,@schedule_id = @LS_BackUpScheduleID  
     
    EXEC msdb.dbo.sp_update_job 
    		@job_id = @LS_BackupJobId 
    		,@enabled = 1 
     
     
    END 
     
     
    EXEC master.dbo.sp_add_log_shipping_alert_job 
     
    EXEC master.dbo.sp_add_log_shipping_primary_secondary 
    		@primary_database = N'AdventureWorks' 
    		,@secondary_server = N'FR-IWD-DUBOISF\TSTMSQL' 
    		,@secondary_database = N'AdventureWorks' 
    		,@overwrite = 1 
     
    -- ****** End: Script to be run at Primary: [TESTORA102\TSTMSQL]  ******
     
     
    -- Execute the following statements at the Secondary to configure Log Shipping 
    -- for the database [FR-IWD-DUBOISF\TSTMSQL].[AdventureWorks],
    -- the script needs to be run at the Secondary in the context of the [msdb] database. 
    ------------------------------------------------------------------------------------- 
    -- Adding the Log Shipping configuration 
     
    -- ****** Begin: Script to be run at Secondary: [FR-IWD-DUBOISF\TSTMSQL] ******
     
     
    DECLARE @LS_Secondary__CopyJobId	AS uniqueidentifier 
    DECLARE @LS_Secondary__RestoreJobId	AS uniqueidentifier 
    DECLARE @LS_Secondary__SecondaryId	AS uniqueidentifier 
    DECLARE @LS_Add_RetCode	As int 
     
     
    EXEC @LS_Add_RetCode = master.dbo.sp_add_log_shipping_secondary_primary 
    		@primary_server = N'TESTORA102\TSTMSQL' 
    		,@primary_database = N'AdventureWorks' 
    		,@backup_source_directory = N'\\iter\cfs\public\duboisf\save' 
    		,@backup_destination_directory = N'c:\backup' 
    		,@copy_job_name = N'LSCopy_TESTORA102\TSTMSQL_AdventureWorks' 
    		,@restore_job_name = N'LSRestore_TESTORA102\TSTMSQL_AdventureWorks' 
    		,@file_retention_period = 4320 
    		,@overwrite = 1 
    		,@copy_job_id = @LS_Secondary__CopyJobId OUTPUT 
    		,@restore_job_id = @LS_Secondary__RestoreJobId OUTPUT 
    		,@secondary_id = @LS_Secondary__SecondaryId OUTPUT 
     
    IF (@@ERROR = 0 AND @LS_Add_RetCode = 0) 
    BEGIN 
     
    DECLARE @LS_SecondaryCopyJobScheduleUID	As uniqueidentifier 
    DECLARE @LS_SecondaryCopyJobScheduleID	AS int 
     
     
    EXEC msdb.dbo.sp_add_schedule 
    		@schedule_name =N'DefaultCopyJobSchedule' 
    		,@enabled = 1 
    		,@freq_type = 4 
    		,@freq_interval = 1 
    		,@freq_subday_type = 4 
    		,@freq_subday_interval = 15 
    		,@freq_recurrence_factor = 0 
    		,@active_start_date = 20080207 
    		,@active_end_date = 99991231 
    		,@active_start_time = 0 
    		,@active_end_time = 235900 
    		,@schedule_uid = @LS_SecondaryCopyJobScheduleUID OUTPUT 
    		,@schedule_id = @LS_SecondaryCopyJobScheduleID OUTPUT 
     
    EXEC msdb.dbo.sp_attach_schedule 
    		@job_id = @LS_Secondary__CopyJobId 
    		,@schedule_id = @LS_SecondaryCopyJobScheduleID  
     
    DECLARE @LS_SecondaryRestoreJobScheduleUID	As uniqueidentifier 
    DECLARE @LS_SecondaryRestoreJobScheduleID	AS int 
     
     
    EXEC msdb.dbo.sp_add_schedule 
    		@schedule_name =N'DefaultRestoreJobSchedule' 
    		,@enabled = 1 
    		,@freq_type = 4 
    		,@freq_interval = 1 
    		,@freq_subday_type = 4 
    		,@freq_subday_interval = 15 
    		,@freq_recurrence_factor = 0 
    		,@active_start_date = 20080207 
    		,@active_end_date = 99991231 
    		,@active_start_time = 0 
    		,@active_end_time = 235900 
    		,@schedule_uid = @LS_SecondaryRestoreJobScheduleUID OUTPUT 
    		,@schedule_id = @LS_SecondaryRestoreJobScheduleID OUTPUT 
     
    EXEC msdb.dbo.sp_attach_schedule 
    		@job_id = @LS_Secondary__RestoreJobId 
    		,@schedule_id = @LS_SecondaryRestoreJobScheduleID  
     
     
    END 
     
     
    DECLARE @LS_Add_RetCode2	As int 
     
     
    IF (@@ERROR = 0 AND @LS_Add_RetCode = 0) 
    BEGIN 
     
    EXEC @LS_Add_RetCode2 = master.dbo.sp_add_log_shipping_secondary_database 
    		@secondary_database = N'AdventureWorks' 
    		,@primary_server = N'TESTORA102\TSTMSQL' 
    		,@primary_database = N'AdventureWorks' 
    		,@restore_delay = 0 
    		,@restore_mode = 1 
    		,@disconnect_users	= 1 
    		,@restore_threshold = 45   
    		,@threshold_alert_enabled = 1 
    		,@history_retention_period	= 5760 
    		,@overwrite = 1 
     
    END 
     
     
    IF (@@error = 0 AND @LS_Add_RetCode = 0) 
    BEGIN 
     
    EXEC msdb.dbo.sp_update_job 
    		@job_id = @LS_Secondary__CopyJobId 
    		,@enabled = 1 
     
    EXEC msdb.dbo.sp_update_job 
    		@job_id = @LS_Secondary__RestoreJobId 
    		,@enabled = 1 
     
    END 
     
     
    -- ****** End: Script to be run at Secondary: [FR-IWD-DUBOISF\TSTMSQL] ******
    Et le rapport complet :
    Save Log Shipping Configuration

    - Backing up primary database [AdventureWorks] (Success)

    - Restoring backup to secondary database [FR-IWD-DUBOISF\TSTMSQL].[AdventureWorks] (Error)
    Messages
    SQL Server Management Studio restore database 'AdventureWorks' (Microsoft SQL Server Management Studio)

    ------------------------------
    ADDITIONAL INFORMATION:

    Restore failed for Server 'FR-IWD-DUBOISF\TSTMSQL'. (SqlManagerUI)

    For help, click: http://go.microsoft.com/fwlink?ProdN...r&LinkId=20476

    ------------------------------

    System.Data.SqlClient.SqlError: RESTORE cannot process database 'AdventureWorks' because it is in use by this session. It is recommended that the master database be used when performing this operation. (Microsoft.SqlServer.Smo)

    For help, click: http://go.microsoft.com/fwlink?ProdN...0&LinkId=20476


    - Saving secondary destination configuration [FR-IWD-DUBOISF\TSTMSQL].[AdventureWorks] (Stopped)

    - Rolled Back (Success)

    Note que celui-ci fonctionne parfaitement (pas de backup de la primary) :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
     
    -- Execute the following statements at the Primary to configure Log Shipping 
    -- for the database [TESTORA102\TSTMSQL].[AdventureWorks],
    -- The script needs to be run at the Primary in the context of the [msdb] database.  
    ------------------------------------------------------------------------------------- 
    -- Adding the Log Shipping configuration 
     
    -- ****** Begin: Script to be run at Primary: [TESTORA102\TSTMSQL] ******
     
     
    DECLARE @LS_BackupJobId	AS uniqueidentifier 
    DECLARE @LS_PrimaryId	AS uniqueidentifier 
    DECLARE @SP_Add_RetCode	As int 
     
     
    EXEC @SP_Add_RetCode = master.dbo.sp_add_log_shipping_primary_database 
    		@database = N'AdventureWorks' 
    		,@backup_directory = N'\\iter\cfs\public\duboisf\save' 
    		,@backup_share = N'\\iter\cfs\public\duboisf\save' 
    		,@backup_job_name = N'LSBackup_AdventureWorks' 
    		,@backup_retention_period = 2160
    		,@backup_threshold = 60 
    		,@threshold_alert_enabled = 1
    		,@history_retention_period = 5760 
    		,@backup_job_id = @LS_BackupJobId OUTPUT 
    		,@primary_id = @LS_PrimaryId OUTPUT 
    		,@overwrite = 1 
     
     
    IF (@@ERROR = 0 AND @SP_Add_RetCode = 0) 
    BEGIN 
     
    DECLARE @LS_BackUpScheduleUID	As uniqueidentifier 
    DECLARE @LS_BackUpScheduleID	AS int 
     
     
    EXEC msdb.dbo.sp_add_schedule 
    		@schedule_name =N'LSBackupSchedule_TESTORA102\TSTMSQL1' 
    		,@enabled = 1 
    		,@freq_type = 4 
    		,@freq_interval = 1 
    		,@freq_subday_type = 4 
    		,@freq_subday_interval = 15 
    		,@freq_recurrence_factor = 0 
    		,@active_start_date = 20080205 
    		,@active_end_date = 99991231 
    		,@active_start_time = 0 
    		,@active_end_time = 235900 
    		,@schedule_uid = @LS_BackUpScheduleUID OUTPUT 
    		,@schedule_id = @LS_BackUpScheduleID OUTPUT 
     
    EXEC msdb.dbo.sp_attach_schedule 
    		@job_id = @LS_BackupJobId 
    		,@schedule_id = @LS_BackUpScheduleID  
     
    EXEC msdb.dbo.sp_update_job 
    		@job_id = @LS_BackupJobId 
    		,@enabled = 1 
     
     
    END 
     
     
    EXEC master.dbo.sp_add_log_shipping_alert_job 
     
    EXEC master.dbo.sp_add_log_shipping_primary_secondary 
    		@primary_database = N'AdventureWorks' 
    		,@secondary_server = N'FR-IWD-DUBOISF\TSTMSQL' 
    		,@secondary_database = N'AdventureWorks' 
    		,@overwrite = 1 
     
    -- ****** End: Script to be run at Primary: [TESTORA102\TSTMSQL]  ******
     
     
    -- Execute the following statements at the Secondary to configure Log Shipping 
    -- for the database [FR-IWD-DUBOISF\TSTMSQL].[AdventureWorks],
    -- the script needs to be run at the Secondary in the context of the [msdb] database. 
    ------------------------------------------------------------------------------------- 
    -- Adding the Log Shipping configuration 
     
    -- ****** Begin: Script to be run at Secondary: [FR-IWD-DUBOISF\TSTMSQL] ******
     
     
    DECLARE @LS_Secondary__CopyJobId	AS uniqueidentifier 
    DECLARE @LS_Secondary__RestoreJobId	AS uniqueidentifier 
    DECLARE @LS_Secondary__SecondaryId	AS uniqueidentifier 
    DECLARE @LS_Add_RetCode	As int 
     
     
    EXEC @LS_Add_RetCode = master.dbo.sp_add_log_shipping_secondary_primary 
    		@primary_server = N'TESTORA102\TSTMSQL' 
    		,@primary_database = N'AdventureWorks' 
    		,@backup_source_directory = N'\\iter\cfs\public\duboisf\save' 
    		,@backup_destination_directory = N'c:\backup' 
    		,@copy_job_name = N'LSCopy_TESTORA102\TSTMSQL_AdventureWorks' 
    		,@restore_job_name = N'LSRestore_TESTORA102\TSTMSQL_AdventureWorks' 
    		,@file_retention_period = 4320 
    		,@overwrite = 1 
    		,@copy_job_id = @LS_Secondary__CopyJobId OUTPUT 
    		,@restore_job_id = @LS_Secondary__RestoreJobId OUTPUT 
    		,@secondary_id = @LS_Secondary__SecondaryId OUTPUT 
     
    IF (@@ERROR = 0 AND @LS_Add_RetCode = 0) 
    BEGIN 
     
    DECLARE @LS_SecondaryCopyJobScheduleUID	As uniqueidentifier 
    DECLARE @LS_SecondaryCopyJobScheduleID	AS int 
     
     
    EXEC msdb.dbo.sp_add_schedule 
    		@schedule_name =N'DefaultCopyJobSchedule' 
    		,@enabled = 1 
    		,@freq_type = 4 
    		,@freq_interval = 1 
    		,@freq_subday_type = 4 
    		,@freq_subday_interval = 15 
    		,@freq_recurrence_factor = 0 
    		,@active_start_date = 20080207 
    		,@active_end_date = 99991231 
    		,@active_start_time = 0 
    		,@active_end_time = 235900 
    		,@schedule_uid = @LS_SecondaryCopyJobScheduleUID OUTPUT 
    		,@schedule_id = @LS_SecondaryCopyJobScheduleID OUTPUT 
     
    EXEC msdb.dbo.sp_attach_schedule 
    		@job_id = @LS_Secondary__CopyJobId 
    		,@schedule_id = @LS_SecondaryCopyJobScheduleID  
     
    DECLARE @LS_SecondaryRestoreJobScheduleUID	As uniqueidentifier 
    DECLARE @LS_SecondaryRestoreJobScheduleID	AS int 
     
     
    EXEC msdb.dbo.sp_add_schedule 
    		@schedule_name =N'DefaultRestoreJobSchedule' 
    		,@enabled = 1 
    		,@freq_type = 4 
    		,@freq_interval = 1 
    		,@freq_subday_type = 4 
    		,@freq_subday_interval = 15 
    		,@freq_recurrence_factor = 0 
    		,@active_start_date = 20080207 
    		,@active_end_date = 99991231 
    		,@active_start_time = 0 
    		,@active_end_time = 235900 
    		,@schedule_uid = @LS_SecondaryRestoreJobScheduleUID OUTPUT 
    		,@schedule_id = @LS_SecondaryRestoreJobScheduleID OUTPUT 
     
    EXEC msdb.dbo.sp_attach_schedule 
    		@job_id = @LS_Secondary__RestoreJobId 
    		,@schedule_id = @LS_SecondaryRestoreJobScheduleID  
     
     
    END 
     
     
    DECLARE @LS_Add_RetCode2	As int 
     
     
    IF (@@ERROR = 0 AND @LS_Add_RetCode = 0) 
    BEGIN 
     
    EXEC @LS_Add_RetCode2 = master.dbo.sp_add_log_shipping_secondary_database 
    		@secondary_database = N'AdventureWorks' 
    		,@primary_server = N'TESTORA102\TSTMSQL' 
    		,@primary_database = N'AdventureWorks' 
    		,@restore_delay = 0 
    		,@restore_mode = 1 
    		,@disconnect_users	= 1 
    		,@restore_threshold = 45   
    		,@threshold_alert_enabled = 1 
    		,@history_retention_period	= 5760 
    		,@overwrite = 1 
     
    END 
     
     
    IF (@@error = 0 AND @LS_Add_RetCode = 0) 
    BEGIN 
     
    EXEC msdb.dbo.sp_update_job 
    		@job_id = @LS_Secondary__CopyJobId 
    		,@enabled = 1 
     
    EXEC msdb.dbo.sp_update_job 
    		@job_id = @LS_Secondary__RestoreJobId 
    		,@enabled = 1 
     
    END 
     
     
    -- ****** End: Script to be run at Secondary: [FR-IWD-DUBOISF\TSTMSQL] ******

  4. #4
    Rédacteur

    Avatar de SQLpro
    Homme Profil pro
    Expert bases de données / SQL / MS SQL Server / Postgresql
    Inscrit en
    Mai 2002
    Messages
    21 888
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Var (Provence Alpes Côte d'Azur)

    Informations professionnelles :
    Activité : Expert bases de données / SQL / MS SQL Server / Postgresql
    Secteur : Conseil

    Informations forums :
    Inscription : Mai 2002
    Messages : 21 888
    Points : 53 121
    Points
    53 121
    Billets dans le blog
    6
    Par défaut
    J'ai l'impression que la destination est la même que l'origine....

    A +

  5. #5
    Expert éminent sénior
    Avatar de orafrance
    Profil pro
    Inscrit en
    Janvier 2004
    Messages
    15 967
    Détails du profil
    Informations personnelles :
    Âge : 47
    Localisation : France

    Informations forums :
    Inscription : Janvier 2004
    Messages : 15 967
    Points : 19 075
    Points
    19 075
    Par défaut
    le nom de la base est le même : AdventureWorks mais l'origine c'est TESTORA102\TSTMSQL et la destination FR-IWD-DUBOISF\TSTMSQL. De toute façon, pour avoir commis l'erreur c'est pas possible SQL Server t'insulte immédiatement si la destination est la base primaire

Discussions similaires

  1. LOG SHIPPING et Backup de journal
    Par agdid04 dans le forum Administration
    Réponses: 4
    Dernier message: 25/01/2008, 09h28
  2. Demande de précisions sur Backup/Restore et transactions
    Par lio33 dans le forum Connexion aux bases de données
    Réponses: 1
    Dernier message: 16/11/2005, 12h08
  3. avoir les log d'erreur mysql
    Par simoryl dans le forum Administration
    Réponses: 4
    Dernier message: 06/09/2005, 14h24
  4. interbase - grant - backup/restore
    Par frantzgac dans le forum InterBase
    Réponses: 2
    Dernier message: 22/04/2005, 13h21
  5. Too Many versions & Backup-Restore à rallonge
    Par Harry dans le forum Administration
    Réponses: 14
    Dernier message: 30/06/2004, 18h10

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo