Viewing 15 posts - 586 through 600 (of 2,645 total)
I would write you query like this:
SELECT f.user_id,
f.email,
f.start_date,
...
January 17, 2023 at 8:53 pm
I would make sure the user explicitly has permissions to the folder the package is in and any other folders used by the package.
To give permissions to a Windows folder,...
January 17, 2023 at 12:45 pm
Sounds like the user executing the SSIS package hasn't got permissions on a folder.
January 17, 2023 at 12:13 pm
Just a small query. Can we start this series from '000' instead of 001?
Just saw that comment:
drop table if exists testcomp;
go
create table testcomp
(
...
January 9, 2023 at 5:07 pm
If you don't want the code ending with 3 zeros (e.g. 10.C000) then
drop table if exists testcomp;
go
create table testcomp
(
id int identity(1,1) not null,
...
January 9, 2023 at 3:45 pm
In SQL Server, the amount of memory used to store the results of a UNION ALL query is dependent on the data types and sizes of the columns being returned,...
January 9, 2023 at 11:42 am
EXEC sp_depends 'storedprocedurename'
This is a deprecated procedure. 😎 "This feature will be removed in a future version of...
January 8, 2023 at 1:22 am
January 7, 2023 at 2:46 pm
I cannot create fnTally function since it's a PLM system and object creation is not allowed.
SELECT TOP(6500)
ROW_NUMBER() OVER (ORDER...
January 7, 2023 at 3:15 am
select top(6500)
ROW_NUMBER() OVER (ORDER BY N) ID_INT,
'10.' + char(ascii('A') + N/1000) +...
January 6, 2023 at 8:30 pm
You should ORDER BY the entire query in the same order as the ORDER BY in the OVER clause.
SELECT DA.DC,
DA.WEEK,
...
January 6, 2023 at 7:25 pm
Jonathan AC Roberts wrote:It will even answer Jeff's primary interview question correctly:
Actually, that's just the first part of the answer that I expect. 😀
...
January 4, 2023 at 6:43 pm
Jonathan AC Roberts wrote:It will even answer Jeff's primary interview question correctly:
Actually, that's just the first part of the answer that I expect. 😀
But I'm sure it got further...
January 4, 2023 at 5:49 pm
Jonathan AC Roberts wrote:It will even answer Jeff's primary interview question correctly:
Actually, that's just the first part of the answer that I expect. 😀
But I'm sure it got further than some...
January 4, 2023 at 5:46 pm
I thought I'd ask my new found tech ChatGPT this question, if there is anyone who hasn't tried it they should, it even knows a bit of...
January 4, 2023 at 5:26 pm
Viewing 15 posts - 586 through 600 (of 2,645 total)