Viewing 15 posts - 3,166 through 3,180 (of 5,103 total)
Here is my advice:
1.Create a C# Application that Can read data from those services an schedule it so that you can accomplish your goal
2. It is possible to use COM...
July 18, 2005 at 12:00 pm
Select ApplicationName, Convert(varchar(13), StartTime,121) as Dte, Count(*) NoOfUsers
from YourTraceTable
group by ApplicationName, Convert(varchar(13), StartTime,121)
order by 1,2
July 18, 2005 at 9:22 am
As you probably can see there is no uniformity in for example Jr sometimes was set on the first name, sometimes on the Last ... some names have even stuff...
July 15, 2005 at 3:20 pm
and if the replicated data was done with merge then have alook at
sp_validatemergepulication and sp_validatemergesubscription
or if it is transactional or snapshot:
sp_publication_validation may prove usefull
![]()
July 15, 2005 at 3:11 pm
Steve,
How sure are you that ALL your data is following the Last,First, middle format?
And if you feel confident how will persons with two or more Names or Surnames are handled?
Can you post some examples?
July 15, 2005 at 2:55 pm
Have you tried?:
BULK INSERT Data.dbo.TableName
FROM '\\server\filename'
WITH
(FIELDTERMINATOR = ',',
ROWTERMINATOR = '\r\n'
)
July 15, 2005 at 2:33 pm
Create trigger on YourParentTable for Update
as
if @@rowcount = 0 return
if update(YourParentBitColumn)
begin
Update C set ChildTableBitColumn = i.YourParentBitColumn
YourChildTable C
join
inserted i
on c.pkey = i.pkey
where
(i.YourParentBitColumn is...
July 15, 2005 at 2:04 pm
03 Nissan Pathfinder .I would like my 88 honda back though .... maybe not ![]()
[Edit:] Oh, and yes I AM STUCK with it
July 15, 2005 at 1:34 pm
can you write an example of what you are trying to accomplish ?
July 15, 2005 at 1:29 pm
Does this table has a CLUSTERED index or is it missing one?
July 15, 2005 at 12:12 pm
I feel compeled to warn you if you are using SQL Logins that method does not work in Access 2000!
Cheers!
July 15, 2005 at 11:56 am
how about:
the concatention can also be used with chaindex:
IF(SELECT CHARINDEX( ','+'JK' +',' , ','+'TRC, JK3, YS, HA'+',')) > 1
print 'alright'
ELSE
print 'oh no'
and "oh no" is returned ![]()
July 15, 2005 at 11:49 am
Viewing 15 posts - 3,166 through 3,180 (of 5,103 total)