Viewing 15 posts - 361 through 375 (of 2,610 total)
Having supported a COBOL application for over 10 years, COBOL is a good language. Yes, it is wordy compared to modern programming languages, but that doesn't mean...
May 28, 2023 at 10:17 pm
Having supported a COBOL application for over 10 years, COBOL is a good language. Yes, it is wordy compared to modern programming languages, but that doesn't mean it isn't...
May 28, 2023 at 7:42 am
Please, don't malign COBOL. It is a good language and still in use.
Okay you and I will have to agree to disagree on this one. Not that...
May 27, 2023 at 6:04 pm
Well, Phil Parkin just because a word does not currently exist within any known dictionary does not mean it is not a viable word. In fact, Shakespeare is...
May 21, 2023 at 7:02 pm
Improving database design can have a significant impact on the speed of SQL queries. Here are some tips to optimize your database design and enhance query performance:
...
May 18, 2023 at 8:42 am
Are you running the install as an administrator?
The error is to do with permissions to write to the registry.
May 17, 2023 at 12:51 am
Nearly billion claims every day seems a very high number for Medicaid Florida, considering the population of Florida is only about 22 million.
That sounds about right. The number...
May 16, 2023 at 4:08 pm
Improving database design can have a significant impact on the speed of SQL queries. Here are some tips to optimize your database design and enhance query performance:
May 16, 2023 at 3:38 pm
Okay I know enough about Python to know that it is not nearly as fast to use as straight C especially if you are doing it in MS Windows...
May 16, 2023 at 7:56 am
SQL would be my first choice for cleaning data, while it's a powerful tool for querying and cleaning data, it may not be the best choice for performing complex language...
May 15, 2023 at 10:36 am
May I know the reason for this issue?
Why i am not able to create this table?
max column limit is 1024 right?
can you please clarify?
Look at the error message: It...
May 12, 2023 at 11:34 am
no not possible on productid
drop table if exists #temp1;
go
SELECT * INTO #temp1
FROM(SELECT ProductID,Product, SUM(Amount ) AS TotalAmount,CONCAT_WS('__', IssueName,IssueID)[Issue]
FROM aaa_tempSalesData1
GROUP BY ProductID,Product,IssueName,IssueID) temp
PIVOT( SUM(totalAmount)
FOR [Issue]
IN...
May 12, 2023 at 11:29 am
Hi Jonathan AC Roberts and Phil Parkin,
Thanks for your reply but if i create 2 temp tables how to join in query as there is no column mapping columns...
May 12, 2023 at 10:56 am
You could create two temporary tables with fewer columns instead of one table, then just join them in a query or view.
May 12, 2023 at 10:23 am
Viewing 15 posts - 361 through 375 (of 2,610 total)