Viewing 15 posts - 421 through 435 (of 2,356 total)
This is a basic design mistake that many folks make. OTLT (One True Lookup Table) is typically a very poor construct and far too often causes one big set of...
March 28, 2022 at 12:44 pm
Keep in mind: Not just any kind of Azure BLOB storage! It needs to be V2 ! ( or newer )
And you have to remove these files yourself !...
March 28, 2022 at 12:07 pm
I've recently started intermittently getting this error message after changing the password on the account the runs the SQL service. That particular account is also a sysadmin in SQL...
March 25, 2022 at 6:05 pm
If this is a "timing issue", then snapshot isolation is not going to solve the issue. And, in a synchronous commit availability mode, the data is committed to the secondary...
March 25, 2022 at 6:02 pm
To be sure, my laugh wasn't about your bit of misfortune. I was laughing because it appears to be yet another limitation of Azure. 😀
Actually, it works in the...
March 25, 2022 at 5:00 pm
Yes... it's a bit more complicate than using BETWEEN especially when you have to use a conversion but... it's a habit to get into that will "save your life" someday. ...
March 25, 2022 at 4:41 pm
below is to get business hours data
SELECT * FROM #TEMP WHERE CAST(LOADDATE AS TIME) BETWEEN '9:00:00' AND '17:59:59'
Thanks for your help
Your original post asked for records that fall between...
March 25, 2022 at 3:16 pm
BWAAA-HAAA-HAAA!!! (Sorry... couldn't help the laugh).
Yeah. There was a very large "DUUUUUUUUUUUUUUUUUHHHHHHHHHHHHH" this morning.
After I replied to the Johan, I figured out what my stupidity was. There are only...
March 25, 2022 at 2:20 pm
Docs state this: "... ALTER ANY DATABASE EVENT SESSION permission in the database."
Did you test that ?
I ran through a series of grant perms and none of them...
March 25, 2022 at 1:45 pm
Can you post what you tried? It's far easier us, and more beneficial to you, if we can see that and use it to teach you.
March 24, 2022 at 5:15 pm
Hi all! Sorry for the dumb questuon, but I did not find any answer on ms or stackoverflow. I know that for installing ths sql server, I need admin...
March 24, 2022 at 5:11 pm
What have you tried? This is actually a very simple query.
Have you looked at the various tools available in SQL related to dates and times?
March 24, 2022 at 5:03 pm
It appears that all of the values are either float or int types.
Unless you are dealing with astronomical sized numbers, I would recommend removing the float types. They are called...
March 24, 2022 at 3:46 pm
CursorID.IndexSite is incorrect syntax
Your select statement 22 columns, and you are fetching into a single variable.
It also appears that you are attempting to create a series of views named "v"...
March 23, 2022 at 2:55 pm
I'm curious. I've had to keep old servers alive for various "historical" reasons, but they never were active unless someone needed a report out of them. They sat in a...
March 21, 2022 at 1:23 pm
Viewing 15 posts - 421 through 435 (of 2,356 total)