When we write a query in sql for taking backup on a perticular location then we have to use query like this
BACKUP DATABASE [SQLAuthority]
TO DISK = N'D:\SQLAuthority.bak'
I want to know that what is the actual mean of 'N' (after = sign) here.
One more thing If I dont use the 'N' then backup will be done or not.
Can any one explain this