Viewing 15 posts - 391 through 405 (of 701 total)
Last year, the early-bird rate effectively became your code, and you couldn't specify two codes. Thus, all the pre-con discussion about how to buy in to the party if...
January 13, 2010 at 1:24 pm
Normal aggregate functions (SUM(), AVG, () COUNT(), MIN(), MAX(), etc.) are available to be used as windowed functions (using OVER and PARTITION BY).
SELECT Title,Subject, Max(Price) OVER(PARTITION BY Subject) As MaxPriceBySubject
...
January 11, 2010 at 4:06 pm
I've used MBOPartners.com (formerly mybizoffice.com) for this very thing. You go find your own contracting opportunity, then they execute the statement of work. You enter your time on...
December 17, 2009 at 3:51 pm
Garadin (12/16/2009)
December 17, 2009 at 3:13 pm
I don't know about documentation, we simply ran our own tests on our 3PAR sans:
1. Record SAN allocation
2. Create thin-provisioned LUN, and mount it
3. Record SAN allocation
4. Format mount point
5....
December 1, 2009 at 12:43 pm
Mani-584606 (11/30/2009)
Here, when the entire network goes down, will the SQL Services from active node try to move to passive node? or will they stay at active node itself as...
December 1, 2009 at 12:31 pm
The key point with IFI is that it doesn't write those zeroes. Using the NTFS Sparse File mechanism, the file is merely marked as being the new size and...
December 1, 2009 at 12:00 pm
It's been a few years, but I have used this on NetApp SANs without problems.
The feature relates to what Windows/NTFS does with the modified file; the type of storage has...
November 30, 2009 at 4:11 pm
Also note that a company that will ignore software laws in order to save money, because they can get away with it, may just as willfully ignore labor laws to...
November 17, 2009 at 6:06 pm
One trick is to hit the table twice: the first pass selects the 'buy' columns and aliases their names to simply Curr and Amt, and the second pass select the...
November 12, 2009 at 4:37 pm
SET NOEXEC ON
After that, you can execute you procedure. The procedure will compile (and perform the object and syntax checks you seek), but will not execute.
If you wish...
November 10, 2009 at 1:55 pm
johnsonchase7 (11/6/2009)
<snip> Especially since the dbcc index defrag option is no longer supported in the sql server 2008.</snip>
Note that it's just the dbcc index defrag syntax that has been removed....
November 8, 2009 at 12:30 pm
Changing MAXDOP only makes the CXPACKET waits go away, but doesn't cure the problem. You'll get some cycles back from not having to assemble the streams, but the bottom...
October 29, 2009 at 4:11 pm
Note: see link at bottom of post.
There are two types of CALs: Machine and User.
A Device CAL licenses a single workstation/phone/etc. from which multiple users may interactively log in and...
October 12, 2009 at 3:35 pm
You may only install one default instance of SQL Server on a server.
For clustering to work, you must install an instance on every node (server) in the cluster...
October 12, 2009 at 3:05 pm
Viewing 15 posts - 391 through 405 (of 701 total)