Viewing 14 posts - 16 through 29 (of 29 total)
Another point to remember, Microsoft does not support VMWare. You must consider Hyper-V. Again, when your job counts on it, not for production.
Joe
April 28, 2010 at 2:17 pm
Running a Production SQL Server that is highly transactional is an extreme issue. We have had customers with tempdb problems, poor or no response, and database corruption (CHECKDB errors)....
April 28, 2010 at 2:15 pm
Yes, it is very odd. What I was doing was to start a new trace, then select the custom template I made, and check the events within the template,...
February 18, 2010 at 2:11 pm
Yes the edit 200 rows then click on the Diagram then right click in the table area does work in SQL08. Interesting. But like the man said, who...
February 18, 2010 at 8:31 am
Yeah, but that Query designer feature (by right clicking on a table) does not work in SQL 08.
February 17, 2010 at 9:06 am
I have it working fine now. This is an application being ported from an Oracle Forms application into .Net and SQL Server. My job is to port...
July 22, 2008 at 7:06 am
So what I figured out is that if I replace the @ variables with the number 1, no matter what the column's datatype, the statement parses correctly. The "SET...
July 14, 2008 at 4:19 pm
fmtonly does all but one thing: handle @variables. It checks the table names, column names, keyword spelling, everything but if there is an @ anywhere in the statement it...
July 14, 2008 at 8:13 am
SQL returns msg 137 must declare scalar variable. So the final and real issue is how do you get the parser to parse a statement and ignore the scalar...
July 14, 2008 at 7:35 am
Lowell,
How would you check the return code after you exec the statement?
Doc
July 14, 2008 at 7:14 am
No, the company seeks code reuse. XML parsers can deal with: select * from t where tid= ?tid
Oracle's dbms_sql.parse: select * from t where tid = :tid
The question is...
July 14, 2008 at 6:22 am
The problem is that our application needs to evaluate strings before they are submitted for processing. and these strings may contain variables, e.g.,
" select *from t where id <...
July 10, 2008 at 3:38 pm
Viewing 14 posts - 16 through 29 (of 29 total)