Viewing 15 posts - 481 through 495 (of 4,477 total)
You can change the owner of databases or schemas using alter authorization. For Example:
--change database owner
ALTER AUTHORIZATION ON DATABASE::YourDatabaseName TO sa;
--change schema owner
ALTER AUTHORIZATION ON SCHEMA::YourSchemaName TO...
June 19, 2019 at 10:13 pm
One note on the "bump forum posts with no replies" feature (which I actually think is a really good idea), is to make it ignore certain forums. The
June 19, 2019 at 10:02 pm
I kept having the issue last week, it wasn't based on any times. It logged me out two or three times in one day. And I never touched my SSC...
June 19, 2019 at 8:20 pm
I missed it somewhere but the posting times got fixed at some point, they seem to be based on the client timezone now. Thanks!
Sue
June 19, 2019 at 8:08 pm
Those are SQL Server permissions. It has nothing to do with Windows level permissions. They are just reports viewed through the report viewer control. The permissions to the data source...
June 19, 2019 at 5:04 pm
Did you check your system variables for multiple or incorrect ORACLE_HOME directories? It's often an issue with that setting.
Sue
June 18, 2019 at 4:49 pm
Glad it got worked out - thanks for posting back!
Sue
June 18, 2019 at 4:43 pm
It's hard to say without knowing if you are getting errors but it's often either not restoring the encryption key or an issue with the RSExec role. Both of these...
June 18, 2019 at 4:30 pm
Yup it is set up the other considerations would be the password may not be valid. Or the Windows account could be locked out, not valid, that type of thing....
June 14, 2019 at 6:16 pm
msdb has a restorehistory table that you may want to look at. It doesn't specify any details of the restore process, it just reports on restore operations.
Sue
June 13, 2019 at 11:13 pm
If you just created it as mentioned in your original post, it would be the one you just setup. You should see it if you query sys.credentials. It will have...
June 13, 2019 at 9:09 pm
The log likely has some information - you might have to dig through to find it. You may also want to look at sys.dm_hadr_database_replica_states and see what's in there. For...
June 13, 2019 at 8:44 pm
If you know the date and time, you might be able to dig it out of the default trace files if it's still available there. It won't have the exact...
June 13, 2019 at 7:20 pm
DACPACs will work fine and the tools needed to do all of it are there but it requires a skill set. I don't think it's something where you can just...
June 13, 2019 at 7:13 pm
In addition to removing the comma after the partition by column, you can't use an alias in the select...over clause. You'd want to split the row_number out with a CTE...
June 13, 2019 at 6:33 pm
Viewing 15 posts - 481 through 495 (of 4,477 total)