User Margaret - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T18:53:08Z http://stackoverflow.com/feeds/user/27290 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1871781/not-include-the-database-name-in-the-execution-string-when-using-the-import-expor 0 Not include the database name in the execution string when using the Import Export Wizard? Margaret 2009-12-09T05:31:00Z 2009-12-09T15:13:45Z <p>I have a process where data is transferred from an Excel spreadsheet into SQL Server. To do this, I've created a dtsx using the SQL Server Import / Export Data wizard.</p> <p>The trouble is, the script could be run against any database. But the wizard seems to default to using the format <code>CREATE TABLE [Database].[dbo].[table]</code> when creating the script. This means that the dtsx's "<code>DestinationConnectionOLEDB</code>" Connection Manager is worse than useless - you change it, thinking you've changed the end location that the script will run, only to find that the tasks still point to the original database.</p> <p>What I've been doing up till now is manually going in and find-replacing <code>[Database]</code> for the new name. Sadly, it took me till <em>today</em> to realise that I probably could just find-replace "<code>[Database].[dbo].</code>" with an empty string (largely because I've had the dtsx's break a few of the times I've meddled with them).</p> <p>So, is it possible to skip over the necessity of the final step (and reduce the possibility I'll break something along the way) by not including the <code>[Database].[dbo].</code> in the file in the first place?</p> http://stackoverflow.com/questions/1794499/fast-way-to-eyeball-possible-duplicate-rows-in-a-table 0 Fast way to eyeball possible duplicate rows in a table? Margaret 2009-11-25T03:52:50Z 2009-12-05T19:35:04Z <p>Similar: <a href="http://stackoverflow.com/questions/91784">http://stackoverflow.com/questions/91784</a></p> <p>I have a feeling this is impossible and I'm going to have to do it the tedious way, but I'll see what you guys have to say.</p> <p>I have a pretty big table, about 4 million rows, and 50-odd columns. It has a column that is supposed to be unique, Episode. Unfortunately, Episode is <em>not</em> unique - the logic behind this was that occasionally other fields in the row change, despite Episode being repeated. However, there is an <em>actually</em> unique column, Sequence. </p> <p>I want to try and identify rows that have the same episode number, but something different between them (aside from sequence), so I can pick out how often this occurs, and whether it's worth allowing for or I should just nuke the rows and ignore possible mild discrepancies.</p> <p>My hope is to create a table that shows the Episode number, and a column for each table column, identifying the value on both sides, where they are different:</p> <pre><code>SELECT Episode, CASE WHEN a.Value1&lt;&gt;b.Value1 THEN a.Value1 + ',' + b.Value1 ELSE '' END AS Value1, CASE WHEN a.Value2&lt;&gt;b.Value2 THEN a.Value2 + ',' + b.Value2 ELSE '' END AS Value2 FROM Table1 a INNER JOIN Table1 b ON a.Episode = b.Episode WHERE a.Value1&lt;&gt;b.Value1 OR a.Value2&lt;&gt;b.Value2 </code></pre> <p>(That is probably full of holes, but the idea of highlighting changed values comes through, I hope.)</p> <p>Unfortunately, making a query like that for fifty columns is pretty painful. Obviously, it doesn't exactly have to be rock-solid if it will only be used the once, but at the same time, the more copy-pasta the code, the more likely something will be missed. As far as I know, I can't just do a search for DISTINCT, since Sequence is distinct and the same row will pop up as different.</p> <p>Does anyone have a query or function that might help? Either something that will output a query result similar to the above, or a different solution? As I said, right now I'm not really looking to <em>remove</em> the duplicates, just identify them.</p> http://stackoverflow.com/questions/1794499/fast-way-to-eyeball-possible-duplicate-rows-in-a-table/1794671#1794671 0 Answer by Margaret for Fast way to eyeball possible duplicate rows in a table? Margaret 2009-11-25T04:39:44Z 2009-11-25T04:39:44Z <p>A relatively simple solution that Ponies sparked:</p> <pre><code>SELECT t.* FROM Table t INNER JOIN ( SELECT episode FROM Table GROUP BY Episode HAVING COUNT(*) &gt; 1 ) AS x ON t.episode = x.episode </code></pre> <p>And then, copy-paste into Excel, and use this as conditional highlighting for the entire result set:</p> <pre><code>=AND($C2=$C1,A2&lt;&gt;A1) </code></pre> <p>Column C is Episode. This way, you get a visual highlight when the data's different from the row above (as long as both rows have the same value for episode).</p> http://stackoverflow.com/questions/1463236/loop-through-each-row-of-a-range-in-excel 1 Loop through each row of a range in Excel Margaret 2009-09-22T23:53:35Z 2009-09-23T00:53:20Z <p>This is one of those things that I'm sure there's a built-in function for (and I may well have been told it in the past), but I'm scratching my head to remember it.</p> <p>How do I loop through each row of a multi-column range using Excel VBA? All the tutorials I've been searching up seem only to mention working through a one-dimensional range...</p> http://stackoverflow.com/questions/1397232/convert-a-string-to-a-date-in-access 0 Convert a string to a date in Access Margaret 2009-09-09T02:05:41Z 2009-09-09T02:11:21Z <p>I'm migrating data between tables in Access 2003. In the old table, the date was stored as a text field in the format YYYYMMDD.</p> <p>I want to store the field as a datetime in the new table. I've tried using <code>CDate()</code> in my SQL statement, but it just displays as <code>#Error</code> in the results.</p> <p>What am I doing wrong?</p> http://stackoverflow.com/questions/1331776/programmatically-update-a-folder-full-of-access97-files-to-access2003 2 Programmatically update a folder full of Access97 files to Access2003 Margaret 2009-08-26T00:39:19Z 2009-08-26T04:30:00Z <p>I have a folder full of 100-odd Access97 files. I need to update them all to Access2003. </p> <p>I could do it manually, but using VBA would probably be a lot faster.</p> <p>Does anyone that would have a snippet that would do this? Or an alternative suggestion?</p> http://stackoverflow.com/questions/1303367/speed-up-a-update-with-select-query 0 Speed up a UPDATE with SELECT query Margaret 2009-08-20T00:33:20Z 2009-08-21T08:12:53Z <p>I have two tables:</p> <p>Table 1 has Episode and Code, with Episode as distinct. Table 2 has Episode and Code, but Episode is not distinct (other fields in the table, not relevant to the task, make each row unique).</p> <p>I want to copy Table 1's Code across to Table 2 for each episode. The current code to do this is as follows:</p> <pre><code>UPDATE Table2 SET Table2.Code = (SELECT TOP 1 Code FROM Table1 WHERE Episode = Table2.Episode) </code></pre> <p>This takes hours and hours. (I don't know precisely how many hours, because I cancelled it at about the 20 hour mark.) They <em>are</em> big tables, but surely there's a faster way?</p> http://stackoverflow.com/questions/1157393/copy-excel-worksheets-macros-and-graphs-from-one-workbook-to-another-moving-li 0 Copy Excel worksheets, macros, and graphs from one workbook to another, moving links to the new workbook Margaret 2009-07-21T05:04:14Z 2009-07-21T14:41:10Z <p>I have an Excel workbook with a number of features:</p> <ul> <li>One main user-facing sheet</li> <li>One summary sheet based on the user-facing sheet's data</li> <li>A number of graphs based on the user-facing sheet's data (as in, the type of graphs with a separate tab for them, rather than objects within a worksheet - I'm not sure if they have a special name or special properties)</li> <li>A series of 'background' worksheets that calculate the values for the user-facing sheet</li> <li>A macro to allow the user to sort the user-sheet by any column they wish, which is referenced in the user-facing sheet's Worksheet_SelectionChange event</li> </ul> <p>However, for distribution I'd like to cull the sheets for simplicity (and file size - the entire data query is included on one of the sheets). I still need to calculate the values for the user-facing sheet, but it's only done once per dataset, so that can quite happily be copied as formatting then values.</p> <p>The trouble, however, is transferring the dependent sheet, graphs and macros across to a new workbook so that instead of referencing the old workbook, they reference the new versions of the sheet. Ideally I'd like to do this with VBA or something, but my Google searches thus far don't seem to have turned up much of relevance.</p> <p>Does anyone know how to do this?</p> http://stackoverflow.com/questions/1107261/extract-an-sql-server-2005-databases-structure-to-xml 3 Extract an SQL Server 2005 database's structure to XML Margaret 2009-07-10T01:18:57Z 2009-07-10T05:20:18Z <p>This is something I know can be done <em>somehow</em>, because I've done it before, but I can't for the life of me remember how.</p> <p>I want to export the <em>structure</em> of an SQL Server database to an XML file. The one that I have from last time we did this has this kind of structure:</p> <pre><code>&lt;Data&gt; &lt;Details&gt; &lt;Server&gt;Server Name&lt;/Server&gt; &lt;Database&gt;Database Name&lt;/Database&gt; &lt;/Details&gt; &lt;Tables&gt; &lt;Table&gt; &lt;Name&gt;Table Name&lt;/Name&gt; &lt;Columns&gt; &lt;Column&gt; &lt;Colname&gt;Column Name&lt;/Colname&gt; &lt;/Column&gt; &lt;/Columns&gt; &lt;/Table&gt; &lt;/Tables&gt; &lt;Procedures&gt; &lt;Procedure&gt; &lt;Name&gt;Procedure Name&lt;/name&gt; &lt;Definition&gt;Full text of script&lt;/Definition&gt; &lt;/Procedure&gt; &lt;/Procedures&gt; &lt;/Data&gt; </code></pre> <p>...And so on. Does anyone know where to find this option?</p> http://stackoverflow.com/questions/1107261/extract-an-sql-server-2005-databases-structure-to-xml/1107831#1107831 2 Answer by Margaret for Extract an SQL Server 2005 database's structure to XML Margaret 2009-07-10T05:19:37Z 2009-07-10T05:19:37Z <p>Aha. It wasn't a built in feature after all - we use SQL Delta (<a href="http://www.sqldelta.com/" rel="nofollow">http://www.sqldelta.com/</a>), and its "Snapshot" feature was what was used.</p> http://stackoverflow.com/questions/924490/how-do-i-execute-private-procedures-in-an-oracle-package 0 How do I execute private procedures in an Oracle package? Margaret 2009-05-29T05:20:09Z 2009-07-08T10:51:19Z <p>This is my first attempt at creating a package, so I must be missing something really really obvious (nothing that I've Googled for seems to even consider it worth mentioning).</p> <p>Obviously, if you have procedures in your package body that are not included in the specification section, then those procedures are private. The problem I've got is that I can't seem to figure out how to <strong>reference</strong> those private packages once I've made them. And SQL Developer refuses to give me any message more useful than 'execution completed with warning', which doesn't help...</p> <p>As an example, this is what I've been trying that doesn't work (just throws the aforementioned compiler error):</p> <pre><code>CREATE OR REPLACE PACKAGE BODY testPackage AS PROCEDURE privateProc; --Forward declaration PROCEDURE publicProc IS BEGIN EXECUTE privateProc(); END; PROCEDURE privateProc IS BEGIN DBMS_OUTPUT.PUT_LINE('test'); END; END testPackage; </code></pre> <p>I've also tried referring to it as <code>testPackage.privateProc</code>, which hasn't worked either.</p> <p>What am I doing wrong?</p> http://stackoverflow.com/questions/1077407/edit-synonyms-in-ms-sql-server-2005 3 Edit synonyms in MS SQL Server 2005 Margaret 2009-07-03T01:03:46Z 2009-07-03T02:31:17Z <p>Out of curiousity, is there any way to <em>edit</em> an existing synonym? That is, change which table the synonym is pointing to... </p> <p>Thus far I seem to have had to delete and re-create them, because they're locked from being edited. It's not a big deal, but at the same time it's a little irritating.</p> <p>GUI or scripting, but preferably GUI.</p> http://stackoverflow.com/questions/348268/what-is-a-good-way-to-create-a-variably-sized-group-to-be-looped-over-in-excel-20/1077311#1077311 0 Answer by Margaret for What is a good way to create a variably sized group to be looped over in Excel 2003? Margaret 2009-07-03T00:08:12Z 2009-07-03T00:08:12Z <p>My eventual solution was to import the list as an external data query that I then named nicely and referenced as a range. So:</p> <pre><code>For each item in Sheets("Sheet1").Range("Range1") Do stuff Next item </code></pre> http://stackoverflow.com/questions/348268/what-is-a-good-way-to-create-a-variably-sized-group-to-be-looped-over-in-excel-20 0 What is a good way to create a variably sized group to be looped over in Excel 2003? Margaret 2008-12-07T22:58:31Z 2009-07-03T00:08:12Z <p>I have a procedure that is run for a lot of items, skipping over certain items who don't meet a criterion. However, I then go back and run it for some of the individuals who were missed in the first pass. I currently do this by manually re-running the procedure for each individual person, but would ideally like a solution a little more hands off.</p> <p>Something my boss suggested might be effective would be creating a List (as in Data -> Lists) that contains the names of the items in question, and then iterating over the list. Sadly, my help-file fu seems to be failing me - I don't know whether I just don't know what to look for, or what.</p> <p>Running the "Generate Macro" command shows that the VBA to create a list in the first place is along the lines of ActiveSheet.ListObjects.Add(xlSrcRange, Range("$A$1"), , xlYes).Name = "List1"</p> <p>Unfortunately, I can't seem to figure out how to then do stuff with the resulting list. I'm looking to making a loop along the lines of</p> <pre><code>For Each ListItem in List Run the procedure on the text in ListItem.Value Next ListItem </code></pre> <p>Any suggestions?</p> http://stackoverflow.com/questions/1025022/find-an-object-in-mssql-cross-database 0 Find an object in MSSQL (cross-database) Margaret 2009-06-21T23:33:42Z 2009-06-22T01:54:19Z <p>If I've been told a table (or proc) name, but not which connected database the object is located in, is there any simple script to search for it? Maybe search somewhere in the System Databases? (I'm using SQL Server 2005)</p> http://stackoverflow.com/questions/896319/oracle-cursor-running-through-the-last-item-twice 0 Oracle cursor running through the last item twice Margaret 2009-05-22T04:14:16Z 2009-05-22T06:59:18Z <p>I have a a cursor loop that's building a string by concatenating the contents of a table together, using code along these lines:</p> <pre><code>OPEN cur_t; LOOP FETCH cur_t INTO v_texttoadd; v_string := v_string || v_texttoadd; EXIT WHEN cur_t%notfound; END LOOP; </code></pre> <p>The problem is, of course, that the last item gets added twice because the system runs through it once more before realising that there's nothing more to find.</p> <p>I tried playing around with something like </p> <pre><code>OPEN cur_t; WHILE cur_t%found; LOOP FETCH cur_t INTO v_texttoadd; v_string := v_string || v_texttoadd; END LOOP; </code></pre> <p>But that didn't seem to return anything at all.</p> <p>What kind of syntax should I be using so that each row only appears in the resulting string once?</p> http://stackoverflow.com/questions/896319/oracle-cursor-running-through-the-last-item-twice/896343#896343 0 Answer by Margaret for Oracle cursor running through the last item twice Margaret 2009-05-22T04:27:21Z 2009-05-22T04:27:21Z <p>Simple answer, though possibly not the best:</p> <pre><code>OPEN cur_t; LOOP FETCH cur_t INTO v_texttoadd; IF cur_t%found THEN v_string := v_string || v_texttoadd; END IF; EXIT WHEN cur_t%notfound; END LOOP; </code></pre> http://stackoverflow.com/questions/891458/abort-a-pl-sql-program 0 Abort a PL/SQL program Margaret 2009-05-21T05:06:54Z 2009-05-21T05:56:44Z <p>How do I get a PL/SQL program to end halfway through? I haven't been able to find any way to gracefully end the program if an exception occurs - if I handle it, it loops back into the code.</p> <p>Basically what I want to do is force the app not to run in certain conditions. So, I want to add something like this to the top of the program:</p> <pre><code>BEGIN IF [condition] EXIT END IF [the rest of the program] END </code></pre> <p>The suggested way is to throw an exception, but the block may well be an inner block - so the program outside of the block just keeps going.</p> http://stackoverflow.com/questions/823717/copy-worksheet-macro-stops-doing-anything-when-the-workbook-hits-50-worksheets/851052#851052 0 Answer by Margaret for Copy worksheet macro stops doing anything when the workbook hits 50 worksheets Margaret 2009-05-12T03:45:58Z 2009-05-12T03:45:58Z <p>Based on Lunatik's answer, I changed <code>oBook.Sheets("MasterFormat").Copy After:=Sheets(j)</code> to <code>oBook.Sheets("MasterFormat").Copy After:=oBook.Sheets(j)</code>, which seemed to fix the problem.</p> http://stackoverflow.com/questions/823717/copy-worksheet-macro-stops-doing-anything-when-the-workbook-hits-50-worksheets 0 Copy worksheet macro stops doing anything when the workbook hits 50 worksheets Margaret 2009-05-05T07:15:48Z 2009-05-12T03:45:58Z <p>Hey all</p> <p>I have a workbook that has a number of cover sheets and then a bunch of sheets at the back that are contain a few graphs. The graph pages are created by copy-pasting one sheet ("MasterFormat") over and over again, changing a few key values each time.</p> <p>The macro originally used to conk out fairly rapidly with a <code>Copy Method of Worksheet Class failed</code> error. I eventually found how to fix it, from <a href="http://support.microsoft.com/kb/210684" rel="nofollow">http://support.microsoft.com/kb/210684</a> .</p> <p>The problem is, I've had endless issues with my updated version; mostly that it continues running happily, but doesn't actually copy anything after a while. Part of why it's happy is that the updated logic includes a few <code>Set x = y, if x is nothing then</code>s, which (as far as I know) will only work with errors suppressed, so that's what I've done. But on the other hand, it stops copying sheets after there are 50 sheets, and gives no explanation (though this may be the mislocation of the <code>on error goto 0</code>).</p> <p>Does anyone know what I should be fixing to make it actually copy all the sheets, not just get bored and stop?</p> <p>The code is as follows:</p> <pre><code>Sub GenerateSheets() Application.ScreenUpdating = False Dim oBook As Workbook On Error Resume Next Set oBook = Workbooks("SSReport.xls") If oBook Is Nothing Then Set oBook = Application.Workbooks.Open("SSReport.xls") End If On Error GoTo 0 Dim i, j As Integer Dim SheetName As String Dim ws As Worksheet Const PairingCount = 63 Dim Pairings(1 To PairingCount, 1 To 2) As String For i = 1 To PairingCount Pairings(i, 1) = oBook.Sheets("SSPairings").Rows(i + 1).Cells(1) Pairings(i, 2) = oBook.Sheets("SSPairings").Rows(i + 1).Cells(2) Next i For i = 1 To PairingCount If i Mod 5 = 0 Then oBook.Close SaveChanges:=True Set oBook = Nothing Set oBook = Application.Workbooks.Open("SSReport.xls") End If Application.ScreenUpdating = False j = oBook.Worksheets.Count SheetName = "P" &amp; Pairings(i, 1) &amp; Pairings(i, 2) On Error Resume Next Set ws = oBook.Sheets(SheetName) If ws Is Nothing Then On Error GoTo 0 oBook.Sheets("MasterFormat").Copy After:=Sheets(j) oBook.Sheets("MasterFormat (2)").Name = SheetName End If oBook.Sheets(SheetName).Cells(1, 2) = Pairings(i, 1) oBook.Sheets(SheetName).Cells(1, 5) = Pairings(i, 2) oBook.Sheets(SheetName).Cells(1, 8) = "P" Next i Application.ScreenUpdating = True End Sub </code></pre> <p>It's run from a meta workbook, which was the suggestion of the KB article I linked to above. Interestingly, despite the <code>Open workbook</code>, it doesn't seem to actually work if the main workbook is not open.</p> http://stackoverflow.com/questions/703449/oracle-program-not-forking-correctly-in-select-case-statement-on-a-date 0 Oracle: Program not forking correctly in SELECT CASE statement on a date Margaret 2009-03-31T23:12:35Z 2009-04-01T05:11:02Z <p>I'm currently working on a project that behaves differently depending on whether it is a public holiday or not (amongst other constraints, obviously). To this end, I'm trying to create a table that contains the date and what day of the week it is (considering 'holiday' to be an eighth 'day of the week').</p> <p>I have a table I'm sourcing the list of holidays from, named <code>holiday</code>, which has only one field, <code>holidaydate</code> (<code>DATE</code> datatype). The table I'm trying to put the values into is named <code>daydates</code>, with two fields, <code>day</code> (<code>DATE</code> datatype) and <code>dayofweek</code> (<code>CHAR(10)</code> datatype).</p> <p>This is the logic as I have it at the moment, while I'm testing.</p> <pre><code> INSERT INTO holiday (holidaydate) SELECT sysdate FROM dual; SELECT sysdate, ( CASE WHEN sysdate IN (SELECT h.holidaydate FROM holiday h) THEN 'holiday' ELSE TO_CHAR(sysdate , 'day') END) FROM dual; </code></pre> <p>Unfortunately, it currently returns, say, 'Wednesday', rather than 'holiday'. I have a feeling I need to change the <code>WHEN sysdate IN</code> to a <code>WHEN to_char (sysdate, 'dd-mon-yyyy') IN</code> or something along those lines, but I've tried a few variations and they don't seem to have worked thus far.</p> <p>Any suggestions?</p> http://stackoverflow.com/questions/688170/changing-a-querytable-source-twice-in-the-same-macro-fails 0 Changing a querytable source twice in the same macro fails Margaret 2009-03-27T01:19:19Z 2009-03-27T01:19:19Z <p>I have an Excel spreadsheet featuring a macro that updates the connection string for a couple of query tables, refreshes them, and then saves a copy of the file. (i.e., "Extract the data for x client into this table, and this one, then save the file so I can send it.")</p> <p>I'd like to expand its capabilities so that it can do this a series of times in one hit - produce all the clients at once.</p> <p>However, my looped version runs through the first time, and then crashes out on second run as soon as it hits the first 'update connection string' statement for the second time, with an error message "This operation cannot be done because the data is refreshing in the background."</p> <p>It doesn't <em>seem</em> to be doing so - I've looked at the copied spreadsheet, and it appears to have different values than the page started with. I've also tried to include 'sleep' statements to give it a chance to catch up with the universe - which didn't seem to help.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/670461/does-oracle-have-an-equivalent-of-mssqls-table-variables 2 Does Oracle have an equivalent of MSSQL's table variables? Margaret 2009-03-22T02:44:50Z 2009-03-22T03:00:24Z <p>In MSSQL, you can declare a table variable (DECLARE @table TABLE), which is produced while the script is run and then removed from memory.</p> <p>Does Oracle have a similar function? Or am I stuck with CREATE/DROPs that segment my hard drive?</p> http://stackoverflow.com/questions/196480/identify-full-vs-half-yearly-datasets-in-sql 1 Identify full vs half yearly datasets in SQL Margaret 2008-10-13T01:39:44Z 2009-02-17T04:36:27Z <p>I have a table with two fields of interest for this particular exercise: a CHAR(3) ID and a DATETIME. The ID identifies the submitter of the data - several thousand rows. The DATETIME is not necessarily unique, either. (The primary keys are other fields of the table.)</p> <p>Data for this table is submitted every six months. In December, we receive July-December data from each submitter, and in June we receive July-June data. My task is to write a script that identifies people who have only submitted half their data, or only submitted January-June data in June.</p> <p>...Does anyone have a solution?</p> http://stackoverflow.com/questions/196480/identify-full-vs-half-yearly-datasets-in-sql/555538#555538 0 Answer by Margaret for Identify full vs half yearly datasets in SQL Margaret 2009-02-17T04:36:27Z 2009-02-17T04:36:27Z <p>I later realised that I was supposed to check to make sure that there was data for <em>both</em> July to December and January to June. So this is what I wound up in v2:</p> <pre><code>SELECT @avgmonths = AVG(x.[count]) FROM ( SELECT CAST(COUNT(DISTINCT DATEPART(month, DATEADD(month, DATEDIFF(month, 0, dscdate), 0))) AS FLOAT) AS [count] FROM HospDscDate GROUP BY hosp ) x IF @avgmonths &gt; 7 SET @months = 12 ELSE SET @months = 6 SELECT 'Submitter missing data for some months' AS [WarningType], t.id FROM TheTable t WHERE EXISTS ( SELECT 1 FROM TheTable t1 WHERE t.id = t1.id HAVING COUNT(DISTINCT DATEPART(month, DATEADD(month, DATEDIFF(month, 0, t1.Date), 0))) &lt; @months ) GROUP BY t.id </code></pre> http://stackoverflow.com/questions/249253/select-from-different-tables-via-sql-depending-on-flag/555527#555527 0 Answer by Margaret for Select from different tables via SQL depending on flag Margaret 2009-02-17T04:25:54Z 2009-02-17T04:25:54Z <p>A simpler solution, and one suggested by a workmate:</p> <pre><code>SELECT CASE @Flag WHEN 1 THEN t.field1 WHEN 2 THEN t.field2 WHEN 3 THEN t.field3 END as field, [A bunch of other fields], @Flag as flag FROM table t </code></pre> <p>Then base the decision making on the last field. A lot simpler, and probably should have occurred to me in the first place.</p> http://stackoverflow.com/questions/249253/select-from-different-tables-via-sql-depending-on-flag 0 Select from different tables via SQL depending on flag Margaret 2008-10-30T04:12:54Z 2009-02-17T04:25:54Z <p>I have a script to extract certain data from a much bigger table, with one field in particular changing regularly, e.g.</p> <pre><code>SELECT CASE @Flag WHEN 1 THEN t.field1 WHEN 2 THEN t.field2 WHEN 3 THEN t.field3 END as field, ...[A bunch of other fields] FROM table t </code></pre> <p>However, the issue is now I want to do other processing on the data. I'm trying to figure out the most effective method. I need to have some way of getting the flag through, so I know I'm talking about data sliced by the right field.</p> <p>One possible solution I was playing around with a bit (mostly to see what would happen) is to dump the contents of the script into a table function which has the flag passed to it, and then use a SELECT query on the results of the function. I've managed to get it to work, but it's significantly slower than...</p> <p>The obvious solution, and probably the most efficient use of processor cycles: to create a series of cache tables, one for each of the three flag values. However, the problem then is to find some way of extracting the data from the right cache table to perform the calculation. The obvious, though incorrect, response would be something like</p> <pre><code>SELECT CASE @Flag WHEN 1 THEN table1.field WHEN 2 THEN table2.field WHEN 3 THEN table3.field END as field, ...[The various calculated fields] FROM table1, table2, table3 </code></pre> <p>Unfortunately, as is obvious, this creates a massive cross join - which is not my intended result at all.</p> <p>Does anyone know how to turn that cross join into an "Only look at x table"? (Without use of Dynamic SQL, which makes things hard to deal with?) Or an alternative solution, that's still reasonably speedy?</p> <p>EDIT: Whether it's a good reason or not, the idea I was trying to implement was to not have three largely identical queries, that differ only by table - which would then have to be edited identically whenever a change is made to the logic. Which is why I've avoided the "Have the flag entirely separate" thing thus far...</p> http://stackoverflow.com/questions/220151/what-is-the-comparative-speed-of-temporary-tables-to-physical-tables-in-sql 2 What is the comparative speed of temporary tables to physical tables in SQL? Margaret 2008-10-20T22:22:53Z 2008-11-17T13:52:04Z <p>I have a script that needs to extract data temporarily to do extra operations on it, but then doesn't need to store it any further after the script has run. I currently have the data in question in a series of temporary local tables (CREATE TABLE #table), which are then dropped as their use is completed. I was considering switching to physical tables, treated in the same way (CREATE TABLE table), if there would be an improvement in the speed of the script for it (or other advantages, maybe?).</p> <p>...So, is there a difference in performance, between temporary tables and physical tables? From what I'm reading, temporary tables are just physical tables that only the session running the script can look at (cutting down on locking issues).</p> <p>EDIT: I should point out that I'm talking about physical tables vs. temporary tables. There is a lot of info available about temporary tables vs. table variables, e.g. <a href="http://sqlnerd.blogspot.com/2005/09/temp-tables-vs-table-variables.html" rel="nofollow">http://sqlnerd.blogspot.com/2005/09/temp-tables-vs-table-variables.html</a>.</p> http://stackoverflow.com/questions/224301/exporting-an-ms-excel-2003-workbook-to-pdf-via-vba 1 Exporting an MS Excel 2003 workbook to PDF via VBA Margaret 2008-10-22T02:40:05Z 2008-10-22T09:05:47Z <p>I have an Excel 2003 workbook that contains a macro to copy certain of its sheets across to a new workbook, then save and close the new workbook. It does this several dozen times, with slightly different sheet selections each time.</p> <p>I would like to add an extra step to the macro to export the secondary workbooks' spreadsheets to PDF. The obvious way to do this would be to use a PDF printer and Excel's built in Print function, but most PDF printers give you a "Save As..." dialogue box before they finish. Obviously, typing this in individually for seventy-odd occasions lacks appeal - so I'd like something that allows me to set it ahead of time (probably "Use the filename of the file I'm printing minus its extension") then just select the default options.</p> <p>Any ideas for a free PDF printer that does this? Or a suitable alternative?</p> http://stackoverflow.com/questions/196480/identify-full-vs-half-yearly-datasets-in-sql/203555#203555 1 Answer by Margaret for Identify full vs half yearly datasets in SQL Margaret 2008-10-15T02:41:34Z 2008-10-15T02:49:20Z <p>For interest, this is what I wound up using. It was based off Stephen's answer, but with a few adaptations. I don't yet have the reputation to upvote him. :).</p> <p>It's part of a larger script that's run every six months, but we're only checking this every twelve months - hence the "If FullYear = 1". I'm sure there's a more stylish way to identify the boundary dates, but this seems to work.</p> <pre><code>IF @FullYear = 1 BEGIN DECLARE @FirstDate AS DATETIME DECLARE @LastDayFirstYear AS DATETIME DECLARE @SecondYear AS INT DECLARE @NewYearsDay AS DATETIME DECLARE @LastDate AS DATETIME SELECT @FirstDate = MIN(dscdate), @LastDate = MAX(dscdate) FROM TheTable SELECT @SecondYear = DATEPART(yyyy, @FirstDate) + 1 SELECT @NewYearsDay = CAST(CAST(@SecondYear AS VARCHAR) + '-01-01' AS DATETIME) INSERT INTO @AuditResults SELECT DISTINCT 'Submitter missing Jan-Jun data', t.id FROM TheTable t WHERE EXISTS ( SELECT 1 FROM TheTable t1 WHERE t.id = t1.id AND t1.date &gt;= @FirstDate AND t1.date &lt; @NewYearsDay ) AND NOT EXISTS ( SELECT 1 FROM TheTable t2 WHERE t2.date &gt;= @NewYearsDay AND t2.date &lt;= @LastDate AND t2.id = t.id GROUP BY t2.id ) GROUP BY t.id END </code></pre> http://stackoverflow.com/questions/1871781/not-include-the-database-name-in-the-execution-string-when-using-the-import-expor/1874531#1874531 Comment by Margaret on Not include the database name in the execution string when using the Import Export Wizard? Margaret 2009-12-09T22:15:53Z 2009-12-09T22:15:53Z I'm running Developer. I'm not sure whether I'm able to follow these instructions or not - I get to &quot;Enable configurations&quot; and then there are no configurations <i>to</i> enable. (<a href="http://img40.imageshack.us/img40/8291/packageconfigurationsor.png" rel="nofollow">img40.imageshack.us/img40/8291/&hellip;</a>) Are the configuration sets downloadable from somewhere, or something? http://stackoverflow.com/questions/1794499/fast-way-to-eyeball-possible-duplicate-rows-in-a-table/1794584#1794584 Comment by Margaret on Fast way to eyeball possible duplicate rows in a table? Margaret 2009-11-25T04:53:23Z 2009-11-25T04:53:23Z The point was that each row <i>is</i> distinct - the Sequence column I mentioned ensures that. This is, at least partially, the source of the issue - the row might be otherwise identical, but the SELECT DISTINCT won't detect that because the (unique) Sequence value is in there. http://stackoverflow.com/questions/1794499/fast-way-to-eyeball-possible-duplicate-rows-in-a-table/1794584#1794584 Comment by Margaret on Fast way to eyeball possible duplicate rows in a table? Margaret 2009-11-25T04:22:49Z 2009-11-25T04:22:49Z But won't SELECT DISTINCT get confused by the Sequence column, like I was saying? http://stackoverflow.com/questions/1794499/fast-way-to-eyeball-possible-duplicate-rows-in-a-table/1794543#1794543 Comment by Margaret on Fast way to eyeball possible duplicate rows in a table? Margaret 2009-11-25T04:17:33Z 2009-11-25T04:17:33Z I did try using count distinct earlier - what kind of black magic do I need to use to get it to work with multiple columns? When I try &quot;SELECT COUNT(DISTINCT Column1, Column2, ...) FROM Table&quot; I get &quot;Incorrect syntax near ','.&quot; http://stackoverflow.com/questions/1425458/does-web-2-0-actually-exist Comment by Margaret on Does web 2.0 actually exist ? Margaret 2009-09-15T06:57:28Z 2009-09-15T06:57:28Z I'd've said that this belongs on SuperUser, if anywhere on the trilogy. http://stackoverflow.com/questions/1303367/speed-up-a-update-with-select-query/1303385#1303385 Comment by Margaret on Speed up a UPDATE with SELECT query Margaret 2009-08-20T02:26:35Z 2009-08-20T02:26:35Z Wow. That turned it into a 6 minute query instead of a 20 hour one. :O. ...Now to verify the result sets are the same... http://stackoverflow.com/questions/1107261/extract-an-sql-server-2005-databases-structure-to-xml/1107310#1107310 Comment by Margaret on Extract an SQL Server 2005 database's structure to XML Margaret 2009-07-10T02:19:07Z 2009-07-10T02:19:07Z See, it's weird - because I'm pretty sure that we just used built in SQL Server tools, but I can't remember which ones. I've looked through the Import &amp; Export Wizard, which is where I'd think it would be, but I can't see it there. http://stackoverflow.com/questions/1102781/best-way-for-a-forgot-password-implementation/1102821#1102821 Comment by Margaret on Best way for a 'forgot password' implementation? Margaret 2009-07-09T13:24:29Z 2009-07-09T13:24:29Z @lemonad Often the solution to #2 is to send a link saying &quot;Click here to reset&quot;, instead of the email saying &quot;Here's your new password&quot;. That way, if they didn't hit the &quot;Send reset&quot; button, it doesn't happen. http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches Comment by Margaret on Practical non-image based CAPTCHA approaches? Margaret 2009-07-09T08:16:13Z 2009-07-09T08:16:13Z @Fraser I think they mean what I would call an iceblock: <a href="http://en.wikipedia.org/wiki/Popsicle" rel="nofollow">en.wikipedia.org/wiki/Popsicle</a> http://stackoverflow.com/questions/1083813/what-old-or-obsolete-software-do-you-miss-most/1083838#1083838 Comment by Margaret on What old or obsolete software do you miss most? Margaret 2009-07-05T20:59:57Z 2009-07-05T20:59:57Z I still have my original black and white Game Boy Tetris cartridge I got handed down from my brother... I was two years old in 1989. http://stackoverflow.com/questions/1077407/edit-synonyms-in-ms-sql-server-2005 Comment by Margaret on Edit synonyms in MS SQL Server 2005 Margaret 2009-07-03T02:35:32Z 2009-07-03T02:35:32Z As a point of interest, some Googling pulled up <a href="http://www.sqlmaestro.com/products/mssql/maestro/help/03_09_00_synonyms/" rel="nofollow">sqlmaestro.com/products/mssql/&hellip;</a> - it looks like there are third-party products that allow it. Whether they're worth the purchase price is a different issue... http://stackoverflow.com/questions/998998/how-do-you-remember-the-less-than-and-greater-than-operators/999116#999116 Comment by Margaret on How do you remember the LESS THAN and GREATER THAN operators? Margaret 2009-06-16T00:29:43Z 2009-06-16T00:29:43Z +1 for the HTML version, that's how I remember it... http://stackoverflow.com/questions/948941/is-there-a-defined-and-accepted-standard-sql-language/948956#948956 Comment by Margaret on Is there a defined and accepted standard SQL language? Margaret 2009-06-04T06:55:55Z 2009-06-04T06:55:55Z I know that my Basic Databases lecturer said that they were using PostgresSQL on grounds that it was &quot;most like&quot; the traditional SQL standard. I don't know whether that's true or not. http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/194393#194393 Comment by Margaret on What is the best comment in source code you have ever encountered? Margaret 2009-05-08T03:19:18Z 2009-05-08T03:19:18Z This is from How To Write Unmaintainable Code: <a href="http://mindprod.com/jgloss/unmain.html" rel="nofollow">mindprod.com/jgloss/unmain.html</a> http://stackoverflow.com/questions/17512/computer-language-puns-and-jokes/18015#18015 Comment by Margaret on Computer Language puns and jokes Margaret 2009-02-27T00:19:37Z 2009-02-27T00:19:37Z Source: <a href="http://www.people.cornell.edu/pages/elz1/clocktower/DrSeuss.html" rel="nofollow">people.cornell.edu/pages/elz1/&hellip;</a> (The quoted section's only half the poem)