Viewing 15 posts - 3,556 through 3,570 (of 59,087 total)
I've downloaded SQL Server Standard 2019 to upgrade our database because we have a Microsoft Campus Agreement, but I'm being asked for a license for SQL Server 2019 Reporting...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 8, 2022 at 10:17 pm
Is there more than 1 such occurrence per row in the table and what is the datatype of the column that this type of data is in?
--Jeff Moden
Change is inevitable... Change for the better is not.
May 8, 2022 at 10:08 pm
If you have SSAS also installed with Database services on the server, do you need to apply cumulative updates separately or it will give you the option to select...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 8, 2022 at 10:02 pm
All jobs are running as sa only.
Just to ask the question, you DO have the "sa" login disabled, correct? And, yes, jobs can still run with sysadmin privs...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 7, 2022 at 11:37 pm
How did you know the answer to your latter question for SPs? If it isn't included in the documentation for the CU, then you have to assume that you need...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 7, 2022 at 11:33 pm
Without some form of enforcement, standards don't matter at all except, possibly, when it comes to needing a reason to fire someone. Urgencies are not justification not to follow a...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 7, 2022 at 11:18 pm
When we have a new server (aws so we create and delete them fairly often) and I am a local admin, but have not been granted sql access, I...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 7, 2022 at 10:21 pm
Shot in the dark but, possibly an easy way to find out how he has access is to create a user using his windows login name and then use xp_logininfo...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 6, 2022 at 11:12 pm
To be honest, CTEs can suck real bad. They're not so bad at Hierarchies but, still, a well written While loop will be a little bit faster than a CTE...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 6, 2022 at 11:06 pm
... ,PercentOfWhole = CONVERT(DECIMAL(3,1),StatusCount*100.0/SUM(StatusCount) OVER ()) ...
I believe you want decimal(4, 1) rather than (3, 1) (at least I can't see any reason why 100% of one...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 4, 2022 at 6:01 pm
Heh... right after I posted above, I got an email from GROUPBY.Org that the schedule has been published. There are two tracks for the Americas on May 24th and two...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 4, 2022 at 5:33 pm
My "Black Arts" Index Maintenance 1.2 presentation was selected on GroupBy.Org for May 24th, 2022. I don't know if my "ask" above had anything to do with that but I...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 4, 2022 at 5:21 pm
First of all, you didn't actually post the error you're getting.
Second, what are the datatypes for all of the columns involved"? That's actually super important to know here.
--Jeff Moden
Change is inevitable... Change for the better is not.
May 4, 2022 at 3:56 pm
Here's another way to post "Readily Consumable Date" followed by a different solution that uses the SUM() Windowing Function.
Here's the test data construction...
--===== Create the test table...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 4, 2022 at 3:44 pm
Honestly, I don't end up with the #t, ct etc.
I tried to replace anything regarding my data but didnt work
Sorry
The #t that Phil is using is what you should...
--Jeff Moden
Change is inevitable... Change for the better is not.
May 4, 2022 at 3:24 pm
Viewing 15 posts - 3,556 through 3,570 (of 59,087 total)