Viewing 15 posts - 211 through 225 (of 1,988 total)
The cynical answer is that Atlassian is gently encouraging people to use their cloud services instead of on prem.
June 30, 2021 at 4:04 pm
I've not designed this thing. I am nowhere near an SQL-expert either, but I do think this world is interesting and am trying to learn, that's why I'm in...
June 30, 2021 at 2:57 pm
When you say adhob SQL do you mean that users can just free form write their own SQL to put into the reports or that this is SQL being generated...
June 29, 2021 at 3:33 pm
I guess I don't understand two things...
June 28, 2021 at 2:01 pm
If it would be OK to force the NULL value to be added to lowest date:
;WITH test_data AS (
SELECT col1 = 7213
...
June 25, 2021 at 4:50 pm
would you actually want to hire someone that claims to know T-SQL if you ask them how to get the current date and time using T-SQL and they HAVE...
June 18, 2021 at 6:09 pm
Developers routinely look to the DBA for advice about data modeling (often times after it's been deployed to production), but I don't get questions on the job about...
June 18, 2021 at 3:55 pm
Hi Jeff,
By chance, do you have an example that I can take a look at in the script task calling the .exe file and pass and return the variable...
June 17, 2021 at 1:45 pm
My basic trouble with hackathons in a company is... why do they actually need one to begin with? It seems like that's an admission that they don't...
June 16, 2021 at 5:50 pm
If you calculate the unix millisecond timestamp 30 minutes ago all you should need to do is look for time stamps greater than that.
June 15, 2021 at 6:53 pm
For millisecond precision it would be something like,
SELECT DATEDIFF_BIG(ms, '19700101' ,DATEADD(minute, -30, getdate()))
June 15, 2021 at 6:12 pm
I have a general issue with the idea that innovation comes from sitting people down cracking a whip and asking them to innovate. Maybe some people can work like that...
June 15, 2021 at 3:44 pm
Well SQL Server still has to access the table to do the inserts which is IO.
June 14, 2021 at 5:59 pm
Hmm... that's nifty you can also do the other error action options like Inquire if you want a prompt when it hits the debug.
June 11, 2021 at 2:40 pm
SSIS packages are not interactive processes - they are background processes and do not provide for user interaction. There are no options to prompt a user to continue.
Technically you...
June 10, 2021 at 9:02 pm
Viewing 15 posts - 211 through 225 (of 1,988 total)