Viewing 15 posts - 4,291 through 4,305 (of 11,678 total)
How do you know which amount you have to transfer between branches?
As this is done on a daily basis I will always have to know what the items available are...
October 31, 2013 at 4:24 am
db808 (10/30/2013)
Also is 2...
October 31, 2013 at 3:20 am
I sincerely doubt it.
SSIS packages are executed with dtexec.exe and as far as I know (unless I'm missing something) .exe files cannot run on Linux.
October 31, 2013 at 3:19 am
Here you go:
-- Create Table
CREATE TABLE #TestDates
(VoyageDate DATE, Ranges DATE, Earnings INT);
-- Insert Sample Data
INSERT INTO #TestDates
VALUES ('2013-01-01','2013-01-15',40000),('2013-01-15','2013-02-05',25000),('2013-02-05','2013-03-16',35000);
-- Tally Table of 6561 rows
WITH T1(F) AS
(
SELECT...
October 31, 2013 at 3:14 am
nilamskhandare 86777 (10/31/2013)
I have very big query (exceeds 300 line) and i want ot paste the same of dataset query designer.
Is their any way by which i...
October 31, 2013 at 2:59 am
Your process might be improved, but there isn't enough detail for us to work on.
To store the result of the query in a variable (make sure only 1 row is...
October 31, 2013 at 2:54 am
Nice article, nice to see some alternatives to the "insert in staging table and then do an update".
However, it's a we can't review the UPDATE statement used. The article...
October 31, 2013 at 2:37 am
I can't see the picture, try posting it as an attachment to your post.
October 30, 2013 at 3:19 pm
Janie.Carlisle (10/30/2013)
Thanks for help. Was trying to avoid duplicate work but not sure it's possible. Don't really see the logic of pushing the data from an ERP into a DW...
October 30, 2013 at 2:59 pm
I know there are specific SSIS connectors for Teradata, but not sure they are available for 2005.
Never worked with Teradata myself.
October 30, 2013 at 2:30 pm
Star schema's with facts and dimensions is just a modelling technique used for data warehouses.
If your model is implemented in SQL Server, you can still use CTEs and UNION ALL...
October 30, 2013 at 1:46 pm
OK, this is weird.
Some guy just started a thread with as title a part of my signature.
The post itself is a reply from me taken from another thread.
When you look...
October 30, 2013 at 1:39 pm
below86 (10/30/2013)
...osql -S %1 -E -d %2 -i "%3%4.sql" -o "%3%4.log" -b
...
Just for your information:
osql is deprecated (and it has some issues. I remember it not working with utf8 files...
October 30, 2013 at 1:25 pm
MSDN makes it seems you can install SQL 2014 on 32-bit systems:
Hardware and Software Requirements for Installing SQL Server 2014
On the preview site, I see the following:
Previews
ISO 64-bit and 32-bit
CAB...
October 30, 2013 at 5:20 am
Viewing 15 posts - 4,291 through 4,305 (of 11,678 total)