Scheduling a script performing database backup

I wrote a script performing a backup of all databases located on a SQL Server's instance using the Backup-SqlDatabase command. As a script from the Windows Powershell ISE it works fine. I am working on a Windows Server 2012
The next step is to schedule this from the Windows Task Scheduler. The Action program is PowerShell and the arguments is -command "& 'C:\folder\myscript.ps1'" and it doesn't work, the script appears to fire off but it doesn't
perform the backup. The error looks strange it looks like it can't connect to the SQL Instance, I tried a whole bunch of options I found googling around but none worked. What am I missing ?

1) Using -File instead of -Command didn't work, it didn't even fire the script
2) I have got 'Run with the highest privileges' selected
3) The error
4) The script
# backup_AllDb.ps1
# Full backup for database for specified SQL instance
# Change log:
# July 3, 2012: Thomas LaRock, http://thomaslarock.com
# Initial Version
# Get the SQL Server instance name from the command line
# leaving $dest null will result in default backup path being used
param(
[string]$inst=$null,
[string]$dest=$null
# Load SMO assembly, and if we're running SQL 2008 DLLs load the SMOExtended and SQLWMIManagement libraries
$v = [System.Reflection.Assembly]::LoadWithPartialName( 'Microsoft.SqlServer.SMO')
if ((($v.FullName.Split(','))[1].Split('='))[1].Split('.')[0] -ne '9') {
[System.Reflection.Assembly]::LoadWithPartialName('Microsoft.SqlServer.SMOExtended') | out-null
[System.Reflection.Assembly]::LoadWithPartialName('Microsoft.SqlServer.SQLWMIManagement') | out-null
# Handle any errors that occur
Function Error_Handler {
Write-Host "Error Category: " + $error[0].CategoryInfo.Category
Write-Host " Error Object: " + $error[0].TargetObject
Write-Host " Error Message: " + $error[0].Exception.Message
Write-Host " Error Message: " + $error[0].FullyQualifiedErrorId
Trap {
# Handle the error
Error_Handler;
# End the script.
break
If ($inst -eq "")
{ $inst = "MYSERVERNAME\MYINSTANCE" };
$srv = new-object ('Microsoft.SqlServer.Management.Smo.Server') $inst
# If missing set default backup directory.
If ($dest -eq "")
{ $dest = "C:\SQLBackups" };
Write-Output ("Started at: " + (Get-Date -format yyyy-MM-dd-HH:mm:ss));
cd SQLSERVER:\SQL\$inst\Databases
#start full backups
foreach($database in (Get-ChildItem -Force)) {
$dbName = $database.Name
if ($dbName -ne "tempdb") {
$timestamp = Get-Date -Format MMddyyHHmm
$bakFile = $dest + "\" + $dbName + "_full_" + $timestamp + ".bak"
Backup-SqlDatabase -Database $dbName -Initialize -BackupFile $bakFile
Write-Output ("Finished at: " + (Get-Date -format yyyy-MM-dd-HH:mm:ss));

Similar Messages

  • Performing database backup using SAPDBA

    Guys could u please let me know how to take whole database backup using SAPDBA to another hard disk attached to the system (i.e rather than taking the backupto /oracle/<SID>/sapbackup on the same system i want to take the backup to another harddisk attached to the same system?)
    should i change any parameter in init<SID>.DBA?

    You dont need to change the init<SID>.dba.
    Rather you need to change init<SID>.sap.
    make a copy of init<SID>.sap and save it as for e.g. init<SID>1.sap change the value of the following entries as follows.
    backup_root_dir=your desired directory
    stage_root_dir=your desired directory
    Now use this init<SID>1.sap as the profile parameter file in sapdba and your backup will be stored in the"your desired directory".

  • Scheduling RMAN script on windows

    I want to schedule the following full database backup script to run every night at 10pm. Can anyone guide me how I can schedule it on windows OS but please don't suggest OEM as currently I have it scheduled thought OEM only.
    run
    allocate channel ch1 type disk format 'f:\backup\full_db_%D_%T.bak';
    backup database;
    }

    You can try to use DBMS_SCHEDULER. Following messages should help.
    Re: need backup script
    Guide to External Jobs on 10g with dbms_scheduler e.g. scripts,batch files

  • Database Backup script

    Hi Team,
    we have two instances. Each instance 30 databases available.
    Now i want to take all the database backups at a time could you guys please help me to writing a script for this.
    Thanks in advance.
    subu

    Hi,
    Checkout my PowerShell script:
    https://github.com/janikvonrotz/Powershell-Profile/blob/master/functions/SQLServer/Backup-AllSQLDBs.ps1
    Run this script with scheduled Job. To handle the backup file retention you can use this snippet:
    https://gist.github.com/janikvonrotz/5749452/raw/fffdec7417eb14f5bc62f1e02dc8b871ed259d18/KeepNumberOfFiles.ps1
    It's part of my PowerShell Profile project:
    https://github.com/janikvonrotz/Powershell-Profile
    Here's an example of how I backup a SharePoint Installation with this Project:
    https://gist.github.com/janikvonrotz/6936914/raw/4fa02a69a37363b5330c0d63b6d1cfc5a05ffebd/Backup-SharePointStandalone.ps1

  • Error restoring SQL 2008 R2 DB into SQL 2012: BACKUP LOG cannot be performed because there is no current database backup.

    I have a SQL 2008 R2 database that I am trying to move to 2012.  Made a full backup of the database in 2008 R2.  Recovery model is Simple, compatibility level is 2008  Went to 2012, created a dummy database, did Tasks--> Restore -->
    Database , located the backup file, selected it, changed the file locations and tried to restore the backup (with overwrite option), got the following error:
    BACKUP LOG cannot be performed because there is no current database backup.
    This is a simple task that has always worked in 2008 R2.  Does anyone know what the problem is and a possible solution?
    Thanks

    Hi,
    This error occurs when the database recovery model has been changed to Simple and/or the recovery model has been changed back to Full but a full backup has not been performed since the change.
      If a full backup has been performed, the following conditions will require that another full backup be taken:
     · The recovery model had been changed without taking a full backup
     · A SQL maintenance plan task had changed the recovery model (reindexing can cause this)
     · A backup specifying TRUNCATE_ONLY had been run on the database
     · The database was detached from another server and attached to the current server
    Additionally, if we take full database backup after the Database is set to readonly, Then transaction log backup we will end up with this error. This is expected behavior. I have list an example within the link below.
    Please check above conditions and fix your issue, if you have any concern, please let me know.
    Example:
    BACKUP LOG cannot be performed because there is no current database backup.
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/b5c36e60-836f-4c9e-b9d7-3fb3f3ee4d37/backup-log-cannot-be-performed-because-there-is-no-current-database-backup
    Thanks
    Candy Zhou

  • Need a Script to check Database backup chain for revovery

    Dear All,
    any having a handy script to check database backup chain ,
    Database A --> Full backup  -- Diff -- log1 --Log 2 ...... and scan through the files to validate if we can recover the database using the avaiable backups.
    Regards
    Sufian
    Mohd Sufian www.sqlship.wordpress.com Please mark the post as Answered if it helped.

    You can use below TSQL
    set nocount on
    go
    if exists ( select name from tempdb..sysobjects where name like '#DatabasesBackupsStatus%')
    drop table #DatabasesBackupsStatus
    GO
    create table #DatabasesBackupsStatus
    ServerName varchar(100) null,
    DBName varchar(100) null,
    RecoveryModel varchar(100) null,
    LastFullbackup datetime null,
    days_since_Lastfullbackup int null,
    days_since_Lastdiffbackup int null,
    HOURS_since_LastLogbackup int,
    DBStatus varchar (100) null,
    FullBackupLocation varchar(1000) null,
    MEDIASET INT,
    JobOwner varchar(100) null
    Go
    insert into #DatabasesBackupsStatus(ServerName,DBName)
    select convert(varchar,serverproperty('ServerName')),a.name
    from master.dbo.sysdatabases a
    where a.name <> 'tempdb'
    update #DatabasesBackupsStatus
    set LastFullbackup=b.backup_start_date,
    days_since_Lastfullbackup=datediff(dd,b.backup_start_date,getdate()),
    MEDIASET=b.media_set_id
    from #DatabasesBackupsStatus a,(select database_name,MAX(media_set_id)media_set_id,max(backup_start_date) backup_start_date
    from msdb..backupset where type='D' group by database_name)b
    where a.DBName=b.database_name
    update #DatabasesBackupsStatus
    set RecoveryModel=convert(sysname,DatabasePropertyEx(DBName,'Recovery'))
    update #DatabasesBackupsStatus
    set DBStatus=convert(sysname,DatabasePropertyEx(DBName,'Status'))
    update d
    set d.FullBackupLocation=b.physical_device_name
    from #DatabasesBackupsStatus d , msdb..backupmediafamily b
    where d.MEDIASET =b.media_set_id
    update d
    set d.days_since_Lastdiffbackup=datediff(dd,b.backup_finish_date,getdate())
    from #DatabasesBackupsStatus d , (select database_name,max(backup_finish_date) backup_finish_date
    from msdb..backupset where type ='I' group by database_name) b
    where d.DBName = b.database_name
    update d
    set d.JobOwner=b.[user_name]
    from #DatabasesBackupsStatus d , msdb..backupset b
    where d.MEDIASET = b.media_set_id
    update d
    set d.HOURS_since_LastLogbackup=datediff(hh,b.backup_finish_date,getdate())
    from #DatabasesBackupsStatus d , (select database_name,max(backup_finish_date) backup_finish_date
    from msdb..backupset where type ='L' group by database_name) b
    where d.DBName = b.database_name
    AND d.RecoveryModel != 'SIMPLE'
    Go
    select * from #DatabasesBackupsStatus
    Go
    drop table #DatabasesBackupsStatus
    Please Mark This As Answer if it solved your issue 
    Please Mark This As Helpful if it helps to solve your issue
    Thanks,
    Shashikant

  • Restoring the database backup daily after performing some changes on d'base

    Hi all,
    Im a JUNIOR DBA... please help me..
    I have an Oracle 10g database and i have taken a cold backup for the same.(Say i have 10 users)
    MONDAY - Now, suppose out of the existing 10 users, i updated 6 tables in each user, so the total updated tables are 60 tables, these tables are only for TESTING purpose.
    TUESDAY - Now, suppose out of the existing 10 users, i updated 4 tables in each user, so the total updated tables are 40 tables, these tables are only for TESTING purpose.
    Now the question is -
    Daily i need to restore the original database backup atleast once, where in i dont want the updated tables of say MONDAY..
    Please, let me know how to proceed
    Regards,
    - Sri

    Start with the backup and recovery guide. It will tell you how to work this scenario. Basically, you will restore Sunday backup and apply archived redo logs until you reach the point in time immediately before the changes you do not want.

  • Script for cold backup on windows

    looking for a script that can be scheduled nightly to perform
    a cold backup to disk of a 8.1.7 database on windows.
    while i've seen many, i'm looking for one that will keep 3 days worth
    of backups... then write over the oldest etc...
    thanks
    dg

    set term off
    set head off
    set feedback off
    set verify off
    spool c:\coldbackup.bat
    select 'copy '||name||' c:\DBBACKUP' from v$datafile;
    select 'copy '||name||' c:\DBBACKUP' from v$controlfile;
    select 'copy '||name||' c:\DBBACKUP' from v$tempfile;
    select 'copy '||member||' c:\DBBACKUP' from v$logfile;
    spool off
    shutdown IMMEDIATE
    host c:\coldbackup.bat
    startup
    host del c:\coldbackup.bat
    set term on
    set head on
    set feedback on
    set verify on

  • DBACockpit Configuration - Remote Database backup of Java Stack.

    Hi All,
    I am configuring remote database backup of my SAP Java stack system.
    I have successfully connected the system in dbacockpit. I have gateway installed also on the remote host system. but Database scheduling on DB13 failed.
    On the OS of CEN system, I can connect to the host system of the remote using the OPS$ logon and i.e
    sqlplus /@SID as sysdba  - (It connected, to confirm i querried the v$instance I was also able to shutdown the remote system)
    E:\>sqlplus /@SID as sysdba
    SQL*Plus: Release 10.2.0.4.0 - Production on Wed May 18 15:37:46 2011
    Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    But when I ran the brtools to perform the backup I got this error.
    "BR0301W SQL error -12560 at location BrDbConnect-2, SQL statement:

    Hi Niyi,
    This is a TNS error. The system is not able to connect TNS by using br*tools.
    Firstly, check your environment variables. They should be as same as java system environmnt variables.
    Secondly, check the link below;
    [BR0301W SQL error -1017;
    You need to create a synonym and SAPUSER table for the gateway installation <sid>adm user on Java database. By doing so, br*tools will be able to connect to the java database.
    Best regards,
    Orkun Gedik

  • Shell script for DB backup

    HI,
    i have written some java code Database backup but there are some problems with that so now i need to write shell script for db backup.
    what i was doing in java code i was running command like that
    /usr/local/bin/tar cvzf /export/home/monitor/FILE_20091005.tar.gz FILES/*20091005.*which compress the all *20091005* files (myisam table files)
    but after compression file doesn't extract
    so i have to write shell script for that ..... can any body guide me how can i write that kind of script and put it in cron job.
    thanks

    soundar wrote:
    Hi all,
    I have migrated database from 8i to 10gr2.For Backup in 8i, we used a RMAN shell script (scheduled uding cron tab) to backup the database to Tape.(VERITAS BACKUP).
    I am new to 10G.I checked out the options to backup the database using Oracle Enterprise manager DB console.
    http://www.oracle.com/technology/obe/10gr2_db_single/ha/rman/rman_otn.htm#t1d
    I am planning to take a test backup using the steps mentioned inthe above url.Could any one suggest whcih is the best option for database backup,eiether to use Oracle Enterprise manager DB console or thru RMAN shell script for backup..?
    Edited by: soundar on Mar 9, 2010 10:53 PMDear soudar
    I woudn't suggest you to work with EM if you want to be a professional DBA. Start learning RMAN and use CLI instead of GUI
    Those who live by the GUI, die by the GUI

  • Script for cold backup using RMAN

    Dear all,
    db_version:-10.2.0.4
    os_version:- Windows 2003 server
    I wish to schedule a script that will take cold backup of my database using RMAN.
    Any help is appreciated ..
    Edited by: user12000301 on May 18, 2011 5:02 AM

    Dear All,
    Thanks a lot for your valuable time :
    However i have managed to do it as follows :
    1. First i have configure the parameter of RMAN ( Since it is my UAT in Noarchive log mode), I have never tried RMAN cold backup on the same.
    Following is the out put of SHOW ALL;
    RMAN> show all;
    using target database control file instead of recovery catalog
    RMAN configuration parameters are:
    CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 2 DAYS;
    CONFIGURE BACKUP OPTIMIZATION OFF;
    CONFIGURE DEFAULT DEVICE TYPE TO DISK;
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO 'D:\DB\RMAN_BKP\BACKUPS%F';
    CONFIGURE DEVICE TYPE DISK PARALLELISM 2 BACKUP TYPE TO COMPRESSED BACKUPSET;
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1;
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1;
    CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT 'D:\DB\RMAN_BKP\BACKUPS\DB_%U.%r';
    CONFIGURE MAXSETSIZE TO UNLIMITED;
    CONFIGURE ENCRYPTION FOR DATABASE OFF;
    CONFIGURE ENCRYPTION ALGORITHM 'AES128';
    CONFIGURE ARCHIVELOG DELETION POLICY TO APPLIED ON STANDBY;
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO 'D:\DB\RMAN_BKP\BACKUPS\SNCFDB.ORA';
    2. I have created a rman_cold_bkp.bat file which has following entry :
    cd c:\oracle10g\bin
    set oracle_sid=DB
    rman target system/*** @D:\DB\RMAN_BKP\SCRIPT\rman_cold_bkp.rcv log=D:\DB\RMAN_BKP\SCRIPT\rman_cold_bkp.log
    exit
    3. Whereas rman_cold_bkp.rcv file contains following contents:
    run
    allocate channel C1 device type disk;
    shutdown immediate;
    startup mount;
    backup database;
    alter database open;
    release channel C1;
    exit
    I did checked it and it;s working fine for me :-)
    Regards,
    Girish

  • How to calculate storage space for archive log files and database backups?

    Hi all,
    I have a 1.8 terabyte Oracle 9i database and need to plan for how much additional disk space I will need to perform nightly backups and for archivelog files. Is there a script or formula available that can help me estimate how much required disk space I will need to hold a days worth of archived logs as well as a nightly export dump file and a full hot RMAN backup on disk?
    Thanks!

    I'm not sure how to estimate the size of your backups, especially if you use incrementals. However, the space required for archive logs will be equal to the amount of REDO your DB generates. I would count the number of log switches per day with a query like the following:
    select trunc(first_time), count(*)
    from v$log_history
    group by trunc(first_time)
    I would then take the average and multiply this count by the size of your redo log files (assuming they are all the same size).

  • Batch file to run daily database backup

    Our company has just started using an Oracle database for a third-party software. I am currently performing a manual daily database backup through the dos command prompt (exp.exe "system_id"\password@"database" parfile=export_parameter.txt). This creates and .dmp and .log file for the database backup.
    Does anyone know of a batch file or another method that I can use to perform an automatic daily backup of my database?
    I would really appreciate your input. Thanks.

    Hi,
    Put your exp command into a .bat file, and schedule it by AT dos command (or WINAT, if you have it).
    hth
    Paolo

  • Database backup and Restore do not bring latest Schema/Data.

    Hi,
    I have scheduled a Full SQL backup for a LIVE database every evening. Now, if I restore this backup to Test environment, it does not bring the changes from LIVE. The script I am using is:
    BACKUP DATABASE [XXX_Applications] 
    TO  DISK = N'\\XXXX\XXX_Applications.bak' WITH NOFORMAT, 
    NOINIT, 
    NAME = N'XXXX_Applications-Full Database Backup',
    SKIP, 
    NOREWIND, 
    NOUNLOAD, 
    COMPRESSION, 
    STATS = 10
    GO
    declare @backupSetId as int
    select @backupSetId = position from msdb..backupset where database_name=N'XXXX_Applications' 
    and backup_set_id=(select max(backup_set_id) from msdb..backupset 
    where database_name=N'XXXX_Applications' )
    --Check for backupSetId  NULL
    RESTORE VERIFYONLY FROM  DISK = N'\\XXXX\XXX_Applications.bak' 
    WITH  FILE = @backupSetId,  NOUNLOAD,  NOREWIND
    I had to manually go to SSMS->Tasks->SQL Backup. Restoring the manual backup brought all the latest changes from live.
    Not sure what might be the issue with scripted backup.How do I make sure that Backup generated is correct?
    Shady

    BACKUP DATABASE [XXX_Applications] 
    TO  DISK = N'\\XXXX\XXX_Applications.bak' WITH NOFORMAT, 
    NOINIT, 
    Hello Shady,
    NOINIT means the backup file stays as it is and the new backup is appended to the backup file. With the default RESTORE Syntax you restore the first backup in the file, not the latest backup; therefore you get old data/Schema.
    Change it to INIT to clear the backup file first before the backup is added or address the latest backup in the RESTORE command.
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Dynamically automating all database backups with known filenames.

    I need to know the name of the full database backup, so I can restore to another server. I came up with this basic script for backing up (script 1) but I want to do this dynamically, and began to play with cursors, which did not go so well. The second script
    seems to create an infinite loop or some nasty Cartesian. If anyone can point me in a direction to getting my peanut butter to mix with my chocolate I'd appreciate it.
    FWIW, the end goals are to know the db name and do this in a dynamic way so anytime a db is dropped or added we do not have to remember to update backup jobs. Up till now maintenance plans worked, but now we want to know the backup name so we can restore
    db's to a preprod environment. Any suggestions/guidance/links would be appreciated.
    declare @dbname varchar(100)
    declare @backupdate varchar(25)
    SET @backupdate = convert(varchar(25), GETDATE(), 112)
    declare @backupfilename varchar(150)
    declare @backupSQL varchar(MAX)
    Set @dbname = 'master'
    Set @backupfilename = @dbname + @backupdate + '.bak'
    SET @backupSQL = 'BACKUP DATABASE '+@dbname+' TO DISK = N''\\delos\SQL_Live_Backup\PreProd_BackupRestore\'+@backupfilename+'''
    WITH FORMAT, INIT, NAME = N'''+@backupfilename+''', SKIP, NOREWIND, NOUNLOAD, STATS = 10, CHECKSUM, CONTINUE_AFTER_ERROR'
    EXEC(@backupSQL)
    declare @dbname varchar(100)
    declare @backupdate varchar(25)
    SET @backupdate = convert(varchar(25), GETDATE(), 112)
    declare @backupfilename varchar(150)
    DECLARE db_cursor CURSOR
    FOR SELECT name FROM sys.databases WHERE NAME NOT LIKE 'zz_%' AND [state]=0 AND is_read_only=0 AND user_access in (0,1)
    OPEN db_cursor
    FETCH NEXT FROM db_cursor
    INTO @dbname
    WHILE @@FETCH_STATUS = 0
    BEGIN
    PRINT @dbname + @backupdate + '.bak'
    END
    CLOSE db_cursor;
    DEALLOCATE db_cursor;

    I keep the names of the databases need to be backup in the separate table and then run the query.
    This create creates a folder (name of the database)  and keeps the files for 6 days old IIRW.
    CREATE PROCEDURE [dbo].[sp_DatabasesToBackup1] @LocalBackupPath AS VARCHAR(8000)
    AS
    DECLARE @name AS SYSNAME
    DECLARE @CommandString AS VARCHAR(8000)
    DECLARE @SQL AS VARCHAR(8000)
    DECLARE  @FS SMALLINT
    SET NOCOUNT ON
    CREATE TABLE #t(dbname VARCHAR(8000))
    BEGIN TRY
    ;WITH cte
    AS
    SELECT  [name],ROW_NUMBER() OVER (ORDER BY name) rn
    FROM sysdatabases INNER JOIN
    DatabasesToBackup ON
    sysdatabases.dbid = DatabasesToBackup.dbid
    WHERE  DATABASEPROPERTYEX ( [name] , 'status' )='ONLINE'
    ) INSERT INTO #t SELECT [name] FROM cte 
    ORDER BY rn
    DECLARE sysdatabasesCursor CURSOR FOR
    SELECT dbname FROM #t
    OPEN sysdatabasesCursor
    FETCH NEXT FROM sysdatabasesCursor
    INTO @name
    SELECT  @FS =  @@FETCH_STATUS
    WHILE (@FS <>-1)-- 0 ---=<>-1
    BEGIN
      PRINT 'Start Backup ' + @name + ' database. '
      SET @CommandString = 'IF NOT EXIST "' + @LocalBackupPath + '\' + @name + '" MD "' + @LocalBackupPath + '\' + @name + '"'
      EXEC xp_cmdshell @CommandString
      PRINT 'Create Local Dirctory Complete.'
      SET @SQL = 'BACKUP DATABASE [' + @name + '] TO DISK = N''' + @LocalBackupPath + '\' + @name + '\' + @name + CONVERT(VARCHAR, GETDATE(), 112) + '.bak'' WITH INIT, NOUNLOAD, NAME = N''' + @name + ' backup'', SKIP, STATS = 10, NOFORMAT'
      EXEC(@SQL)
      FETCH NEXT FROM sysdatabasesCursor INTO @name
      SELECT @FS =  @@FETCH_STATUS
      SELECT @@FETCH_STATUS  AS '@@FETCH_STATUS'
      SELECT @FS AS '@FS'
    END
    CLOSE sysdatabasesCursor
    DEALLOCATE sysdatabasesCursor
    END TRY
    BEGIN CATCH
           SELECT ERROR_MESSAGE()
           ---INSERT INTO Errors(ERRMSG,CommandString) SELECT ERROR_MESSAGE(),@CommandString
    END CATCH;
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

Maybe you are looking for

  • Apple ID on my computer no longer exists, so I can't sign out

    The Apple ID that is installed on my computer is no longer the email address that I use for my Apple ID, and the email account itself has been deleted so I cannot sign into it to change the settings. My current Apple ID works online on apple.com but

  • I want to use windows 7 and vista to store movie files

    Im having trouble!! I have windows vista on my destop using itunes and saving movies i pruchase very well, but i cannot purchase HD movies with vista op! So i have a laptop with windows 7 on it! Now my laptop is autorised but cannot see the movies of

  • How can I download PDF's

    I cannot download PDF documents. I get an error message; i.e., The document "1-15_HowtoSellWithoutSalesy.pdf" could not be exported as "1-15_HowtoSellWithoutSalesy.pdf". This is a recent event since I installed the newer version of Adobe. Any thought

  • Create IDOC ddf file

    Hi all, Can any one please tell me how to create DDF file, is there any standard program in SAP? If no SAP program any alternate for this? Need to create DDF for 850,855,856 and 810. IDOCS: ORDERS05 - Purchase orders - (850) ORDRSP - Message Type, Ba

  • Error message when attempting update

    While attempting to update iTunes, download was not allowed.  Following message appeared: MSVCR80.dll