Viewing 15 posts - 1,291 through 1,305 (of 5,504 total)
Did you try a Google search? It seems like there are quite some articles out there....
July 11, 2011 at 4:24 am
Something like this?
;with cte as
(
select *,
historyid - row_number() over(partition by letterNo order by historyid) row
from #Test
),
order_grps as
(
select row, row_number() over(order by min(historyid))-1 as row2 from cte group by...
July 11, 2011 at 3:51 am
I brought it down to 1.20 E-31 by using 1073.64324602427796965698515822583333 for the loan_pmt (don't ask where I got that number from 🙂 ).
I think the major issue is the lost...
July 10, 2011 at 8:08 am
Can you provide a short test scenario (table def for the import table and the target tables including a few rows in each table) so we have something to work...
July 10, 2011 at 5:26 am
It depends.
Is all the business logic implemented inside SQL Server (using stored procedures, views, functions and the like)?
If so, you could analyze the object definitions:
SELECT DISTINCT so.name, so.[object_id], so.type
FROM...
July 10, 2011 at 5:20 am
@Jeffery:
Microsoft's official solution: modify all code to use join hints (I'm guessing hash or merge)
Do you have any source available for that statement?
July 10, 2011 at 4:02 am
... They take arbitrary length strings - is there a problem with a UDF doing the same?
Have a look at this link[/url]. there seems to be a significant performance...
July 10, 2011 at 3:31 am
Jeffrey Williams-493691 (7/9/2011)
July 10, 2011 at 3:09 am
Here's what I would do:
Step 1: fix the data type used in / returned by the functions involved (e.g. [fnsFormatAkcesit] will never exceed 17 byte, therefore the data type for...
July 9, 2011 at 5:42 pm
I just tried to connect from Excel 2007 to a view in SQL 2005. It worked without any issues.
Maybe the connection you're using to from Excel doesn't have permission to...
July 9, 2011 at 3:04 pm
If I would have to stop on a highway (or Autobahn as we call it over here) other than because of a traffic jam, I'd immediately run and jump behind...
July 9, 2011 at 2:54 pm
As you noticed, SQLServerCentral (or SSC) is slightly different than most of the other db forums. It's more a community, not just a forum. Therefore, we prefer to clarify an...
July 9, 2011 at 2:45 pm
Where exactly do you get stuck?
The concept I would use is to call a stored procedure with the parameter Comp_Name, KPI_name, date and value. You'd need to make sure Comp_Name...
July 9, 2011 at 6:27 am
Viewing 15 posts - 1,291 through 1,305 (of 5,504 total)