Viewing 15 posts - 421 through 435 (of 2,645 total)
I would guess one or maybe both of these indexes would fix your problem:
CREATE INDEX IX_c_b_party_comm_1
ON dbo.c_b_party_comm(ROWID_OBJECT, COMM_TYP_CD)
INCLUDE (COMM_TYP_CD,...
April 4, 2023 at 11:11 am
Okay I am not understanding your comment "I have a feeling it is taking it literally as a string" -- how else should it take it? I mean you...
April 3, 2023 at 5:31 pm
So it it the case that there is an AD account that you can remotely connect but the SQL login cannot remotely connect?
April 3, 2023 at 1:54 pm
and yet: "The SQL login works when I remote to the SQL host and log in locally"
So probably not locked out.
If it works when they remote to the host...
April 3, 2023 at 12:38 pm
I've got no idea but ChatGPT suggested:
Error 18456 is a common error in Microsoft SQL Server, indicating that a login attempt has failed due to invalid login credentials or insufficient...
April 3, 2023 at 12:27 pm
You can print the SQL statement instead of executing it and then run it manually.
April 2, 2023 at 10:33 pm
Why does creating and inserting data into a table with insert into cause blocking but inserting into an existing table not cause blocking?
Someone like Paul White could answer...
April 2, 2023 at 9:47 pm
Why does creating and inserting data into a table with insert into cause blocking but inserting into an existing table not cause blocking?
April 2, 2023 at 8:07 pm
I still don't understand why an AWS server that costs more per month to rent than the entire cost of buying my laptop new should take 10 times...
April 1, 2023 at 12:22 am
Indexes are needed as the temp tables are joined to other tables, without indexes the queries would take a lot longer.
You and I have know each other for...
April 1, 2023 at 12:09 am
I think you might want this for a recursive CTE:
;with cte as
(
select *
from [#ChannelInfo]
...
March 31, 2023 at 12:01 pm
To fix it I had to create the temporary table first with the clustered index then insert the data.
When I said "we", I should have said "they". What...
March 31, 2023 at 11:07 am
drop table if exists #temp;
select *
into #temp
from (values (1,21.5,1,20.5, cast('20230121' as date)),
...
March 30, 2023 at 3:56 pm
I can't see how you can order the data in that table?
Can you provide how the table looks before and after the update?
March 30, 2023 at 3:11 pm
Viewing 15 posts - 421 through 435 (of 2,645 total)