Viewing 15 posts - 166 through 180 (of 287 total)
mintsql (4/10/2012)
Can someone recommend a good article/ebook that goes over all of the data types in SQL Server and their intended use?Thank You.
April 10, 2012 at 10:41 am
jerry209 (4/6/2012)
ItemId IsProduced
101 1
102 ...
April 10, 2012 at 9:25 am
A lean Sql Trace definition should fetch you the TSql run against the database.
Why you would want to capture output is one I don't quite understand...
Assuming a script returns a...
April 2, 2012 at 8:41 am
...and just to show how ill-suited sql can sometimes be for string manipulation here is a C# snippet with a purpose built function that can be used to do the...
March 30, 2012 at 8:43 am
nhimabindhu (3/28/2012)
CREATE PROCEDURE...
March 28, 2012 at 9:44 am
I think you might want to post the execution plan as well.
March 22, 2012 at 11:29 am
I don't think there is an argument to be made here either way.
SSMS, for the company, is a no cost option if they have valid Sql Server Licences. It...
March 15, 2012 at 5:37 pm
Gianluca Sartori (3/14/2012)
I've never heard of anyone hitting the instances limit. :w00t:
50 is the maximum number of inctances you can install on a standalone server. http://msdn.microsoft.com/en-us/library/ms143432.aspx
For...
March 14, 2012 at 9:12 am
pantherUSA (3/14/2012)
Hi Guys,We (me and my DBA) came up with nice solution and it give me result in 0.5 second.
Appreciate your concern.
Thanks
From
Panther
Is it something you can share?
March 14, 2012 at 9:00 am
eriks4j (3/11/2012)
March 12, 2012 at 11:56 am
sqlservant (3/9/2012)
This was just an example, I put in the names for some clarity, I guess it didn't work.
I was really just interested in...
March 9, 2012 at 9:07 am
No sample or test data so can't test so maybe something like...
SELECT *, COUNT(*) OVER (PARTITION BY [column_name]) AS prt FROM CLDHIST;
March 9, 2012 at 8:20 am
Are you able to post Execution Plans?
March 9, 2012 at 4:16 am
Eugene Elutin (3/8/2012)
OTF (3/8/2012)
Eugene Elutin (3/7/2012)
March 8, 2012 at 8:50 am
Viewing 15 posts - 166 through 180 (of 287 total)