I am trying to backup sql server 2008R2 database, name of the database is test I am using the following script but i get an error message that database does not exists, but I can see "test" database and tables and i can query them..
Backup-SqlDatabase -ServerInstance testpc-001\SQLEXPRESS -Database test -BackupAction Database
and if i try an edit the above script using
$date = Get-Date -Format yyyyMMddHHmmss$dbname ='test'
Backup-SqlDatabase -ServerInstance SQLEXPRESS -Database$dbname -BackupFile "C:\DBbackups\$($dbname)_db_$($dt).bak"
I am getting an error failed to connect to SQLEXPRESS