Viewing 15 posts - 376 through 390 (of 462 total)
The table looks like this:
LogicJobID
---------------------------------------------------------------------
CompID = 21
DeptID = 2 AND JobTitle = 'Clerk'2
CONTAINS(JobTitle, 'HR')3
JobTitle = 'Storesman' OR JobTitle = 'Warehouse Op'4
Then my source data might look like this:
EmpIDCompIDDeptID JobID
-----------------------------------------------
112Clerk
222Clerk
324HR Manager
436Storesman
546Warehouse...
September 18, 2009 at 4:50 am
dreamslogic (9/17/2009)
This is my first project can anyone help me by providing SQL query, how to generate below questions. They are three questions a,b and c.
Tblconsignment
Job_no, job_type, ...
September 17, 2009 at 3:13 am
Duplicate post: replied here,
http://www.sqlservercentral.com/Forums/Topic789422-338-1.aspx
September 17, 2009 at 3:03 am
Just to add to what ALZDBA said (which is what you should do first), I did find this document handy when I was doing the upgrade.(Its from MSDN) . I...
September 17, 2009 at 3:02 am
September 15, 2009 at 12:55 am
Not sure if I understood your requirement properly but if its about the execution then I am sure you would have looked at the stored procedure being referred to in...
September 15, 2009 at 12:49 am
I have seen this in lot of databases. Some having just two columns for association and some with a primary key (identity values) . I would go either for the...
September 14, 2009 at 10:01 am
nitin.iec (9/14/2009)
September 14, 2009 at 9:31 am
amodi (9/14/2009)
I have two table(say table A and table B) variables, both contains records.
I want to delete records of table A that are not in table B.
How can i...
September 14, 2009 at 8:59 am
ravi4work (9/14/2009)
select * from vehicle_det A
where duehours= (select min(duehours) from vehicle_det where vehicle=...
September 14, 2009 at 7:22 am
Are you running DTS on SQL Server 2005? sorry its not an attempt to answer your question, was just curious to know. This is not the reason for your error....
September 14, 2009 at 7:07 am
Thanks for the post, it was clear.
A quick and dirty way to do that just to avoid cursor is this, I cant say this is the best, performance wise,...
September 14, 2009 at 6:56 am
Hi,
First of all your link has got some problem it seems. Its not opening the excel. Even if it opens, I dont think it will be of much help....
September 14, 2009 at 2:04 am
Not sure if this will serve the purpose!
Select Len('SQLSERVER') - LEN(REPLACE('SQLSERVER','S', ''))
September 9, 2009 at 5:04 am
Viewing 15 posts - 376 through 390 (of 462 total)