Viewing 15 posts - 631 through 645 (of 2,857 total)
My opinion - this would be better suited on a C++ forum, or even a general coding forum, and not on a SQL Server specific forum... but I can try...
January 18, 2022 at 9:30 pm
I would look at the logs on your db2 server. The error is being thrown on that server, so that should tell you what is wrong. Could be something like...
January 18, 2022 at 3:02 pm
My opinion, this type of question is usually better asked on web-based development forums. The database has no idea what field is selected by default at the application side based...
January 17, 2022 at 8:31 pm
I am not sure if that is 1 error or 2, but I would try to solve the first error first:
The component metadata for "Power Query Source, clsid {7CDF593F-DE06-4ABD-B356-7976EF7AC8E0}" could...
January 17, 2022 at 6:06 pm
I am not 100% sure on what you are trying to do, but I have a guess. I think what you are going to want to do is for that...
January 13, 2022 at 3:19 pm
I would say give it a shot and see what happens.
Clone your system to a test/dev box and do some performance testing after cloning to get some baseline numbers. ...
January 11, 2022 at 5:47 pm
Personally, I'm not a huge fan of that "fix". My approach would be to change the SQL Server Service and SQL Agent Service to run as an AD account...
January 11, 2022 at 4:21 pm
I agree with Ant-Green - this sounds like a homework question. And it is very vague and I am a bit confused what you mean by your first statement...
January 11, 2022 at 3:58 pm
I have never heard of or used flexbox, but a quick google makes it look like it is a CSS tool?
If my findings are correct, then I think that this...
January 11, 2022 at 3:35 pm
I think part of the problem is how you are defining "first" and "group by". Since you have no ORDER BY in your query, you have no "first"....
January 10, 2022 at 9:30 pm
To add to what ratbak said, if you have a lot of schemas, you MAY not have a default set to dbo for a specific user. This is configurable,...
January 10, 2022 at 4:39 pm
Certificates are backed up along with the database, so when you restore, all certificates are restored along with the database. You will likely need to re-map the master key...
January 10, 2022 at 4:34 pm
In the example you gave, the reason you are NOT seeing a duplicate when you have mother in there twice instead of father is because you used UNION. UNION will...
January 7, 2022 at 9:50 pm
My advice - post the error message. I have a feeling it doesn't say the literal words "INSERT is wrong".
Now, I am also not 100% familiar with PostgreSQL, but I...
January 7, 2022 at 5:32 pm
The query being executed for those curious and not wanting to click the link:
insert into [ExtractReports].[dbo].[TradeCodesDelete](PartID,Code,CodeTypeID,SourceTypeID,RevisionID,ZPLID,PartLevel,CreatedDate,FlagDelete)
----select count(1) from [ExtractReports].[dbo].[TradeCodesDelete]
---update [ExtractReports].[dbo].[TradeCodesDelete] set FlagDelete=2 where...
January 6, 2022 at 3:36 pm
Viewing 15 posts - 631 through 645 (of 2,857 total)