Viewing 15 posts - 271 through 285 (of 485 total)
Setting the format to text using the Excel "Format Cells" menu option does not always have the desired effect - no idea why...
That is because "Format Cells" only affects how...
Mark
March 15, 2006 at 3:26 pm
The explanation on the question is not quite accurate, nor is it "Excel just does not handle nulls correctly". This issue goes as far back as Excel 97 (that I...
Mark
March 15, 2006 at 12:44 pm
It's not that it's more safer to start MSDE when needed (although I suppose it is safer, in the way that if it is not running, it cannot be hacked).
The...
Mark
March 13, 2006 at 6:51 am
WAIT! I wouldn't necessary recommend that. If the database is NOT going to be accessed from remote systems, it is better to disable the networking protocols to prevent access to...
Mark
March 10, 2006 at 4:41 am
You say these instances are MSDE? Were they installed with "DisableNetworkingProtocol=0" (false)?
By default, MSDE installs without any networking protocols. SQL Manager will only browse and pick up SQL Server instances...
Mark
March 9, 2006 at 1:53 pm
See this MS KB Article: How To Move a Database Diagram
http://support.microsoft.com/kb/320125/en-us
Mark
March 9, 2006 at 10:44 am
The Convert version from Phil will only work for seconds < 86400 (nbr second in a 24-hour day). If it is possible to have a greater value, you will want...
Mark
March 9, 2006 at 10:39 am
You can pass in the table name only as a text string (varchar/char argument). But you cannot use that table name in a query directly. Your sproc would either have...
Mark
March 9, 2006 at 10:18 am
Steve;
The BEST approach would be to redesign your Procs table to eliminate the repeating DiagID field.
PROCS(ID, PATID, DATE, CPTCODE, DIAGID)
This is accepted best practice (normalization) and will make your...
Mark
March 9, 2006 at 10:07 am
But understand that the governor is for concurrent database QUERIES, not concurrent users. Because most applications, web or desktop, spend most of their time working with data, not retrieving the...
Mark
March 6, 2006 at 6:47 am
There is not a maximum number of logons. You might mean maximum number of connections. By default, that should be 32,767. Run SELECT @@MAX_CONNECTIONS to be sure. If it is...
Mark
March 3, 2006 at 1:54 pm
Or, if you want to do it in one expression, it's easy if you reverse the string:
REVERSE(SUBSTRING(REVERSE(@test),1,charindex('\',reverse(@test))-1))
Mark
March 3, 2006 at 1:12 pm
How about:
dateadd(s,sum(datediff(ss,'0:0:0',CONTHIST.DURATION)) ,0)
Mark
March 3, 2006 at 12:44 pm
I assume you are starting the cobol app using Process.Start method. Are you using the overloaded version that uses the ProcessStartInfo class? Have you tried to use this to capture...
Mark
March 3, 2006 at 12:26 pm
Why not use that query and run it through Index Analyzer? You don't have to accept the results, just see what it recommends.
Mark
March 3, 2006 at 11:51 am
Viewing 15 posts - 271 through 285 (of 485 total)