Viewing 15 posts - 1 through 15 (of 18 total)
Hi folks,
I would like to see an enumerated list data type. It is a simple concept and MySQL has it.
(https://dev.mysql.com/doc/refman/5.7/en/enum.html)
Say you have a column to store...
February 3, 2017 at 6:57 am
Thanks Ted, Works great for a single row use.
December 8, 2016 at 6:08 am
Thanks to all for commenting and contributing ideas. I think it was many moons ago when I first used this technique. In doing a small scale test of a little...
September 24, 2015 at 3:43 pm
Thanks for pointing that out TerryCatt. Yes, you can use one or the other (Sparse or Compression), but not both.
Also, for SQL 2014, data compression is not supported for In-Memory...
April 22, 2015 at 6:05 am
I don't have any performance benchmarks yet. I am likely months from getting this into a deployment.
But since MSFT claims there is no overhead on NULL and only slight on...
April 15, 2015 at 1:32 pm
Hi Guys,
Thanks for your replies!
I do find articles like http://sqlmag.com/database-performance-tuning/practical-data-compression-sql-server that indicate in addition to storage savings, you may see a performance improvement. Which actually makes sense if...
October 7, 2014 at 5:48 am
It was a simple typo.
The td. should be hd.
Thanks for all who helped!
September 11, 2006 at 6:13 am
Here is the full procedure:
IF OBJECT_ID('ss_HelpDetails_PostUpdates') IS NOT NULL
DROP PROCEDURE dbo.ss_HelpDetails_PostUpdates
go
-- exec ss_HelpDetails_PostUpdates
CREATE PROCEDURE dbo.ss_HelpDetails_PostUpdates
AS
-- Copyright (c)
BEGIN
SET NOCOUNT ON
DECLARE @RunTime datetime
select @RunTime = getdate()
update HelpDetails
set CreatedAt = s.CreatedAt,
Spreading = s.Spreading,
Damage = s.Damage,
VirusType = s.VirusType,...
September 8, 2006 at 12:31 pm
I changed the command to this:
update hdtd
set hdtd.TechnicalDescription = stg.TechnicalDescription
from stg_HelpDetailsTechDesc stg
left join HelpDetails hd on stg.EventName = hd.title
left join HelpDetailsTechDesc hdtd on hdtd.HelpDetailsID = td.HelpDetailsID and
hd.HelpTypeID = hdtd.HelpTypeID
And...
September 8, 2006 at 11:42 am
I changed to this:
update hdtd
set hdtd.TechnicalDescription = stg.TechnicalDescription
from stg_HelpDetailsTechDesc stg
Left join HelpDetails hd on stg.EventName = hd.title
left join HelpDetailsTechDesc hdtd on hdtd.HelpDetailsID = td.HelpDetailsID
where hd.HelpTypeID = hdtd.HelpTypeID and hd.HelpTypeID...
September 8, 2006 at 10:04 am
Lucky,
I tried your suggestion and still get the same error message.
Thanks ......... reiny
September 8, 2006 at 9:02 am
Another question, I also want to access the data in the AgentParameters level. I am trying this, but getting multiple rows of null values. Is there a way to get...
October 6, 2005 at 9:43 am
Thanks a ton Ray. I don't work with XML much, so I didn't know what might be tripping it up. Since I don't need that piece of information, I can...
October 6, 2005 at 9:23 am
Viewing 15 posts - 1 through 15 (of 18 total)