Viewing 15 posts - 36,931 through 36,945 (of 59,072 total)
Madhivanan-208264 (9/8/2010)
The avatar you used is very goodAre you a designer too? 🙂
No... someone else did most of the work. I just overlaid the word "RBAR" and converted it...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 8, 2010 at 5:17 am
suriqx (9/8/2010)
SQLBill (9/7/2010)
--Jeff Moden
Change is inevitable... Change for the better is not.
September 8, 2010 at 5:14 am
Anam Verma (9/7/2010)
In the part1, you have mentioned about SELonJN operation, how it can be enabled?
It will be really handly if you'll also post the changes you made to the...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 8, 2010 at 5:04 am
Craig Farrell (9/7/2010)
or I'm misunderstanding what you're saying.
That may be true... from BOL 2k (had a handy reference there)...
F. Use COLUMNS_UPDATED to test more than 8 columns
If you must test...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 8, 2010 at 4:51 am
BrainDonor (9/8/2010)
Apparently tomorrow will be the 65th anniversary of the first computer bug:http://www.history.navy.mil/photos/images/h96000/h96566kc.htm
From that point on all developers had a job for life.
Those types of trivia are always interesting. ...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 8, 2010 at 4:42 am
Lynn Pettis (9/7/2010)
--Jeff Moden
Change is inevitable... Change for the better is not.
September 8, 2010 at 4:33 am
Data this type of thing is stored as the Least Significant Byte First (on the "left"). That's why it appears to be backwords. Then, within each byte, the...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 7, 2010 at 3:36 pm
Madhivanan-208264 (9/7/2010)
Have a million row table and do running total using a triangular join
select col,(select sum(col) from table as t1 where t1.pkcol<=t2.pkcol) as run_sum
from table as t2
Heh... ya beat me...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 7, 2010 at 3:20 pm
rschaeferhig (9/7/2010)
Thanks for all your work on this.
I already have a function similar to your dbo.GetEmployeeDownLine(ID) function. My end use case is that I need a table of all the...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 7, 2010 at 1:31 pm
Abhijit More (9/6/2010)
DECLARE @Params AS TABLE
(
ParameterID NVARCHAR(8) NOT NULL,
...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 7, 2010 at 11:54 am
the_rutter (9/6/2010)
Is it valid design for TableA to reference TableB (foreign key) and TableB to reference back to TableA (foreign key)? Or is this circular reference *always* bad?
Ok... your turn....
--Jeff Moden
Change is inevitable... Change for the better is not.
September 7, 2010 at 11:52 am
shankaran_sraj (9/7/2010)
I having a table Tran_Id in that table two columns Id and Sno.
ID SNO
1 5124
2 ...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 7, 2010 at 11:44 am
Paul White NZ (9/7/2010)
WayneS (9/7/2010)
Have you got some references you can pass on about how the optimizer works?
For sure:
Craig Freedman: http://blogs.msdn.com/b/craigfr/
SQL Server Storage Engine: http://blogs.msdn.com/b/sqlserverstorageengine/
CSS: http://blogs.msdn.com/b/psssql/
Query Processing: http://blogs.msdn.com/b/sqlqueryprocessing/
White Papers: http://technet.microsoft.com/en-us/sqlserver/bb671430.aspx
SQLCAT:...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 7, 2010 at 11:16 am
Steve Jones - Editor (9/5/2010)
Jeff Moden (9/4/2010)
...So walking in with a hank of beef jerky hanging out of your mouth would be frowned upon? 😛
like pentagram tatoos at an interview...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 6, 2010 at 2:33 pm
SQL_Quest-825434 (9/6/2010)
Jeff,Can you quote the how this can be done.. just curious to know ..:-)
There's an undocumented stored procedure that you can use to write to the registry for...
--Jeff Moden
Change is inevitable... Change for the better is not.
September 6, 2010 at 2:27 pm
Viewing 15 posts - 36,931 through 36,945 (of 59,072 total)