Viewing 15 posts - 91 through 105 (of 237 total)
David;
right now I added Status in the license table.
SELECT x.EMPID,COALESCE(a.[NAME],'') AS [NAME],COALESCE(l.LICENSE,'') AS [LICENSE] , COALESCE(l. EMPLSTS,'')
FROM (SELECT @EMPID AS [EMPID]) x
LEFT JOIN HREMP_adp a
ON a.EMPID =...
March 28, 2007 at 11:16 am
David:
Thx. Your query is working. If I added the condition on the license which I have two field verify and not expired. how will i write this query. Also as...
March 28, 2007 at 8:51 am
Do understand this part:
(SELECT N'111111' AS [EMPID]) x
LEFT JOIN @HREMP_adp a ON a.EMPID = x.EMPID
LEFT JOIN @License l ON l.EMPID = x.EMPID
where those @HREMP_adp variable come from...
March 28, 2007 at 8:19 am
this one is working with similiar syntax. It seems it did not consistently. Today I checked the data, just find that out. but I tested. It work well.
March 13, 2007 at 8:47 am
Not sure about
in this link metion about
Transactions that involve table variables last only for the duration of an update on the table variable. Therefore, table variables...
March 6, 2007 at 7:31 am
Since I am new to SQL server DBA, too. If I understand well about this.
Check the min and max ram assigned to the SQL Server. Make the minimum less than...
March 6, 2007 at 5:56 am
the title is Problems In Building a Data Warehouse.
March 5, 2007 at 7:06 am
David:
Will you please explain to me why you use max here ? Thx.
February 27, 2007 at 8:00 am
I did Exec sp_changedbowner 'sa' to my database and refreshed the table and check in my object browser. I still have the table as dbo.tablename. I might not understand well...
February 27, 2007 at 6:44 am
she said an user tried to enter an application and it displays an error message. i do not know whether she need to set up the application account to...
February 22, 2007 at 5:22 am
since it is money , why not return value as money, too.
February 21, 2007 at 9:00 am
since it is money , why not return value as money, too.
February 21, 2007 at 7:51 am
in practice, if it have so many join, it will really slow.
February 9, 2007 at 1:01 pm
ALTER PROCEDURE dbo.DueListWithPreviousTraining_Temp
@quiz VARCHAR( 25 ),
@fromdate datetime = NULL,
@todate datetime = NULL,
@unit nchar(5) = NULL,
@cc nvarchar(4000) = NULL,
@debug bit = 0
as
DECLARE @sql ...
February 7, 2007 at 5:33 am
yes.
1. find the most recent quiz empl take
2. not in the current training table.
-->get the due date.
February 6, 2007 at 12:19 pm
Viewing 15 posts - 91 through 105 (of 237 total)