Viewing 15 posts - 2,146 through 2,160 (of 3,500 total)
This is a partial answer, but if you want to learn data warehousing and understand what you're doing, read Ralph Kimball's Data Warehouse Toolkit, and read Adamson's Star Schema: Complete...
December 28, 2015 at 4:28 pm
Does database B already have data in it? If not, it would be easier to restore A over B.
December 27, 2015 at 4:07 pm
Interesting metric... How much sh*t do you feel comfortable being covered with when it hits the fan? More frequent log backups and full backups minimize the stink...
December 26, 2015 at 4:45 pm
Alex,
You'd just do something like
SET NOCOUNT ON;
INSERT INTO DestTable
SELECT [fieldlist] FROM SrcTable WHERE...
in your stored procedure and then just call it in a job that you schedule.
December 26, 2015 at 9:36 am
Alex,
this part: "What I want to do is have the data populate from the nightly run into a SQL table (already created) each night at least 4 rows will get...
December 25, 2015 at 8:48 pm
Was it removed in 2016? I didn't really ever use it much... just never had a reason to.
That said, anybody know what MS's plans are with reporting? It seems...
December 25, 2015 at 7:45 pm
First off, this is an Integration Services question. You would create all the steps there and run it via a Job. I think you just posted in the wrong...
December 25, 2015 at 2:46 pm
December 20, 2015 at 9:23 pm
Faulty reasoning on his part in my opinion. They're just different.
December 20, 2015 at 4:51 pm
Can't you just change the font color property value to an expression?
December 18, 2015 at 3:23 pm
This would be easier to pull off in Reporting Services. Is that an option?
December 16, 2015 at 5:28 pm
I think you're missing a join.
SELECT FirstName
FROM NewRecs n
WHERE NOT EXISTS (SELECT FirstName
FROM ExistingRecs e
WHERE e.FirstName = n.FirstName);
Note the join between NewRecs and ExistingRecs in the...
December 15, 2015 at 1:07 pm
That would make a great SQL Saturday half-day or full day precon... I just wish someone would put together even part of that. Sure, you can look up the...
December 15, 2015 at 11:01 am
If you stripped off the WHERE clause, it would be a valid query in SQL Server. I would convert the parameters to SQL Server, though.
--put in the real field...
December 15, 2015 at 10:53 am
Viewing 15 posts - 2,146 through 2,160 (of 3,500 total)