Viewing 15 posts - 1 through 15 (of 209 total)
The only clue to the right answer was the phrase "regardless of viewing software", and I got it right.
Of course, there aren't many options for either PDF or...
October 27, 2006 at 1:02 pm
That is a major limitation and one that will frustrate developers but will give DBAs and sys admins reasons to not allow debugging at all, at least on production machines.
I...
July 7, 2006 at 6:51 am
Both answers are wrong. This is a case where a third answer should be provided.
The default behavior indicates that the data, if smaller than 8 KB, would be stored...
April 24, 2006 at 7:40 am
Compatibility mode is only a small fraction of the problem. The indicated answer is _so_ wrong. Only the SQL Server 2005 instances can be consolidated with any confidence.
There...
March 23, 2006 at 7:05 am
It is interesting to note that this ability may be removed in later releases. The referenced page says:
"The placement scheme of assemblies in application domains is designed primarily to achieve...
March 14, 2006 at 7:07 am
Everyone... Remember, pick the "best" answer.
".999..." is clearly closer to ".84..." than the other answers so it is best and the only correct answer.
March 1, 2006 at 6:04 am
I think all that is required is that the flag is set or the row id matches the one given.
AND (@EMPID = 999 OR EMPID = @EMPID)
--Peter
February 22, 2006 at 2:14 pm
OK.
Remember just remember that PL/SQL != SQL*Plus != T-SQL.
The fact that MS SQL Server has one language/environment vs Oracle's two environments leads to confusion when going...
February 22, 2006 at 11:28 am
For TOAD, you can use this syntax and TOAD will prompt you every time for the value of CATEGORYID. If you use a _single_ ampersand, TOAD will reuse a...
February 22, 2006 at 9:18 am
cneuhold,
Thanks for clarifying. It really seems to me that the T-SQL language is not mature and can't match other compiled languages or PL/SQL.
February 22, 2006 at 8:55 am
If you could elaborate a little more on your goal, I might offer more specific advice or scripting examples.
I made the transition from Oracle to SQL Server and had...
February 21, 2006 at 11:42 am
Anonymous blocks allow you to imbed PL/SQL, including its variables, but that won't get you the results of the query. They have to be assigned to another variable, but...
February 21, 2006 at 10:31 am
In TOAD query window, enter the following:
SELECT * FROM Products WHERE CategoryID = 8
You can right click on upper left corner of results window and use Save As to export...
February 21, 2006 at 7:33 am
Use something like the following to generate the list of employee names:
SELECT employeeName, 1 orderby FROM employees
UNION
SELECT '-- All Employees --' employeeName, 999 orderby
ORDER BY orderby DESC, employeeName
--Peter
February 21, 2006 at 7:02 am
How is the transfer designed in DTS?
I suspect that it may have something to do with unique constraints (PKs) or something similar and that SQL Server wants to...
February 21, 2006 at 6:53 am
Viewing 15 posts - 1 through 15 (of 209 total)