Viewing 5 posts - 1 through 5 (of 5 total)
Thank you very much!
An "EXECUTE AS OWNER" seems to resolve it 😀
July 17, 2014 at 7:32 am
From the first glace you have couple of issue here:
1. The trigger is not designed for multiple records meaning the INSERTED (and DELETED) table can return more than one row.
2....
September 6, 2013 at 7:10 am
As stated before, the issue is that a column (and therefore a case-statement) can only have one data type.
if you need a formatted print, you could convert the results into...
September 3, 2010 at 7:27 am
Why using a CASE in the first place? The following will get the same result:
SELECT a.gender, a.NAME FROM #temp a
WHERE (a.gender = 'M' AND a.leavetypeid IN (1,2,3))
or (a.gender =...
September 10, 2009 at 10:16 am
I recently discovered that a SQL 2005 Enterprise installation requires a server OS like windows 2003 server.
On a none server OS (like XP) you can only install the client components.
April 30, 2008 at 3:41 am
Viewing 5 posts - 1 through 5 (of 5 total)