Viewing 15 posts - 91 through 105 (of 497 total)
robert.gerald.taylor (9/23/2014)
Then you'd just query any distinct records that have a description other than "No Rebate in Effect".HTH,
Rob
I think the OP would need to include 'No Rebate in Effect' too...
September 24, 2014 at 6:13 am
This is a forum for Microsoft SQL Server not MySQL. You're more likely to get answers posting on a MySQL forum.
Regards
Lempster
September 23, 2014 at 9:32 am
Your @count variable is only declared, never initialized or set to a value hence the null. You can use @@ROWCOUNT to return the number of rows affected by a statement,...
September 22, 2014 at 6:33 am
If you've configured a SQL Agent job to run every 10 minutes then that's exactly what it will do - run every 10 minutes. You can change the SSIS package...
September 17, 2014 at 3:44 am
If you are bcp'ing data out using a query then the syntax is as follows (assuming you want to bcp out all the data in a table):
bcp "SELECT * FROM...
September 17, 2014 at 3:38 am
I'm assuming that the grain of your Fact table is at the individual Sale level, right?
There are a number of methods you could use to cater for the attributes of...
September 15, 2014 at 7:08 am
GilaMonster (9/11/2014)
cafescott (9/11/2014)
September 15, 2014 at 1:28 am
cafescott (9/12/2014)
Hey GilaMonster, I have set up Transactional Replication and I am totally loving it! It works like a champ. Thanks for the excellent suggestion. 😎
I don't...
September 12, 2014 at 9:40 am
You can find out information about query plans from sys.dm_exec_query_stats, but if you want to find long-running queries, queries that consume a lot of CPU or queries that involve a...
September 12, 2014 at 7:57 am
miskeens (9/11/2014)
This will be one-off merge.I thought it will be a good task to learn SSIS.
Can you please guide me with the sql scripts?
Thanks!
I think you might be better off...
September 11, 2014 at 9:28 am
polkadot (9/5/2014)
September 10, 2014 at 5:26 am
Are you using the default Transaction Isolation Level of READ COMMITTED or have you changed it?
Regards
Lempster
September 10, 2014 at 5:21 am
Have you tried running each child package in a separate job? That may help you pinpoint the problem.
Regards
Lempster
September 9, 2014 at 3:01 am
No, the SCD transformation in SSIS only handles Type 1 and Type 2 SCDs...but I wouldn't use it at all because it performs poorly in terms of speed. Better to...
August 22, 2014 at 4:22 am
Viewing 15 posts - 91 through 105 (of 497 total)