Viewing 15 posts - 31 through 45 (of 57 total)
There are lots of free CMS you can use like DotNetNuke, WordPress etc.
If you want to build your own you might want to look at a WYSIWYG editor like CKEditor,...
February 4, 2012 at 10:12 am
I've never cared much for the new syntax, but you can also use:
SELECT ID,
NAME,
pvt.Home,
pvt.Office
FROM PivotTable
PIVOT(
MAX(PhoneNumber)
FOR [TYPE] IN([Home],[Office])
) AS pvt
February 2, 2012 at 3:08 pm
How about this:
SELECT ID,
NAME,
MAX(CASE WHEN type='Home' THEN PhoneNumber ELSE NULL END) AS [home],
MAX(CASE WHEN type='Office' THEN PhoneNumber ELSE NULL END) AS [Office]
FROM PivotTable
GROUP BY ID,Name
Hope this helps,
David
February 2, 2012 at 3:02 pm
PS
If you have an existing system you are using to track DDL events, it should be easy to import the history into this tool providing you have the original XML...
February 2, 2012 at 1:39 pm
Dev (11/18/2011)
the read to write ratio is normally biased towards reads.
Actually "It depends"
Also, some tables are likely to have high volumes of inserts/updates which could be possible candidates...
November 18, 2011 at 5:57 am
It's worth noting that even in OLTP systems, the read to write ratio is normally biased towards reads. Also, some tables are likely to have high volumes of inserts/updates...
November 18, 2011 at 1:42 am
Evil Kraig F (11/17/2011)
MyDoggieJessie (11/17/2011)
November 17, 2011 at 4:37 pm
As it's an identity column, the values inserted are always increasing in value so they are inserted at the end of the index. Lowering the fill factor won't improve...
November 17, 2011 at 2:23 pm
Size will depend very much on the individual environment, but you should try to avoid the need for auto-grow.
Tempdb can be critical to your database server performance and you...
November 16, 2011 at 12:30 pm
Does the stored procedure have any parameters? Check the compile value for the parameters in the execution plan on dev/production. It's possible that it's a parameter sniffing issue....
November 11, 2011 at 3:58 pm
Jayanth_Kurup (6/15/2011)
June 15, 2011 at 4:56 am
The host file is used to provide host name resolution - to convert a name into an IP address. This is a simple text file that you can edit...
November 16, 2010 at 1:25 am
I've found that adding an entry in the host file (c:\windows\system32\drivers\etc) of your client machine for the remote server can help with this issue. You would also need to...
September 7, 2010 at 4:08 am
The CLR code we are using is very simple:
Imports System
Imports System.Data
Imports System.Data.SqlClient
Imports System.Data.SqlTypes
Imports Microsoft.SqlServer.Server
<Serializable()> _
<Microsoft.SqlServer.Server.SqlUserDefinedAggregate(Format.Native, _
IsInvariantToDuplicates:=True, IsInvariantToNulls:=True, IsInvariantToOrder:=True)> _
Public Structure BitMaskOR
Dim val As SqlInt32
...
December 10, 2009 at 3:13 am
The server is configured to use 56GB (57344MB MAX server memory) of it's 64GB. Min Server Memory is 0. The service account has the lock pages in memory...
December 9, 2009 at 10:03 am
Viewing 15 posts - 31 through 45 (of 57 total)