Viewing 15 posts - 406 through 420 (of 2,648 total)
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
Can't remember where I got this script from but it will generate insert statements for all the rows in a table:
To generate inserts from a table just call it something...
May 5, 2023 at 10:35 am
CREATE TABLE MyTable (
ID INT IDENTITY(1,1) PRIMARY KEY,
Value INT,
DateTimeColumn DATETIME
);
INSERT INTO MyTable (Value, DateTimeColumn)
VALUES
...
April 25, 2023 at 1:47 am
DECLARE @StartDate datetime = '20221001';
DECLARE @EndDate datetime = '20221031';
SELECT *
FROM #t1
WHERE PrgFld LIKE 'BAS%'
AND PrgVal BETWEEN CONVERT(varchar,@StartDate,112) AND CONVERT(varchar,@EndDate,112);
April 15, 2023 at 12:05 am
Viewing 15 posts - 406 through 420 (of 2,648 total)