Viewing 15 posts - 1,036 through 1,050 (of 6,400 total)
This is where a calendar table would come in very handy, the one I use is from the below link
https://www.sqlservercentral.com/scripts/date-calendar
You would then want to add an additional index on the...
June 18, 2020 at 3:08 pm
It all depends how easily transferable your skills in Oracle are to SQL, they are two completely different products at the end of the day and while I appreciate they...
June 18, 2020 at 7:24 am
BIG NOTE - The current product based certifications and the MCSA/MCSE/MCSD etc exams are all being retired as of 31st Jan 2021. So if you are wanting these certification you...
June 17, 2020 at 7:23 am
@sterling3721 - lac is (forgive the dialect - I believe Indian/Gujarati) for thousand
@sethumail2000-2 - those two indexes, are essentially left key subsets, I would very much recommend removing the index...
June 16, 2020 at 2:10 pm
Please post screenshots and a walkthrough as by default when you script a table via the gui it only scripts the table. not the procedures also.
June 15, 2020 at 10:33 am
What tool are you using as SSMS doesn't do that by default.
If it is within SSMS what plugins do you have?
June 15, 2020 at 9:55 am
A connection string change that's not been made, opens a select to the database and works. How will you know of rouge connections which need to be changed if the...
June 12, 2020 at 7:53 am
What is the error? What is failing?
All the network connectivity is in place? Firewall rules between sites etc.
You can establish a SSMS session from the LocalServer to the RemoteServer?
What network...
June 12, 2020 at 7:50 am
Not necessarily, it is the old "it depends", for example ReportServer database for SSRS has to be in a specific collation for it to work, which is always different from...
June 11, 2020 at 10:21 am
One option using groupby and having
select
row_number() over(partition by NumeroContrat order by NumeroContrat desc) as classement,
*
from Gestion_Stats.dbo.produit
where
numerocontrat in
(
select
...
June 11, 2020 at 10:05 am
removed - attachment didn't show when writing original, this option wont meet requirements
June 11, 2020 at 9:57 am
Three options
2. Create new DB with...
June 11, 2020 at 9:54 am
You would need to setup database mail if not already done so
Then you will need to create a piece of SQL to meet the requirements.
If the query uses transactions you...
June 11, 2020 at 7:13 am
What is the operating system in use here, is it Server 2016 or above?
You also aware that clusterless availability groups wont provide the automatic HA/DR, they are purely designed for...
June 10, 2020 at 1:42 pm
Is vMotion an option here, the clients would migrate seamlessly.
As always would start with secondary(s), failover, then the other node.
If not and assuming your in Enterprise edition build out new...
June 10, 2020 at 7:06 am
Viewing 15 posts - 1,036 through 1,050 (of 6,400 total)