Viewing 15 posts - 1,456 through 1,470 (of 2,894 total)
You can use SSIS, or write custom query and export to file using BCP.
May 31, 2012 at 6:07 am
Looks like problem with connection string, try:
SELECT *
FROM OPENROWSET('SQLNCLI', 'Server=myserver;Database=DBA;UserId=ImaUser;Password=TopSecretPass',
'SELECT * FROM DBA.dbo.LDAP') as a
May 30, 2012 at 12:00 am
Is it one-off data-fix task? If you have no triggers on the table which you need to execute on delete, if it's not referenced by FK relationships and you need...
May 29, 2012 at 8:39 am
KS-321165 (5/29/2012)
I have two tables A and B which are joined by the EmployeeBadgeID. I have to capture all the records that have changed in both the tables...
May 29, 2012 at 7:18 am
Just to Note: not everyone will have ability (or wish) to download attached files from i-net, especially at their work places...
May 29, 2012 at 7:12 am
can you post the exact line of SQL you run to create your index?
May 29, 2012 at 7:10 am
you will need to use some unique key, try using primary keys in:
row_number() OVER (ORDER BY [YourPKColumnOrColumns])
May 29, 2012 at 7:08 am
Have you considered using Full-Text?
May 29, 2012 at 5:22 am
or a bit smaller:
;with allrules
as
(
select s.id, min (d.id) mdid
from dbo.Test_Join_Source2 s
join dbo.Test_Join_Destination2 d
on ...
May 29, 2012 at 5:06 am
It is done in SETS, using correlated sub-query.
There is another way:
;with allrules
as
(
select s.id, s.name1,s.name2,d.[DESC]
,d.id did
...
May 29, 2012 at 5:03 am
Pravasis (5/29/2012)
Eugene Elutin (5/29/2012)
the one with minimum id where any of the names...
May 29, 2012 at 4:22 am
I'm not going to fix the whole your trigger, but the following should give the idea of how it should be done.
The existing part for updating Planning_Applications :
DECLARE @AgentValue nvarchar(50)
set...
May 29, 2012 at 4:02 am
and what is the priority of your rules? which record from destination table you want to select first?
the one with minimum id where any of the names match or the...
May 29, 2012 at 3:31 am
Viewing 15 posts - 1,456 through 1,470 (of 2,894 total)