Viewing 15 posts - 5,491 through 5,505 (of 14,953 total)
Your join is multiplying the number of rows in the target table.
Try this:
CREATE TABLE #T1 (
ID INT IDENTITY PRIMARY KEY,
Col1 CHAR(1));
CREATE TABLE #T2 (
ID INT IDENTITY PRIMARY KEY,
T1ID INT,
ColA CHAR(1));
INSERT...
January 4, 2011 at 9:45 am
Yes, it's slower. That's because of the extra checks for word-breaks on variable delimiters.
January 4, 2011 at 9:40 am
If that's Excel, which is what it looks like, Offset isn't something that translates directly to T-SQL.
January 4, 2011 at 9:39 am
CirquedeSQLeil (1/4/2011)
GilaMonster (1/4/2011)
<sigh> Talking plagiarism. He really should know better...http://www.sqlservercentral.com/Forums/Topic1042151-2799-1.aspx
Missed it - what was it. Looks like Steve took it down.
I "Report"ed it as plagiarism, so it's no surprise...
January 4, 2011 at 8:55 am
That would work. Do it in a temp table instead of the real table, and query the temp table. That way, you don't mess up the database.
January 4, 2011 at 8:53 am
Take a look at "SUM" in Books Online (or on MSDN). T-SQL can aggregate data with functions like Sum, Max, Min, Avg, and so on.
January 4, 2011 at 7:45 am
It looks to me like you have what you need in order to write a query. What's your question?
January 4, 2011 at 7:32 am
First you need to identify the prior n rows for each set (dog, cat, etc.) for each entry. That can be done by using row_number and partitioning by the...
January 4, 2011 at 7:31 am
Here's a Title Case script I set up that avoids UDF overhead. It assumes you have a Numbers table. You can use the CTE from Jeff's script if...
January 4, 2011 at 7:20 am
I still think the most important resolution one can make is to enjoy the new year more than the last.
Then work out ways to do so. You can always...
January 4, 2011 at 7:03 am
Event notification works. I use a server-side trace for login events to get the same sort of data, mainly just because I've been doing that for eons at this...
January 4, 2011 at 6:45 am
Not really. I'd pretty much just be poking around and talking to my network people at this point.
January 4, 2011 at 6:24 am
I generally have login triggers use a sysadmin account. If you don't, and the trigger ends up blocking you from logging in, it's gets really messy really fast.
January 3, 2011 at 2:42 pm
koolme_85 (1/3/2011)
can you tell me how i can use parameters for the where clause in the following querythanks
regards
greg
Do you know what parameters are?
Do you know what a...
January 3, 2011 at 2:40 pm
It depends.
Do you want any parameters? Perhaps something for the Where clause. That would be pretty normal for a stored procedure.
January 3, 2011 at 2:13 pm
Viewing 15 posts - 5,491 through 5,505 (of 14,953 total)