Viewing 15 posts - 526 through 540 (of 7,466 total)
GRANT view definition TO [uRole_ViewDefinition/useraccount];
August 1, 2022 at 1:57 pm
August 1, 2022 at 11:07 am
someone must have granted at least read to public ( for the tables ).
July 28, 2022 at 2:02 pm
Thank you for the feedback.
July 28, 2022 at 10:37 am
Your assumption is incorrect !
It needs the space, not according to backup size, but according to the size of the files of the original database !
Sequence should be:
July 27, 2022 at 1:45 pm
Best practice is hat match the SIDS. (or you'll have to fix that with every failover )
Easiest way to do that is do use DBATools (free) Copy-DbaLogin
July 27, 2022 at 11:12 am
You can restore any kind of db as long as you have a FULL backup (and the needed diff/log restore to get it to the PIT you need).
After the restore,...
July 27, 2022 at 10:58 am
why do you need to convert to char(8) ?
where CONVERT(DATE, CONVERT(CHAR(8),[WED] ))
What's the data type of your column [WED] ??
Rule number 1 ( with ANY RDBMS ):...
July 27, 2022 at 6:31 am
SELECT M.mailitem_id
, M.profile_id
, M.recipients
, M.subject
-- , M.body
--...
July 25, 2022 at 1:32 pm
DBownership also by the same account ? ( check when primary on instance )
July 25, 2022 at 1:18 pm
Read this: Author Jeff Moden - Article: Tally OH! An Improved SQL 8K “CSV Splitter” Function, http://www.sqlservercentral.com/articles/Tally+Table/72993/
Example query:
SELECT ACC.ts_easeofworking
,...
July 25, 2022 at 6:34 am
Read this:
Author Jeff Moden - Article: Tally OH! An Improved SQL 8K “CSV Splitter” Function, http://www.sqlservercentral.com/articles/Tally+Table/72993/
Example query:
SELECT ACC.ts_easeofworking
, GOM.ts_easeofworking
...
July 20, 2022 at 1:40 pm
If that is a business rule for your database, you should enforce it in the database. ( mainly to avoid manual mistakes )
ERD:
Drivers - id/name/...
Busses - id/LicensePlate/Capacity/...
DriversBussesAllocation - Date/DriverID/BusID/... -->...
July 20, 2022 at 12:00 pm
did you try adding an OUTER APPLY ( with e.g. DelimitedSplit8K or string_split ) to your queries to handle the multi valued column ?
July 20, 2022 at 11:44 am
Tell your client Microsoft advises this "Data Migration Assistant"
July 19, 2022 at 9:58 am
Viewing 15 posts - 526 through 540 (of 7,466 total)