User SqlACID - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T05:56:26Z http://stackoverflow.com/feeds/user/19797 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1931337/whats-your-favorite-software-book-that-was-fun-to-read/1931360#1931360 7 Answer by SqlACID for Whats your favorite software book that was fun to read? SqlACID 2009-12-18T23:54:41Z 2009-12-19T00:00:23Z <p><a href="http://rads.stackoverflow.com/amzn/click/0596000278" rel="nofollow">Programming Perl</a></p> <p>It's pathological. It's eclectic. But it's not rubbish.</p> http://stackoverflow.com/questions/1849370/end-user-ad-hoc-reporting-tool-microsoft-sql-server-management-studio-or-microso/1849470#1849470 1 Answer by SqlACID for End User Ad-Hoc Reporting Tool: Microsoft SQL Server Management Studio or Microsoft Access? SqlACID 2009-12-04T20:30:11Z 2009-12-04T20:30:11Z <p>Cons for Access certainly would be cost; SSMS should be free assuming you're properly licensed for the SQL server.</p> <p>Depending on the actual needs, some users might actually be better off with Crystal Reports (never thought I'd say that), or Reporting Services.</p> http://stackoverflow.com/questions/1811077/creating-sql-server-2000-database-using-sql-server-2008/1811159#1811159 0 Answer by SqlACID for Creating SQL Server 2000 database using SQL Server 2008. SqlACID 2009-11-28T00:42:56Z 2009-11-28T00:42:56Z <p>It depends on how you're going to get the new database back to the production 2000 server; if you create it in your 2008 instance, you can't back it up and restore it to 2000, even if you create it in compatibility 80 as Mladen noted; but you could generate scripts to export your database to the 2000 instance, as long as you don't have to copy any of the data in the tables. </p> <p>If you need to do a full backup and restore of the new database, you'll be better off with a 2000 instance to connect to for development, MSDE could be installed as a named instance alongside the 2008 edition.</p> http://stackoverflow.com/questions/1810073/sql-server-convertnumeric18-0-fails-but-convertint-succeeds/1810152#1810152 0 Answer by SqlACID for SQL Server CONVERT(NUMERIC(18,0), '') fails but CONVERT(INT, '') succeeds? SqlACID 2009-11-27T18:37:58Z 2009-11-27T18:37:58Z <p>Use <a href="http://msdn.microsoft.com/en-us/library/ms186272.aspx" rel="nofollow">ISNUMERIC</a> </p> <pre><code>declare @a varchar(20) set @a = 'notanumber' select case when isnumeric(@a) = 0 then 0 else convert(numeric(18,0),@a) end </code></pre> http://stackoverflow.com/questions/1774054/how-do-you-export-to-a-file-in-a-stored-proc/1780550#1780550 0 Answer by SqlACID for How do you export to a file in a Stored Proc? SqlACID 2009-11-23T00:25:38Z 2009-11-23T00:25:38Z <p>Assuming you have stored procedure MyProc in database MyDB on server MyServer, and you want results in tab delimited output file MyResults:</p> <blockquote> <p>bcp "exec MyDB.dbo.MyProc" queryout MyResults -T -c -t\t -S MyServer</p> </blockquote> <p>should work. bcp offers a lot of other options for output as well.</p> http://stackoverflow.com/questions/1687335/read-the-data-from-excel-sheet-into-datatable-without-empty-rows-in-c/1777443#1777443 1 Answer by SqlACID for Read the Data from Excel sheet into datatable without empty rows in C# SqlACID 2009-11-22T01:20:49Z 2009-11-22T01:20:49Z <p>If it's extra rows after the data you want, you will get them if there is formatting on the cells. Select the extra range, right click and do Clear Contents.</p> http://stackoverflow.com/questions/1772984/sql-server-bulk-delete-truncate-vs-delete/1773092#1773092 0 Answer by SqlACID for SQL Server - bulk delete (truncate vs delete) SqlACID 2009-11-20T20:35:53Z 2009-11-20T20:35:53Z <p>Depending on the size of the full database, the shrink may take a while; I've found it to go faster if it is shrunk in smaller chunks, rather than trying to get it back all at once.</p> http://stackoverflow.com/questions/1689681/generic-command-line-sql-program/1736371#1736371 1 Answer by SqlACID for Generic Command Line SQL Program? SqlACID 2009-11-15T02:32:43Z 2009-11-15T02:32:43Z <p>Why not use something built on Perl and <a href="http://dbi.perl.org/about/" rel="nofollow">DBI</a> like <a href="http://search.cpan.org/dist/DBI-Shell/lib/DBI/Shell.pm" rel="nofollow">DBI-Shell</a>? </p> http://stackoverflow.com/questions/1646230/how-do-i-import-a-com-object-namespace-enumeration-in-python/1647233#1647233 1 Answer by SqlACID for How do I import a COM object namespace/enumeration in Python? SqlACID 2009-10-29T23:49:30Z 2009-10-29T23:49:30Z <p>All of the file format constants are documented <a href="http://msdn.microsoft.com/en-us/library/bb241279.aspx" rel="nofollow">here</a></p> http://stackoverflow.com/questions/1601648/interfacing-with-the-end-users-scanner-from-a-webapp-web-scanner-integration/1622596#1622596 3 Answer by SqlACID for Interfacing with the end-user's scanner from a webapp (web/scanner integration) SqlACID 2009-10-26T00:26:04Z 2009-10-26T00:26:04Z <p>If your target audience is running Windows and IE, and you don't mind spending a few $$, <a href="http://www.atalasoft.com" rel="nofollow">Atalasoft</a> has some components that will do just what you're looking for. </p> http://stackoverflow.com/questions/1536205/running-another-program-in-windows-bat-file-and-not-create-child-process/1552371#1552371 0 Answer by SqlACID for Running another program in Windows bat file and not create child process. SqlACID 2009-10-12T01:59:04Z 2009-10-12T01:59:04Z <p>Could you use the windows task scheduler command line interface "schtasks /run" to start a job that runs the "another_prog"? You'd have to create the job ahead of time. There also used to be a "SOON" program with the Windows (NT) Resource Kit that would create dynamic entries for the "AT" command scheduler to run a job in a few minutes that would not require setting up a job ahead of time, it can still be found with a little searching.</p> http://stackoverflow.com/questions/1334322/openrowset-command-in-tsql-is-returning-nulls/1335587#1335587 1 Answer by SqlACID for OpenRowSet command in TSQL is returning NULLS SqlACID 2009-08-26T15:30:29Z 2009-08-26T15:30:29Z <p>If you don't mind opening the file in Excel, take the columns that have the problem, select the column, and do </p> <p><strong>Data -> Text to Columns -> Next -> Next -> Text</strong></p> <p>Save the spreadsheet and they should all come in as Text in OPENROWSET</p> <p>I've found using .CSV files instead of Excel, opened by setting up a Linked Server, and setting up the format of the files in schema.ini a more practical approach for handling imports like this, with that method you can explicitly choose each column's format.</p> http://stackoverflow.com/questions/1092775/sql-server-management-studio-quirks-allowing-things-it-shouldnt-and-then-screa/1092830#1092830 0 Answer by SqlACID for SQL Server Management Studio Quirks - Allowing things it shouldn't and then screaming at you for it SqlACID 2009-07-07T14:57:18Z 2009-07-07T14:57:18Z <p>A quirk yes, but a flaw, no. It's perfectly legitimate to have a table with no unique key, but it's not possible to delete a row from it with the table editor in SSMS (or Enterprise Manager before it) if there are identical rows. </p> <p>It isn't SSMS that let you create the duplicate rows, it is you that allowed it when you created your table with no primary key. You can always create an auto-incrementing identity column that would solve the problem.</p> <p>I wouldn't use the table editor for this sort of stuff, I would script INSERT statements.</p> http://stackoverflow.com/questions/245395/underused-features-of-windows-batch-files/252443#252443 9 Answer by SqlACID for Underused features of Windows batch files SqlACID 2008-10-31T02:23:57Z 2009-07-03T16:37:08Z <p>Search and replace when setting environment variables:</p> <pre><code>&gt; @set fname=%date:/=% </code></pre> <p>...removes the "/" from a date for use in timestamped file names.</p> <p>and substrings too...</p> <pre><code>&gt; @set dayofweek=%fname:~0,3% </code></pre> http://stackoverflow.com/questions/1031303/is-there-any-way-to-expand-the-processes-pane-in-sql-server-2008-activity-monitor/1032480#1032480 1 Answer by SqlACID for Is there any way to expand the Processes pane in Sql Server 2008 Activity Monitor? SqlACID 2009-06-23T13:08:43Z 2009-06-23T13:08:43Z <p>No way to resize that I'm aware of; 2 partial workarounds:</p> <ul> <li>Set the sorting or filtering so the things of interest will be on top, i.e. by database name, or application name.</li> <li>use exec sp_who2 in a query window</li> </ul> <p>I think the activity monitor is a work in process, we're supposed to be excited about being able to launch profiler directly from it, and love all the pretty graphs, when all we really want is to be able to resize a window.</p> http://stackoverflow.com/questions/1013001/backup-db-task-in-sql-2005-maintenance-plan/1024451#1024451 1 Answer by SqlACID for Backup DB task in SQL 2005 Maintenance Plan SqlACID 2009-06-21T18:15:15Z 2009-06-21T18:15:15Z <p>This is a bug, and fixed in SP3, see <a href="http://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx?FeedbackID=403969" rel="nofollow">this document</a></p> http://stackoverflow.com/questions/1007514/how-can-i-see-the-execution-plan-for-stored-procedures-and-triggers-in-sql-server/1007526#1007526 1 Answer by SqlACID for How can I see the execution plan for stored procedures and triggers in SQL Server? SqlACID 2009-06-17T14:48:50Z 2009-06-17T14:48:50Z <p>Assuming you're using MSSQL, yes, <a href="http://msdn.microsoft.com/en-us/library/ms190233.aspx" rel="nofollow">see here</a></p> http://stackoverflow.com/questions/929156/rave-report-that-comes-with-delphi-2006/984434#984434 0 Answer by SqlACID for Rave Report that comes with Delphi 2006 SqlACID 2009-06-12T00:11:04Z 2009-06-12T00:11:04Z <p>You can find documentation <a href="http://www.nevrona.com/files/rppro4.pdf" rel="nofollow">here</a>, with examples, to an older version but it should be pretty compatible with your version</p> http://stackoverflow.com/questions/969575/why-are-my-sql-indexes-being-ignored/970081#970081 1 Answer by SqlACID for Why are my SQL indexes being ignored? SqlACID 2009-06-09T13:26:22Z 2009-06-09T13:26:22Z <p>Have you tried </p> <blockquote> <p>exec sp_recompile tblInvoices</p> </blockquote> <p>...just to make sure you're not using a cached bad plan? </p> http://stackoverflow.com/questions/955924/tsql-dynamic-adding-of-columns-in-stored-procedure/955966#955966 5 Answer by SqlACID for TSQL dynamic adding of columns in stored procedure SqlACID 2009-06-05T13:52:48Z 2009-06-05T13:52:48Z <p>Try this:</p> <blockquote> <p>declare @sql nvarchar(100)</p> <p>set @sql = 'ALTER TABLE reports ADD '+ @columnname+' VARCHAR(50) NULL'</p> <p>exec sp_executesql @sql</p> </blockquote> http://stackoverflow.com/questions/945591/vs2008-and-crystal-reports-deployment-restrictions/947853#947853 0 Answer by SqlACID for VS2008 and Crystal Reports - Deployment restrictions? SqlACID 2009-06-03T23:36:36Z 2009-06-03T23:36:36Z <p>Sooner or later you will get introduced to the "The maximum report processing jobs limit configured by your system administrator has been reached." error. You can get around it by cycling the application pool for the site more frequently, but if it's heavily used, you'll eventually want to look at Crystal Enterprise Server.</p> http://stackoverflow.com/questions/944752/windows-can-console-output-inadvertently-cause-a-system-beep/944904#944904 1 Answer by SqlACID for Windows - Can console output inadvertently cause a system beep? SqlACID 2009-06-03T13:56:27Z 2009-06-03T13:56:27Z <p>If you don't want if to beep, you'll either have to replace the 0x7 character before outputting it, or disable the "Beep" device driver, which you'll find in the Non-Plug and Play Drivers section, visible if you turn on the Show Hidden Devices option. Or take the speaker out.</p> http://stackoverflow.com/questions/926254/data-exchange-standards/928473#928473 1 Answer by SqlACID for Data exchange standards SqlACID 2009-05-29T22:56:19Z 2009-05-29T22:56:19Z <p>Healthcare industry uses <a href="http://www.hl7.org/" rel="nofollow">HL7</a></p> <p>Real Estate uses <a href="http://www.rets.org/about" rel="nofollow">RETS</a></p> http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/922006#922006 3 Answer by SqlACID for Worst UI You've Ever Used SqlACID 2009-05-28T16:56:48Z 2009-05-28T16:56:48Z <p>See just about anything <a href="http://www.asktog.com/tog.html" rel="nofollow">Bruce Tognazzini </a>has been writing about for aeons, my (least) favorite is applications that <a href="http://www.asktog.com/Bughouse/10MostWantedDesignBugs.html" rel="nofollow">steal focus</a>.</p> http://stackoverflow.com/questions/900646/removing-brackets-and-text-in-crystal/913463#913463 0 Answer by SqlACID for Removing Brackets and Text in Crystal SqlACID 2009-05-27T00:44:33Z 2009-05-27T01:47:54Z <p>This tested well with Crystal2008, not sure what version you are using, it also would need some error checking to handle mismatched bracket pairs, but it may offer some food for thought:</p> <pre> Dim workString as String Dim bracketedText as string if (InStr({table.col},"[") > 0) then workString = {table.col} while(InStr(workString,"[") > 0 ) bracketedText = "[" + ExtractString(workString,"[","]") + "]" workString = replace(workString,bracketedText,"") Wend Formula = workString else Formula = {table.col} End If </pre> http://stackoverflow.com/questions/903538/how-can-show-amount-in-words-in-crystal-report/913520#913520 1 Answer by SqlACID for How can show amount in words in crystal report ! SqlACID 2009-05-27T01:04:33Z 2009-05-27T01:04:33Z <p>Make a formula field in the report and use the ToWords built in function</p> http://stackoverflow.com/questions/906658/how-to-find-the-version-of-a-crystal-report-rpt-file/913476#913476 1 Answer by SqlACID for How to find the version of a Crystal Report rpt file? SqlACID 2009-05-27T00:47:34Z 2009-05-27T00:47:34Z <p>Report / Performance Information / Report Definition should show File Format Schema</p> http://stackoverflow.com/questions/903814/icon-resources/903839#903839 0 Answer by SqlACID for Icon resources? SqlACID 2009-05-24T14:13:01Z 2009-05-24T14:13:01Z <p>Do a search for Creative Commons Icon Sets, these are free to use with attribution.</p> http://stackoverflow.com/questions/903491/display-text-from-txt-file-in-batch-file/903505#903505 3 Answer by SqlACID for Display text from .txt file in batch file SqlACID 2009-05-24T10:41:35Z 2009-05-24T10:41:35Z <p>Use the tail.exe from the <a href="http://commandwindows.com/server2003tools.htm" rel="nofollow" title="Windows 2003 Resource Kit">Windows 2003 Resource Kit</a></p> http://stackoverflow.com/questions/834001/restrictions-on-a-log-shipped-database/884210#884210 1 Answer by SqlACID for Restrictions on a Log Shipped database SqlACID 2009-05-19T17:58:53Z 2009-05-19T17:58:53Z <p>Database/logs growths/shrinks are fine, they will get shipped over and the standby will grow/shink as well. The only thing I'm aware of that will break things are:</p> <p>BACKUP LOG WITH TRUNCATE_ONLY </p> <p>Changing the recovery mode</p> <p>Taking the primary database offline (not sure about this one, never tried it)</p> <p>Everything else is fine, but doing mass REINDEXES can make for some very large logs that are difficult to deal with on a large database.</p> http://stackoverflow.com/questions/1813352/sql-symmetric-key-and-opening-it-from-c Comment by SqlACID on SQL Symmetric Key and opening it from C# SqlACID 2009-11-29T00:06:58Z 2009-11-29T00:06:58Z Are you sure the error is on the open of the key and not the call to submitDataToDb? http://stackoverflow.com/questions/1732515/msmq-what-can-cause-a-insufficient-resources-to-perform-operation-error-when-r Comment by SqlACID on MSMQ: What can cause a "Insufficient resources to perform operation" error when receiving from a queue? SqlACID 2009-11-13T23:24:08Z 2009-11-13T23:24:08Z I agree, handles is my bet. What OS? http://stackoverflow.com/questions/1266556/parse-strange-field-in-crystal-reports Comment by SqlACID on Parse strange field in Crystal Reports SqlACID 2009-08-12T14:40:04Z 2009-08-12T14:40:04Z What database platform? I think it would be easier and better to write a stored procedure that does the parsing and use that for the datasource in crystal. I wouldn't expect blazing performance on big tables no matter where you parse though. http://stackoverflow.com/questions/1235937/reporting-tool-or-software-for-printed-forms/1236547#1236547 Comment by SqlACID on Reporting Tool or Software for Printed Forms? SqlACID 2009-08-06T01:36:10Z 2009-08-06T01:36:10Z i feel your pain on the HCFA's; besides printer variances, humidity can cause preprinted forms to grow and shrink in width. Never heard of the Crystal guidelines issue, must keep an eye out for that! http://stackoverflow.com/questions/1167242/recommendations-for-single-user-access-database/1167257#1167257 Comment by SqlACID on Recommendations for single user access Database SqlACID 2009-07-22T18:44:36Z 2009-07-22T18:44:36Z Stored procedure, triggers, remote management via SSMS. http://stackoverflow.com/questions/1024917/sql-server-2000-my-query-is-running-slowly-all-of-sudden/1024966#1024966 Comment by SqlACID on SQL Server 2000 - My query is running slowly, all of sudden SqlACID 2009-06-22T13:33:33Z 2009-06-22T13:33:33Z -1 ; seems like it would be better to find the cause of the problem and/or do some redesign if necessary. Tables with proper indexes and maintained statistics should scale and perform predictably. http://stackoverflow.com/questions/1004437/unable-to-connect-to-sql2005-using-vbscript Comment by SqlACID on Unable to connect to SQL2005 using VBScript SqlACID 2009-06-17T00:14:43Z 2009-06-17T00:14:43Z Double check your permissions and tables on the sql2005 server; your connection code works fine for me with sql 2000, 2005 and 2008. http://stackoverflow.com/questions/981232/what-are-crystal-reports-for-net/981285#981285 Comment by SqlACID on What are Crystal Reports for .NET? SqlACID 2009-06-12T12:41:51Z 2009-06-12T12:41:51Z @geocoin don't worry the pain just increases in proportion to the version number http://stackoverflow.com/questions/492267/convert-pcl-to-image/508008#508008 Comment by SqlACID on Convert pcl to image SqlACID 2009-06-12T12:33:19Z 2009-06-12T12:33:19Z +1 for PCLWorks http://stackoverflow.com/questions/929156/rave-report-that-comes-with-delphi-2006 Comment by SqlACID on Rave Report that comes with Delphi 2006 SqlACID 2009-06-11T23:47:43Z 2009-06-11T23:47:43Z What version of Delphi/Rave? Are you using the visual designer or are the reports in code? http://stackoverflow.com/questions/976968/why-does-my-perl-script-fail-on-but-works-with-envhome/977619#977619 Comment by SqlACID on Why does my Perl script fail on "~/" but works with "$ENV{HOME}"? SqlACID 2009-06-10T19:24:27Z 2009-06-10T19:24:27Z +1 except it's &quot;tilde&quot; http://stackoverflow.com/questions/976185/what-are-some-of-your-most-useful-database-standards/976342#976342 Comment by SqlACID on What are some of your most useful database standards? SqlACID 2009-06-10T15:55:29Z 2009-06-10T15:55:29Z +1 for the implied joins, I'm tired of fixing queries like that. http://stackoverflow.com/questions/974778/crystal-report-dynamic-parameter-problem Comment by SqlACID on Crystal report Dynamic parameter problem. SqlACID 2009-06-10T15:39:29Z 2009-06-10T15:39:29Z Any subreports? Any data coming from stored procedures without default parameters? http://stackoverflow.com/questions/888224/what-is-your-longest-held-programming-assumption-that-turned-out-to-be-incorrect/888953#888953 Comment by SqlACID on What is your longest-held programming assumption that turned out to be incorrect? SqlACID 2009-06-10T15:03:02Z 2009-06-10T15:03:02Z +1! I thought duck typing involved typing too. Or ducks. Or both. http://stackoverflow.com/questions/957281/sql-server-performance-problem Comment by SqlACID on SQL Server Performance Problem SqlACID 2009-06-05T18:20:04Z 2009-06-05T18:20:04Z How do the disk systems compare? RAID-?? Number of spindles? How about how where the data files are vs logs? Is the new box set to use all procs? (maxes at 4 for std ed I think) Also check the execution plans on both servers, make sure they are the same.