Viewing 15 posts - 196 through 210 (of 237 total)
I used
select name, id from sysobjects where name = 'get_emp_list_FY06'
to get my objid. then I run this
select bucketid, cacheobjtype, objtype, objid, dbid
from master.dbo.SYSCACHEOBJECTS
where ...
September 11, 2006 at 5:42 am
I did not have SQL server 2005. I used the first method.
select *
from dbo.Employees E
where not exists (select *
from dbo.ModuleLog L
where L.EmployeeName = E.EmployeeName
and L.DOB = E.DOB).
Since I felt no...
August 15, 2006 at 11:08 am
Thanks. Right now I use
select cast(left(score,len(score)- 1) as smallint) from [Doctor Quiz Log]
May 26, 2006 at 10:16 am
I do not know what kind of the report you want to create. There are plenty link in the interent. If you more specify, It will more easy for other...
May 17, 2006 at 5:17 am
Thanks. But in the Virtual Directory properties , It seem no way for me to get into the property. Thanks.
May 16, 2006 at 9:57 am
I actually want to link to view. Since I have employee table which contain SS and other info I want to set up in the SQL . Weekly I compared...
April 5, 2006 at 7:16 am
I tried to connect the MS ACCESS to link the SQL server table using DSN-less connection since I do not like to go to different computer to set up the...
March 31, 2006 at 12:48 pm
how do i edit the table which have data there. Do I need to define bit_const. If I want to defaut value as 1. Can I do that in the...
March 31, 2006 at 12:17 pm
how do i edit the table which have data there. Do I need to define bit_const. If I want to defaut value as 1. Can I do that in the...
March 31, 2006 at 12:10 pm
I used DSN to link the sql table in ACCESS. I do not know what is the disadvantage of that.
March 21, 2006 at 5:56 am
Thanks. That is what I need. I need to combine two application together by figuring out how other people accomplish that.
March 14, 2006 at 8:35 am
SET CONCAT_NULL_YIELDS_NULL { ON | OFF } did not work in my case since I need to make the decision according to the value null or not.
March 14, 2006 at 8:17 am
Viewing 15 posts - 196 through 210 (of 237 total)