Viewing 15 posts - 931 through 945 (of 1,062 total)
I had some young people just graduating from college working for me. Their technical skills were excellent but they did not have any business skills. Sometimes I feel I am under...
October 20, 2006 at 7:13 am
I always test the answer I get from the post. As Ronald Reagan said to Mikhail Gorbachev ' Trust but verify'
October 20, 2006 at 7:03 am
Steve
This is so far the best SQL server website I encounted. I had posted many questions and people were willing to help and I got a lot of good answers. ...
October 20, 2006 at 6:57 am
Array processing - before SQL Server 2000, you can only create temporary table, but now you can create an arrary.
DECLARE arraryname TABLE (....)
It is just liked creating a temp table but...
October 19, 2006 at 5:59 am
One time I had two interviews. One offered lower salary, one offered higher salary than I was earning. Of course I took the high salary without looking further into the company and...
October 17, 2006 at 9:59 am
Michael,
I created the Lotus Notes profiile and used it in SQL Mail. When I tested it using xp_sendmail, it said 'Mail Sent' but I did not receive any email. So...
October 13, 2006 at 12:46 pm
Michael,
Just curious, what does SQL Server 2005 do to fix this problem?
Thanks
October 13, 2006 at 10:55 am
You cannot use #temp in dynamic SQL. Temp table only exists in current session. If will automatically delete after you finish the session. So if you use dynamic sql, it...
October 12, 2006 at 6:34 am
Unfortunately it is very hard to find someone in the company you can depend on or ask question. In my old company I got into trouble when I talked to...
October 11, 2006 at 7:57 am
This is not data mining. It is marketing analysis. I used to work for a marketing research company. You have to pull a sample of audiences of different ages, gender, education background, georgraphy locatioin,...
October 11, 2006 at 7:42 am
I agree team work is important, but it depends on which team you are on. I worked in many projects in different companies. These were some of the teams I...
October 10, 2006 at 7:45 am
Since the industry does not pay too much attention to SQL and most companies think writing SQL is easy. That's why we had a hard time to find a good...
October 9, 2006 at 8:25 am
In my old company, they valued VB.Net, C#, Java are important but not SQL because the VP of the IT department said 'SQL is simple, any idiot knows how to...
October 5, 2006 at 8:28 am
When you create a function in a database, there is a permission issue, only sysadmin, db_owner and ddl_admin can use it but sysadmin can grant execute permission to other logon....
October 5, 2006 at 8:18 am
Do you want @Temp to capture the sum of all the quantity? Then your query had a problem.
DECLARE @TEMP AS REAL
SELECT @Temp = SUM(CASE WHEN ISNUMERIC(tableX.Quantity) = 0
...
October 5, 2006 at 8:01 am
Viewing 15 posts - 931 through 945 (of 1,062 total)