Viewing 15 posts - 7,456 through 7,470 (of 8,760 total)
F/-\R//-\Z (8/17/2014)
hiI try your code but this is not work!!!
no detect deferent row!
Here is the the code I previously posted with some sample data, works fine on my end;-)
😎
USE [tempdb]
GO
INSERT...
August 21, 2014 at 1:07 am
anoosha.konaparthi (8/20/2014)
Again getting the same error after executing the above
Repeating Gail's request:
Please post the full and complete, unedited output of that CheckDB command. DO NOTHING ELSE FOR NOW!
If...
August 20, 2014 at 10:35 pm
Quick thought, this can easily be stuffed
😎
;WITH BASE_ID AS
( SELECT BID FROM
(VALUES (4461),(14130),(23891)) AS X(BID)
)
SELECT
BI.BID
,STUFF('CP000000000000'
...
August 20, 2014 at 10:25 pm
Paresh Motiwala (8/20/2014)
I have been reading too much good stuff about CSI. hence I have been pushing our datawarehouse be upgraded to sql 2014.
Citing this as one of...
August 20, 2014 at 12:45 pm
Paresh Motiwala (8/20/2014)
I am just running a bench marking test. With and without columnstore indexes....
Columnstore index will not aid normal row retrieval, the test may therefore portray the negative impact...
August 20, 2014 at 11:37 am
Paresh Motiwala (8/20/2014)
...
August 20, 2014 at 9:37 am
John Mitchell-245523 (8/20/2014)
Good points there. Hence, my new improved version 2. I've padded out TimeDecimal with another two zeros (that deals with the small numbers), then converted to...
August 20, 2014 at 9:12 am
Ed Wagner (8/20/2014)
Eirikur Eiriksson (8/20/2014)
Quick question, what SQL Server Version are you on (SELECT @@VERSION)?😎
SQL 2008 SP3 64-bit Standard Edition running on Windows Server 2008 Enterprise.
Then Lynn's solution is your...
August 20, 2014 at 6:47 am
Quick question, what SQL Server Version are you on (SELECT @@VERSION)?
😎
August 20, 2014 at 5:54 am
er.mayankshukla (8/20/2014)
I had done a page compression on an archive Table on my Dev Server.
And it significantly reduced the size of the table.
I have a non clustered index and...
August 20, 2014 at 3:03 am
Quick solution, more a POC than anything else.
😎
USE tempdb;
GO
DECLARE @TSTR NVARCHAR(200) = N'<TV<MR1#4.0#true#2.0#USD>VT>,<TV<MR2#3.0#true#1.5#USD>VT>,<TV<MR3#0.0#true#0.0#USD>VT>,<TV<MR4#0.375#true#0.19#USD>VT>';
DECLARE @SQL_STR NVARCHAR(MAX) = N''
SELECT @SQL_STR = N'select [Model Code],[Persentage],[isAbs],[AppliedValue],[Currency] from (values '
+ REPLACE(REPLACE(REPLACE(@TSTR,N'<TV<',N'('''),N'>VT>',N''')'),N'#',N''',''') + N') as X([Model...
August 20, 2014 at 2:18 am
Quick thought, as this is straight forward in T-SQL, why not do this in the source query?
😎
USE tempdb;
GO
DECLARE @TESTDATA TABLE
(
ID INT...
August 20, 2014 at 2:02 am
This is straight forward using the ROW_NUMBER function and setting the order by descending order of the PERIOD. Here is an example that should get you passed this hurdle.
😎
USE tempdb;
GO
--PERIOD...
August 20, 2014 at 1:04 am
Quick thougt, sounds more like a network/name resolution issue unless the server is very busy. Try this when you know that the server is less busy, look into the tcp/ip...
August 19, 2014 at 10:57 pm
CELKO (8/19/2014)
would you care to share a definition of the difference of the two?
You'll be sorry; this is the short version 😀
Thank you for this and not at all sorry...
August 19, 2014 at 10:19 pm
Viewing 15 posts - 7,456 through 7,470 (of 8,760 total)