Viewing 15 posts - 4,666 through 4,680 (of 8,761 total)
Quick thought, the description of the logic does not fit the expected results, can you please amend either or both?
😎
August 26, 2015 at 1:44 am
Quick question, can you post the code for the procedure Abc.DBO.aspRoleFCUD?
😎
August 26, 2015 at 12:55 am
Quick questions, what are the memory specs (hardw.,vm,provisioning)? What are the sql server's mem configs?
😎
August 25, 2015 at 11:22 pm
For completeness, the order by does not work with the over clause prior to 2012
😎
WITH SampleData (PERSON,TRANSACTDATE, STARTDATE, END_DATE, IN_PUNCH,OUT_PUNCH,HOURS) AS
(
SELECT 1234,'08/03/2015','08/03/2015','08/03/2015', '06:00','09:00','3' ...
August 25, 2015 at 10:52 pm
Ed Wagner (8/24/2015)
crookj (8/24/2015)
djj (8/24/2015)
ApplesOranges
Lemon
Limoncello
August 24, 2015 at 7:05 am
Further on Phil's fine answer, recommend adding a POC (Partition, Order, Covering) index on the table, makes a huge difference if the set is large, here is a quick example.
:cool:...
August 22, 2015 at 4:11 am
To get the desired result set, we only need to do minor changes to the query, note that there is one "FOR XM" for each nesting level in the output.
😎
SELECT
...
August 22, 2015 at 1:21 am
Quick thought, script the restore rather than using same, it is straight forward and doesn't fail as the ui does. If you want I can dig up some of my...
August 21, 2015 at 9:52 am
TomThomson (8/20/2015)
whereisSQL? (8/20/2015)
Luis Cazares (8/20/2015)
DonlSimpson (8/20/2015)
CurvesLines
Parallel
Euclid
Relation
August 21, 2015 at 2:16 am
atulyan.aries (8/20/2015)
Hi Team,While trying to uninstall SQL 2012 I get the below error
sql server error the given key was not present in the dictionary sql 2012
Please help on this
Regards
Atulyan
Have you...
August 20, 2015 at 9:31 am
ARC211 (8/20/2015)
Date8/20/2015 12:55:50 AM
LogSQL Server (Current - 8/20/2015...
August 20, 2015 at 7:55 am
Ed Wagner (8/20/2015)
djj (8/20/2015)
DonlSimpson (8/19/2015)
Ed Wagner (8/19/2015)
Luis Cazares (8/19/2015)
Revenant (8/19/2015)
ZZartin (8/19/2015)
whereisSQL? (8/19/2015)
BL0B_EATER (8/19/2015)
WaterConservation
Fire
Alarm
Clock
Time
Fades
Grave
Dead
Terminal
August 20, 2015 at 5:34 am
Thank you Arun for this write up, good job.
😎
August 20, 2015 at 3:57 am
Quick static solution
😎
USE RDSTEEST;
GO
SET NOCOUNT ON;
IF OBJECT_ID(N'dbo.TBL_SAMPLE_DATA') IS NOT NULL DROP TABLE dbo.TBL_SAMPLE_DATA;
CREATE TABLE dbo.TBL_SAMPLE_DATA
(
ItemID INT ...
August 20, 2015 at 2:56 am
Viewing 15 posts - 4,666 through 4,680 (of 8,761 total)