[Solved] Big data using Microsoft SQL Server [closed]

SQL Server benchmarks and performance TPC-E – Top Ten Performance Results Lenovo System x3950 X6/Microsoft SQL Server 2014 Enterprise Edition : 9,145.01 tpsE (The Performance Metric reported by TPC-E is a “business throughput” measure of the number of completed Trade-Result transactions processed per second) solved Big data using Microsoft SQL Server [closed]

[Solved] Improve SQL Server query

I ran your query through a code formatter to help clean it up. I also change the variable declaration since you didn’t seem to understand what I was saying. For the record, the way you had it coded you might have missed some rows in the last few milliseconds of the day. I changed the … Read more

[Solved] C# Full-text search string format : string remove all adjacent duplicates and append with ‘AND’ ‘OR’ [closed]

Since you haven’t shown what you’ve done so far I’m assuming that you haven’t started on a solution, so here’s a high level algorithm: In that case, use String.Split(‘ ‘) to split the searchstring by each space. Use a foreach loop on the resulting array of strings and use string concatenation to complete, if a … Read more

[Solved] Where Clause OverRides Max()

Now that your requirements are clear, I think this is what you need: SELECT ID, saledate, empName, saleStatusCode FROM ( SELECT ROW_NUMBER() OVER (ORDER BY saledate DESC) RowOrder, * FROM #Test ) SUBQ WHERE RowOrder = 1 In your case, the result is: 1 2014-12-12 00:00:00.000 Joe Joe Joe 2 Actually the result would show … Read more

[Solved] Assig multiple columns in a case statement?

Your sample desired output isn’t all clear in my opinion, but maybe this is what you want? SELECT [FileName], CASE WHEN [FileName] LIKE ‘ATE_%’ THEN CAST(SUBSTRING([FileName],5,5) AS NVARCHAR(100)) WHEN [FileName] LIKE ‘%Adhoc%’ THEN CAST([FileName] + ‘ ‘ + [SheetName] AS NVARCHAR(100)) WHEN [FileName] LIKE ‘AdvantageData%’ THEN [SheetName] END AS ABTALookUp, CASE WHEN [FileName] LIKE ‘ATE_%’ … Read more

[Solved] Setting Varchar in sql server

The issue looks that the insertion should be a success but while retrieving through the QA, you see only 255 characters back. This is just a visual problem and nothing more. Just change this limitation under the Tools > Options > Results in the SSMS where you have an option to change the Maximum characters … Read more

[Solved] There is a Sequence associated with the table. When i reset this sequence and inserting a data into a table data is not coming in ordered fashion

There is a Sequence associated with the table. When i reset this sequence and inserting a data into a table data is not coming in ordered fashion solved There is a Sequence associated with the table. When i reset this sequence and inserting a data into a table data is not coming in ordered fashion

[Solved] how to write a stored procedure for adding the values in the table when we have two or more values for the same data in stored procedure MSSQl

how to write a stored procedure for adding the values in the table when we have two or more values for the same data in stored procedure MSSQl solved how to write a stored procedure for adding the values in the table when we have two or more values for the same data in stored … Read more

[Solved] Need Classic ASP for dynamic declaration of request inputs to add database record [closed]

The answer to “is this even possible?” is NO! There is no alternative language or method that could possibly work to cater for 64 columns of varying number and especially not one that can increase the number of columns in this case. While it may be possible to dynamically write a varying number of request … Read more

[Solved] C# Webservice to copy datas from one DB to Another [closed]

if an employee’s datas changed in HR database automatically FD system must notified to refresh his database Consider looking at SQL Server Replication (or) AlwaysOn feature for this same purpose. Specifically you should look at Transactional Replication 2 solved C# Webservice to copy datas from one DB to Another [closed]

[Solved] a query in sql server [closed]

I think this is what you are looking for, but as others have commented, it would be much easier if you posted what you have tried so far. Select User_ID, Seller_ID , count(case when action_type = 0 then action_type end) as Type0 , count(case when action_type = 1 then action_type end) as Type1 […] from … Read more