Viewing 15 posts - 3,976 through 3,990 (of 8,753 total)
imba (1/13/2016)
I am in need of some assistance. I have a column that have values that look like this:
111#222#33333#44#555#66
The length of the values can change. I...
January 13, 2016 at 11:55 pm
sushantkatte (1/13/2016)
January 13, 2016 at 11:03 pm
Eric M Russell (1/13/2016)
If...
January 13, 2016 at 4:04 pm
abdullah.zarour (1/13/2016)
Hello This is a sample empty code body for your reference :CREATE TRIGGER DeleteMedicalGroup ON dbo.MedicalGroup
INSTEAD OF DELETE
AS
BEGIN
ROLLBACK;
END;
Don't do this, the rollback is neither needs...
January 13, 2016 at 3:56 pm
Quick example
😎
USE tempdb;
GO
SET NOCOUNT ON;
IF OBJECT_ID(N'dbo.TBL_TEST_DELETE_TRIGGER') IS NOT NULL DROP TABLE dbo.TBL_TEST_DELETE_TRIGGER;
CREATE TABLE dbo.TBL_TEST_DELETE_TRIGGER
(
TDT_ID INT IDENTITY(1,1) NOT NULL CONSTRAINT PK_DBO_TBL_TEST_DELETE_TRIGGER_TDT_ID PRIMARY...
January 13, 2016 at 3:35 pm
Hugo Kornelis (1/13/2016)
January 13, 2016 at 2:45 pm
Quick untested guess
😎
SELECT DISTINCT t1.ProjectUID,t1.BWF , t1.Deliverable ,
--Supressed data columns
STUFF(
(SELECT DISTINCT ', ' + (t2.[GeoMarket])
FROM #deploys t2
where t1.ProjectUID = t2.ProjectUID AND t1.BWF = t2.BWF AND t1.Deliverable = t2.Deliverable
FOR...
January 13, 2016 at 1:36 pm
monilps (1/13/2016)
Didn't meant to waste anyone time.
No, this is similar but not the same....
January 13, 2016 at 1:31 pm
monilps (1/13/2016)
I have updated below table:
Col1Col2 Col3 Col4 RowNumber
123AX ...
January 13, 2016 at 1:18 pm
monilps (1/13/2016)
I have below table:
Col1Col2 Col3 RowNumber
123AXC 12/1/2015 1
123AXCVV 12/1/20152
345XSW 12/5/20151
345XSW-SE12/5/20152
567ERW ...
January 13, 2016 at 12:52 pm
crookj (1/13/2016)
Grumpy DBA (1/13/2016)
djj (1/13/2016)
DonlSimpson (1/13/2016)
GirlTatoo
Dragon
Tiamat
Fáfnir
January 13, 2016 at 12:05 pm
SQLRNNR (1/13/2016)
Jacob Wilkins (1/13/2016)
edwardwill (1/13/2016)
Jacob Wilkins (1/13/2016)
edwardwill (1/13/2016)
Eirikur Eiriksson (1/12/2016)
SQLRNNR (1/12/2016)
January 13, 2016 at 11:57 am
Jeff Moden (1/13/2016)
Even with this, you still have a bit of the "mouse guarding the cheese". The only true method of knowing how many rows should be in a...
January 13, 2016 at 9:46 am
Steve Jones - SSC Editor (1/13/2016)
delimiter.
You can look for...
January 13, 2016 at 9:25 am
How big are these files? One option is to load the file into a variable using t-sql and openrowset, then count the lines by comparing the length against the length...
January 13, 2016 at 9:10 am
Viewing 15 posts - 3,976 through 3,990 (of 8,753 total)