Viewing 15 posts - 721 through 735 (of 10,144 total)
May 30, 2017 at 1:50 am
May 26, 2017 at 1:56 am
May 25, 2017 at 9:50 am
May 25, 2017 at 5:27 am
I am trying to write a script that will delete data from a given table...
May 25, 2017 at 4:47 am
May 25, 2017 at 1:47 am
May 24, 2017 at 1:57 am
DROP TABLE #mycompanytable2;
CREATE TABLE #mycompanytable2 (
CompanyName NVARCHAR(50) NOT NULL
,ItemName NVARCHAR(50) NOT NULL
,[Percent] NUMERIC(7,5) NOT NULL
);
INSERT INTO #mycompanytable2(CompanyName, ItemName, [Percent])
May 23, 2017 at 5:44 am
Posting my experience so that it help to others too.
Finally I...
May 23, 2017 at 5:24 am
This should get you started: IF 0 = 1 BEGIN
DROP TABLE #tb1
CREATE TABLE #tb1 (ID INT IDENTITY(1,1), [date] DATE , ref INT, amount INT, T2ID...
May 22, 2017 at 5:21 am
In addition to Thom's points:
Your query...
May 22, 2017 at 4:49 am
SELECT *
FROM ##Activity_Tracking
WHERE (
Referral_C IS NULL OR
Note_Ordered_C IS NULL OR
Breach_Ordered_C IS NULL OR
Breach_Recvd_C IS NULL OR ...
May 19, 2017 at 9:33 am
Viewing 15 posts - 721 through 735 (of 10,144 total)