Viewing 15 posts - 301 through 315 (of 1,219 total)
It's difficult to be future-proof. Today, you can restore an SQL 2008 backup on any later version of SQL Server, including SQL 2019. But there are of course no guarantee...
April 30, 2019 at 7:13 pm
Personally, I think a database should be owned by an SQL login that exists solely to own that database, and which has not been granted any permissions at all.
But if...
April 29, 2019 at 7:50 pm
So it seems that the entire database is owned by my-domain\ex-employee. Verify this with sp_helpdb and then change the DB owner.
April 29, 2019 at 7:30 pm
Sorry, that was the name of the procedure. You put the name of the queue there.
April 29, 2019 at 7:05 pm
Hm, if the queue has EXECUTE AS OWNER, I think you should not change the queue activation, but the owner of the queue should be changed. Which could be the...
April 29, 2019 at 6:37 pm
In addition to the other posts: Perform the operation in a transaction at first do it with ROLLBACK, so that you can verify that you got the correct results and...
April 29, 2019 at 7:56 am
In SSMS, find the database in Object Explorer. Expand the Service Broker node. There select Queues. Find IdentityServerNotificationCleanup. Right-click and select Script as ALTER to New Query window. Change the...
April 26, 2019 at 6:46 pm
The issue is that the service account for SQL Agent does not have permission on the share. You may be listed as the job owner, but that is irrelevant here.
If...
April 18, 2019 at 7:16 pm
No disagreement with what Jeff says, but I only wanted to point out that there is no reason to use fn_varbintohexstr (unless you are still on SQL 2005), since you...
April 18, 2019 at 7:58 am
If you get back all as text, this is because the OLE DB or ODBC driver for 4D does it this way. Or all columns are simply defined as text...
April 11, 2019 at 8:10 pm
I'm not sure what you are trying to do. (There is no STUFF command. STUFF is just a string function that removes or adds characters in a string.) But you...
April 11, 2019 at 1:31 pm
Duplicate post, see https://www.sqlservercentral.com/forums/topic/cannot-open-backup-device-error.
April 11, 2019 at 10:42 am
The service account for SQL Server needs to have permission on the folder and file. If SQL Server is running under a local account like NT Service\MSSQLSERVER, the account for...
April 11, 2019 at 10:42 am
I guess that if you delete them, you will get problems if you try to use Policy Based Management. That is certainly a feature that is not very widely used....
April 10, 2019 at 11:03 am
It's always venturous to write a query only from a verbal description, as some details may be get lost. Thus, I recommend that you always include CREATE TABLE statements for...
April 9, 2019 at 7:14 pm
Viewing 15 posts - 301 through 315 (of 1,219 total)