Viewing 15 posts - 1 through 15 (of 87 total)
Do you know where SSMS is storing temp files? I believe the default is %USERPROFILE%\AppData\Local\Temp.
I just ran a really stupid query, returning millions of rows to the screen and...
March 7, 2023 at 8:50 pm
ratbak wrote:Is TempDB on the C Drive? Is it growing/filling the drive?
Or is it actually SSMS temp files mentioned previously?
Check/tune their queries if possible.
No, TempDB is on it's own drive. ...
March 7, 2023 at 8:49 pm
Thanks folks, that was the ticket. I made all of our BIDS their own temp space on our much larger drive, and had them repoint their environment variables to there. ...
March 7, 2023 at 8:47 pm
So yes the combination of that plus fixing an underlying problem with the data itself. It turns out that the table that contains the users who have been terminated is...
October 29, 2021 at 1:29 am
Solved.
October 28, 2021 at 8:59 pm
Here's an attempt to refactor the query with functional equivalency (afaik)
insert into [Micros].[UserTerminations]([UserID], [TerminationDateTime])
select u.[HostUserId], getdate()
from [Micros].[Users] AS u
where exists (select 1
...
October 28, 2021 at 6:09 pm
Actually Jeff, this is to estimate the size of Snowflake real estate we need to plan for as we transition to a warehouse. We have two major Health Care EMRs...
October 18, 2021 at 1:06 pm
My personal challenge workwise is to learn WhereScape and Snowflake to build a warehouse from our two major Health Care systems plus the myriad of one-off systems we have here...
October 17, 2021 at 2:49 pm
Thank you Grant for this. I thought as much really, so I pursued a different track; I used date info in the largest tables (billions of rows) to get year...
October 13, 2021 at 1:41 pm
I do the same as what Anthony posted.
There might be at least one caveat to be aware of. My disclaimer is that I've not had to try it and...
August 24, 2021 at 6:27 pm
I’d do it as an alter database modify file, offline database, move the file, online the database.
This is just to get around the permission changes which happen with a...
August 24, 2021 at 5:52 pm
Steve, I would agree with you, except in a few situations. For example, I am now 60 and working what will be my last gig as a DBA for...
April 8, 2019 at 3:56 pm
Turns out that a group had DENY on it, and the reason that was missed at first was because it was highly obscured that the folks involved were even part...
July 17, 2018 at 9:57 am
I am checking into that right now actually. I logged into the secondary node machine with my elevated credentials, then ran SSMS with my non elevated credentials to see if...
July 13, 2018 at 3:43 pm
July 12, 2018 at 4:22 pm
Viewing 15 posts - 1 through 15 (of 87 total)