Viewing 15 posts - 301 through 315 (of 462 total)
deepzzzz (10/15/2009)
The error isCould not load file or assembly 'System.EnterpriseServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The module was expected to contain an assembly manifest. (mscorlib)
That looks...
October 16, 2009 at 1:49 am
The answer to this really is to have the service run under a domain account with the correct privileges to access the UNC path.
Thanks.I am with Howard on this.
October 15, 2009 at 11:50 pm
BrainMan (10/15/2009)
Yea, the CLR was my next stop. I haven't tried that yet. Can the CLR play outside the SQL sandbox?
Yes I think so. By setting the Permission level to...
October 15, 2009 at 11:41 pm
I guess the values in the THEN clause should all be of same data type!
Here, first three case you are assigning integer values (1,2 and 3) and the last one...
October 15, 2009 at 9:20 am
Thats because you are mixing both of our suggestions!
try this in your where clause
where finalcalledpartynumber = ('386') OR callingPartyNumber = ('386')
AND dateTimeOrigination >= @StartInt
AND dateTimeOrigination<= @EndInt
October 15, 2009 at 9:08 am
GSquared (10/15/2009)
October 15, 2009 at 8:01 am
ohh sorry, dint see Gsquared's response!
October 15, 2009 at 7:55 am
Sorry if I've not understood ur requirement, but does this work?
drop table t1
Create table t1 (tim int, rem varchar(100))
select 86400
INSERT INTO t1 VALUES (1251781074, 'day1')
INSERT INTO t1 VALUES (1251781074...
October 15, 2009 at 7:53 am
BrainMan (10/14/2009)
October 15, 2009 at 3:22 am
Is it possible to paste your query here please?
October 15, 2009 at 1:41 am
Requirement is not clear as such.. but is this what you are looking for?
SELECT <Your coulmns....n>
INTO #tableB
FROM TableA
October 15, 2009 at 1:18 am
Sorry if I've not understood your requirement clearly, but is this what you are looking for?
SELECT * FROM
(SELECT *, ROW_NUMBER() OVER (PARTITION BY Customer_ID ORDER BY SEQUENCE_NO desc) AS...
October 14, 2009 at 1:56 pm
I guess you are looking for this?
Select * from sysobjects
Where id in (Select id from
syscomments Where text like '%urcolumn%')
not sure if it works on 2000 as i dont...
October 14, 2009 at 8:59 am
Viewing 15 posts - 301 through 315 (of 462 total)