Viewing 15 posts - 1,291 through 1,305 (of 8,731 total)
May 10, 2017 at 11:13 am
May 10, 2017 at 10:08 am
May 10, 2017 at 9:06 am
With that size, flat files might be a better option as you won't be using both databases while transferring the data through the network.
May 10, 2017 at 8:48 am
Using SSIS would be great but the SQL...
May 10, 2017 at 8:02 am
May 10, 2017 at 7:04 am
Script just the structure, not the data. Then use SSIS or anything similar to move the data from one database to the other.
You can't downgrade a database. For that...
May 10, 2017 at 6:49 am
May 10, 2017 at 6:33 am
SSIS is better handling errors as you can send the problematic rows to a different destination.
T-SQL can be faster and easier to write. But, as mentioned by Alan, it...
May 9, 2017 at 1:01 pm
I don't see why wouldn't you.
CREATE TABLE SomeTable(
SomeID int PRIMARY KEY,
SomeValue varchar(100),
SomeDate datetime
);
INSERT INTO SomeTable
VALUES( 1, 'A',...
May 9, 2017 at 10:16 am
May 9, 2017 at 9:01 am
Made a recent change to code and am now unit...
May 9, 2017 at 5:30 am
Maybe something like this would work.
SELECT COL1, COL2, NEW_COLUMN
FROM TABLE
CROSS APPLY (VALUES('COL3', CAST( COL3 AS varchar(100))),
('COL4', CAST( COL4 AS varchar(100))),
('COL5',...
May 8, 2017 at 9:32 am
Viewing 15 posts - 1,291 through 1,305 (of 8,731 total)