Viewing 15 posts - 4,996 through 5,010 (of 8,761 total)
sayedkhalid99 (6/28/2015)
declare @data decimal(18,2)
set @data = 5.55
-- output
select '5'
set @data = 5.58
-- output
select...
June 29, 2015 at 12:46 am
Jeff Moden (6/28/2015)
June 28, 2015 at 1:45 pm
Jeff Moden (6/28/2015)
June 28, 2015 at 11:53 am
ChrisM@home (6/28/2015)
So what, in this example, has data organised as 8k pages?
Or to put it another way, why should spools be expected to...
June 28, 2015 at 11:37 am
ChrisM@home (6/28/2015)
SET STATISTICS IO ON;
WITH rCTE AS (
SELECT n =...
June 28, 2015 at 8:54 am
ChrisM@home (6/28/2015)
SET STATISTICS IO ON;
WITH rCTE AS (
SELECT n =...
June 28, 2015 at 7:54 am
Done some testing on rCTEs in the passed, couldn't correlate the logical reads to rows/recursions.
😎
Simple test code
USE Test;
GO
SET NOCOUNT ON;
/* Recursions from 1-20,30,40,50,60,70,80,90,100 */
GO
DECLARE @SAMPLE_SIZE INT...
June 28, 2015 at 7:01 am
Quick cross-tab suggestion
😎
USE tempdb;
GO
SET NOCOUNT ON;
DECLARE @OracleEngData TABLE
( [OMNI_NUMBER] INTEGER
, [TIMESTAMP] INTEGER
, [DATA_TYPE] NVARCHAR(24)
, [DATA_TYPE2] NVARCHAR(24)
, [PARAMETER] NVARCHAR(32)
, [PARAMETER_VALUE] NVARCHAR(132));
INSERT INTO @OracleEngData
(OMNI_NUMBER,TIMESTAMP,DATA_TYPE,DATA_TYPE2,PARAMETER,[PARAMETER_VALUE])
VALUES
(506026,1413240436,'test_data','cnr',211250000,54.8)
,(506026,1413244259,'test_data','cnr',211250000,53.2)
,(506026,1413244679,'test_data','cnr',211250000,53.1)
,(506026,1413309646,'test_data','cnr',211250000,53.4)
,(506026,1413315987,'test_data','cnr',211250000,53 )
...
June 28, 2015 at 1:58 am
Sean Lange (6/26/2015)
DonlSimpson (6/26/2015)
Ed Wagner (6/26/2015)
BL0B_EATER (6/26/2015)
BWFC (6/26/2015)
eccentricDBA (6/26/2015)
djj (6/26/2015)
Ed Wagner (6/26/2015)
Eirikur Eiriksson (6/25/2015)
TomThomson (6/25/2015)
DrinkWater
Ocean
Liner
Makeup
Breakup
Terminate
Liquid Metal
Mercury
Buick
Ride
June 26, 2015 at 11:09 am
jonathan.crawford (6/26/2015)
dwain.c (6/25/2015)
I've heard that the CIA/NSA can learn a lot about you from what's on your bookshelf.Not sure what they'd make of the cat.
pshaw, that's nothing compared to your...
June 26, 2015 at 10:55 am
Ed Wagner (6/26/2015)
DonlSimpson (6/26/2015)
Ed Wagner (6/26/2015)
BL0B_EATER (6/26/2015)
BWFC (6/26/2015)
eccentricDBA (6/26/2015)
djj (6/26/2015)
Ed Wagner (6/26/2015)
Eirikur Eiriksson (6/25/2015)
TomThomson (6/25/2015)
DrinkWater
Ocean
Liner
Makeup
Breakup
Terminate
Liquid Metal
Mercury
Saturn
Orbit
June 26, 2015 at 10:37 am
TomThomson (6/25/2015)
Ed Wagner (6/25/2015)
DonlSimpson (6/25/2015)
whereisSQL? (6/25/2015)
Ed Wagner (6/25/2015)
Narud (6/25/2015)
djj (6/25/2015)
Ed Wagner (6/25/2015)
crookj (6/25/2015)
Stuart Davies (6/25/2015)
Revenant (6/25/2015)
Ed Wagner (6/25/2015)
BL0B_EATER (6/25/2015)
crookj (6/25/2015)
Ed Wagner (6/25/2015)
DonlSimpson (6/24/2015)
Ed Wagner (6/24/2015)
Sean Lange (6/24/2015)
Please!!!More
Routing
Redirection
U-Turn
opposite
Polar
Equatorial
Forrest
AD (Active Directory)
Domain
Password
Strong
Power
Hungry
Malnutrition
Food
Drink
Water
June 25, 2015 at 10:34 pm
qur7 (6/25/2015)
Can you be a bit ore descriptive?
I'll give it a try;-)
The error is coming from the Decrypt function when attempting to assign the output of DecryptByKey to the @Result...
June 25, 2015 at 9:55 pm
Piling on the NOLOCK discussion, the behaviour is different between temporary tables and normal heap tables. When using #temp tables, the NOLOCK hint will not only have a shared (S)...
June 25, 2015 at 9:36 pm
qur7 (6/25/2015)
I understand that I need to use convert function, but how and where, need a bit more explanation. Hope people wont mind.
Did you look at the thread in my...
June 25, 2015 at 10:38 am
Viewing 15 posts - 4,996 through 5,010 (of 8,761 total)