Viewing 15 posts - 16 through 30 (of 235 total)
Check this reference: https://www.mssqltips.com/sqlservertip/5526/how-to-setup-and-use-a-sql-server-stretch-database
December 13, 2019 at 6:56 am
You could use the following command which returns the URL of the backup file:
SELECT *
FROM managed_backup.fn_available_backups ('databasename')
For more details, please refer to https://docs.microsoft.com/en-us/sql/relational-databases/system-functions/managed-backup-fn-available-backups-transact-sql?view=sql-server-ver15.
Hope this could help you.
November 11, 2019 at 8:34 am
You may read these blogs: how to attach SQL database without LDF
https://blog.sqlauthority.com/2010/04/26/sql-server-attach-mdf-file-without-ldf-file-in-database/
https://www.stellarinfo.com/blog/attach-sql-database-without-transaction-log-file/
November 11, 2019 at 8:33 am
No, you cannot get URL from GUID. The backup most probably would be done on Blob contained in the Azure storage account. You can reverse engineer to find it out
November 6, 2019 at 3:32 am
RESTRICTED_USER Access Mode
In RESTRICTED_USER access mode, only the users who have db_owner or db_creator permission can access. Users who belong to the sysadmin fixed server role can also access the...
October 22, 2019 at 9:53 am
SQL 2019 is in very early days
I would suggest SQL 2017 as its the latest stable version available.
SQL 2019 has, in addition, some integration features with external sources but it's...
October 22, 2019 at 9:09 am
No, is not possible to downgrade a database. There is absolutely no way you can restore or attach this database to the SQL Server 2016 instance you are trying to...
October 18, 2019 at 9:37 am
There are a few limitations for restoring the filegroup:
October 14, 2019 at 9:12 am
I read each and every line of this conversation. Thanks, Alejandro for posting this issue very clearly and updating it. I agree with @jeff and @Steve....
September 25, 2019 at 5:38 am
When you take a backup, you have the following options:
Media Options:
Option to overwrite media
In my...
August 13, 2019 at 10:08 am
These are the steps to restore the database from suspect mode:
Turn off the flag and set the database to EMERGENCY
EXEC sp_resetstatus ‘db_name’;
ALTER DATABASE db_name SET EMERGENCY
July 4, 2019 at 3:47 am
A user does not require explicit SELECT permissions on the table to view data through a VIEW, as long as the user has SELECT permissions on the VIEW.
Granting the user...
June 20, 2019 at 4:36 am
Are you getting any error message?
June 20, 2019 at 4:27 am
You can read this blog: https://www.mssqltips.com/sqlservertip/1914/sql-server-database-partitioning-myths-and-truths/
June 20, 2019 at 3:52 am
I agree with Sue,
You are selecting the file from SQL Corrupt File folder. what does it mean?
April 9, 2019 at 9:23 am
Viewing 15 posts - 16 through 30 (of 235 total)