Viewing 15 posts - 391 through 405 (of 542 total)
Welsh Corgi (8/3/2011)
Do you know what DDL and sample data is?
No actually my English is not good neither are my SQL skills...I do know what a stored procedure is though...
August 3, 2011 at 5:57 am
pwalter83 (8/3/2011)
John Mitchell-245523 (8/3/2011)
August 3, 2011 at 5:17 am
John Mitchell-245523 (8/3/2011)
August 3, 2011 at 5:07 am
John Mitchell-245523 (8/3/2011)
Iulian -207023 (8/3/2011)
or instead of :
ARRIVAL_SCHEDULE_DT <= dateadd(mm, 3, getdate())
you can use this condition too:
datediff(mm, ARRIVAL_SCHEDULE_DT, getdate()) <= 3
Iulian
I would advise against doing that, since it would make...
August 3, 2011 at 4:24 am
John Mitchell-245523 (8/3/2011)
Something like this?SELECT <column list>
FROM MyTable
EXCEPT
SELECT <column list>
FROM MyTable
WHERE PORT_CD = 'BEZEE'
AND ARRIVAL_SCHEDULE_DT < dateadd(mm, 3, getdate())
John
I hope this would explain it better. Below are the conditions...
August 3, 2011 at 4:21 am
Dwayne Dibley (8/3/2011)
WHERE PORT_CD = 'BEZEE'
AND ARRIVAL_SCHEDULE_DT < = dateadd(mm, 3, getdate()
Thanks for your reply but I hope it was that easy. Actually the thing is I need to...
August 3, 2011 at 3:56 am
Kiara (7/26/2011)
pwalter83 (7/26/2011)
GSquared (7/26/2011)
July 28, 2011 at 5:11 am
GSquared (7/26/2011)
July 26, 2011 at 10:05 am
GSquared (7/26/2011)
pwalter83 (7/26/2011)
steveb. (7/26/2011)
You can setup one-way transactional replication.Also I don't see how running an SSIS packages is any more secure..
this is really ridiculous, i specifically mentioned above that...
July 26, 2011 at 9:42 am
Gianluca Sartori (7/26/2011)
Did you register the linked server?
I have a couple of questions now based on your question :
1. Does the other server need to be registered ?
2. How do...
July 26, 2011 at 4:43 am
Gianluca Sartori (7/26/2011)
This should do:
Select *
Into #TempA
From TB_ARTICLE
Where ARTICLE_ID not in (Select ARTICLE_ID from remote_server_name.database_name.schema_name.TB_ARTICLE)
EXEC('USE database_name; set identity_insert TB_ARTICLE on') AT remote_server_name
Insert into remote_server_name.database_name.schema_name.TB_ARTICLE
Select * From #TempA
Hope this helps
Gianluca
Hi Gianluca,
Thanks...
July 26, 2011 at 4:31 am
Gianluca Sartori (7/26/2011)
Looks like a good place for replication.Have you checked that option?
Actually this option has been discussed before and rejected by the IT support team here due to some...
July 26, 2011 at 4:03 am
steveb. (7/26/2011)
You can setup one-way transactional replication.Also I don't see how running an SSIS packages is any more secure..
this is really ridiculous, i specifically mentioned above that the only...
July 26, 2011 at 3:09 am
Elliott Whitlow (7/25/2011)
July 26, 2011 at 2:45 am
GSquared (7/25/2011)
Even though you may not know a better solution, it's likely someone does. Knowing the underlying problem will give insight into...
July 25, 2011 at 9:26 am
Viewing 15 posts - 391 through 405 (of 542 total)