Viewing 8 posts - 1 through 8 (of 8 total)
The FileID column does not look like FilePath column.
July 9, 2014 at 8:20 am
Is new version FIPS compliant?
April 4, 2012 at 10:36 am
No problem from DroidX
January 5, 2011 at 9:03 am
October 17, 2008 at 1:25 pm
Import data to empty table, same like target. And then run SQL query to update record already exists or insert new record.
August 5, 2004 at 10:39 am
April 16, 2004 at 12:53 pm
Try this one--------->
SET NOCOUNT ON
--CREATE TEMP TABLE FOR TEST
CREATE TABLE #TEMPTABLE(NUM_ID INT)
INSERT INTO #TEMPTABLE(NUM_ID) VALUES(1)
INSERT INTO #TEMPTABLE(NUM_ID) VALUES(3)
INSERT INTO #TEMPTABLE(NUM_ID) VALUES(5)
INSERT INTO #TEMPTABLE(NUM_ID) VALUES(8)
INSERT INTO #TEMPTABLE(NUM_ID) VALUES(10)
--SELECT ST
SELECT TEMP1.NUM_ID +...
May 8, 2003 at 10:07 am
Viewing 8 posts - 1 through 8 (of 8 total)