active questions tagged sql - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T08:27:09Z http://stackoverflow.com/feeds/tag/sql http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1807375/sqlprinting-my-own-messages-depending-on-query-output 0 SQL:printing my own messages depending on query output unknown (yahoo) 2009-11-27T08:16:01Z 2009-11-27T08:26:48Z <p>how can i print my own messages depending on the output of a SQL quesry. Eg:</p> <pre><code>print "got it" when select * from emp wherempno=10; return atlest one record. else " not presnet" when the above quesry returns 0 records </code></pre> <p>i just one one sql quesry and not a Pl/SQL code.I am using oracle 9 db.</p> http://stackoverflow.com/questions/1807395/simple-sql-query 0 simple sql query unknown (google) 2009-11-27T08:20:25Z 2009-11-27T08:25:37Z <p>I have 3 tables as follows.</p> <pre><code>salesman(sid,sname) location(lid,lname) sales_loc(sid,lid) </code></pre> <p>now i want to print the sid and sname of saleman who has visited all location. I want a SQL quesry and i dont want a PL/SQL code.</p> http://stackoverflow.com/questions/1743496/why-are-sql-server-inserts-so-slow 1 Why are SQL server inserts so slow? Peter 2009-11-16T17:07:44Z 2009-11-27T08:09:14Z <p>I'm trying to insert rows of in memory data into a table on sql express 2005. It is running what seems to me very slowly - about 5 seconds per 1000 rows inserted. I am just using a basic "INSERT INTO" command. The slowness does not depend on the table data - it is still slow with a table with one int column and no index. It is nothing to do with my software - it is just as slow running sql in a loop from management studio. There is nothing else accessing the database at the same time. On a 3Ghz Xeon (old I know), this will take about 10 seconds to execute:</p> <p><code> declare @i int<br> set @i = 0<br> set nocount on<br> while @i &lt; 2000<br> begin<br> insert into testdb(testcolumn)<br> values (1)<br> set @i = @i + 1<br> end<br> </code></p> <p>My question is, is there a better way to insert bulk in memory data than looping on INSERT? Or some configuration I should change in sql server ?</p> http://stackoverflow.com/questions/1807181/backup-sql-server-2005-database-without-data 0 backup SQL Server 2005 database without data Nagendra Baliga 2009-11-27T07:02:02Z 2009-11-27T07:41:50Z <p>I have one stored procedure to backup the database. It will backup metadata as well as data.</p> <p>Is there any option to back up the database with out data. ie, back up only the schema (Empty tables).</p> <p>I dont want scripting the database.</p> http://stackoverflow.com/questions/1794697/find-last-sunday 6 Find last sunday Adu 2009-11-25T04:48:18Z 2009-11-27T07:39:47Z <p>How will you find last sunday of a month in sql 2000?</p> http://stackoverflow.com/questions/1806901/hexadecimal-sequence-in-oracle 0 Hexadecimal sequence in Oracle Abdel Olakara 2009-11-27T05:23:43Z 2009-11-27T07:23:43Z <p>Hi all, </p> <p>I would like to generate 16 char length hex decimal value as sequence. My database is Oracle and would like to know is it possible to do so? I checked the SEQUENCE in Oracle but I think its only for numericals.</p> <p>Any idea would be great help.<br> Thanks in advance,<br> Abdel Olakara</p> http://stackoverflow.com/questions/1806936/default-values-in-insert-select-in-sql 0 Default values in Insert Select in SQL Alex 2009-11-27T05:34:46Z 2009-11-27T07:00:20Z <p>How to pass default values in the Insert Select construction in SQL?</p> <p>I have a table:</p> <pre><code> create table1 (field1 int, field2 int, field3 int default 1337) create table2 (field1 int, field2 int) </code></pre> <p>I want to insert <code>table2</code> into <code>table1</code> with a construction similar to this:</p> <pre><code> insert into table1 select field1, field2, DEFAULT from table2 </code></pre> <p>Is it possible to use something instead of <code>DEFAULT</code> in my example to get the task done? How are previously selected tables usually inserted with default values?</p> http://stackoverflow.com/questions/1807079/how-to-reverse-the-default-ordering-in-mysql 0 How to reverse the default ordering in Mysql? Steven 2009-11-27T06:22:17Z 2009-11-27T06:47:30Z <p>In Mysql, when you execute a select SQL statement, there is a default ordering if you don't include a sorting clause, how to reverse the default ordering? Just add <code>DESC</code>?</p> http://stackoverflow.com/questions/1806505/save-sql-recordset-into-the-csv-file-with-well-formatted 0 Save Sql Recordset into the csv file with well formatted? mahesh kumar 2009-11-27T02:32:09Z 2009-11-27T06:43:51Z <p>I need to dump my sql query result into the text file. i have created the following query,</p> <pre><code>DECLARE @cmd VARCHAR(2048) SET @cmd = 'OSQL -Slocalhost ' + ' -UCRN370 -PCRN370' + ' -Q"SELECT TOP 5 GageId FROM EwQMS370..msgages"' + ' -oc:\authors.csv' EXEC master..xp_cmdshell @cmd, NO_OUTPUT </code></pre> <p>The above query created the CSV file authors.CSV. But the content of the file is not formatted properly. They showed some junk data.</p> <p>I need to create a formatted csv file.</p> http://stackoverflow.com/questions/1806851/how-to-retrieve-employees-belonging-to-more-than-one-owner-using-oracle-sql 0 How to retrieve employees belonging to more than one Owner using Oracle SQL tonsils 2009-11-27T05:03:56Z 2009-11-27T06:30:01Z <p>Hi,</p> <p>I have a situation in oracle where I have two tables - Table A and Table B.</p> <blockquote> <blockquote> <p>Table A has the following columns (aid, owner_id, app_id) and</p> <p>Table B has the following columns (bid, aid, emp_no) </p> </blockquote> </blockquote> <p>Table B has a foreign key (aid) back to Table A.</p> <p>Based on the above tables, I am trying to write a query where an emp_no in Table B belongs to more than one owner_id in Table A.</p> <p>The rule of thumb is that an emp_no can only belong to just one owner_id.</p> <p>Currently I have a data issues where one emp_no belongs to more than one owner_id.</p> <p>For example:</p> <p>I have a situation where emp_no belongs to 2 or more owner_ids - it is these records that I need to retrieve back but unsure how to.</p> <p>Information I would like to retrieve is:</p> <blockquote> <blockquote> <p>emp_no and owner_id</p> </blockquote> </blockquote> <p>Any help with query would be appreciated using Oracle sql.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1802172/python-mysqldb-update-if-exists-else-insert 1 Python MySQLdb: Update if exists, else insert Chuck 2009-11-26T07:55:30Z 2009-11-27T05:52:15Z <p>I am looking for a simple way to query an update or insert based on if the row exists in the first place. I am trying to use Python's MySQLdb right now. This is how I execute my query:</p> <pre><code>self.cursor.execute("""UPDATE `inventory` SET `quantity` = `quantity`+{1} WHERE `item_number` = {0} """.format(item_number,quantity)); </code></pre> <p>I have seen four ways to accomplish this:</p> <ol> <li><p>DUPLICATE KEY. Unfortunately the primary key is already taken up as a unique ID so I can't use this.</p></li> <li><p>REPLACE. Same as above, I believe it relies on a primary key to work properly.</p></li> <li><p><code>mysql_affected_rows()</code>. Usually you can use this after updating the row to see if anything was affected. I don't believe MySQLdb in Python supports this feature.</p></li> <li><p>Of course the last ditch effort: Make a SELECT query, fetchall, then update or insert based on the result. Basically I am just trying to keep the queries to a minimum, so 2 queries instead of 1 is less than ideal right now. </p></li> </ol> <p>Basically I am wondering if I missed any other way to accomplish this before going with option 4. Thanks for your time.</p> http://stackoverflow.com/questions/1805452/eval-compare-of-two-values-to-false-only-when-both-not-null-and-dont-match 0 Eval compare of two values to FALSE only when both not null and dont Match zmische 2009-11-26T20:07:29Z 2009-11-27T05:36:08Z <p>Where clause: I should test column against value in Proc, but if at least one of them is null It should be TRUE as a result. And Only when BOTH NOT NULL (it's Integer values for ID column in a table) result of the COmpare should be FALSE.</p> <p>Now I have this: ...</p> <pre><code>and nvl(nvl(b.account_id, account_id_), 0) = nvl(nvl(account_id_, b.account_id), 0) </code></pre> <p><code>b.account__id</code> - is Column in table (Integer), <code>account_id_</code> - Param in Proc of the same type.</p> <p>It works, but IMHO it looks Strange to understand what is the purpose of the Evaluation. So i tried to make it more READABLE, but without really good results. </p> <p>I tried COALESCE - nut it needs checking for null if Both are nulls. LNNVL is good one, but it gives FALSE if THEY BOTH Equal, but I need True for this case.</p> <p>Any good Thoughts?</p> http://stackoverflow.com/questions/1795074/inserting-1000s-of-rows-to-sql-table-using-ssms 1 Inserting 1000s of rows to SQL table using SSMS pencilslate 2009-11-25T06:45:02Z 2009-11-27T05:32:18Z <p>Hello Everyone,</p> <p>I have a sql script with insert statements to insert 1000s of rows (12000 approx.). When i try running the script in SSMS, it throws 'Out of memory' exception after a while.</p> <pre><code>"An error occurred while executing batch. Error message is: Exception of type 'System.OutOfMemoryException' was thrown." </code></pre> <p>I have SQL Server 2008 on Vista with 3gb RAM.</p> <p>Any thoughts or pointers would be appreciated!</p> http://stackoverflow.com/questions/1806897/dao-orm-and-queries 0 DAO, ORM and Queries StillLearning 2009-11-27T05:22:02Z 2009-11-27T05:22:02Z <p>There is a need to update one field to the same value in a heap of records. Using the DAO/ORM structure, I would retrieve each parent object, loop through each child object, update it's field, and then save it.</p> <p>It would be faster to just write the SQL: update table set field = value where criteria = specified.</p> <p>How do I fit these things together? Do I just stick with the dao structure:</p> <pre><code>for (Table t : getTableDao().getTables()){ for(Child c : t.getChildren()){ c.setValue(1); getChildrenDao().save(c); } } </code></pre> <p>Cheers.</p> http://stackoverflow.com/questions/1806394/rails-virtual-attribute-search-or-sql-combined-column-search 1 Rails virtual attribute search or sql combined column search Nik 2009-11-27T01:27:48Z 2009-11-27T05:12:07Z <p>Hello All!</p> <p>I have a user model with attributes 'first' and 'last' So for example User.first.first #=> "Charlie" User.first.last #=> "Brown"</p> <p>This User model also has a virtual attribute 'full_name'</p> <pre><code>#user.rb def full_name [first,last].join(' ') end def full_name=(name) #don't know what to do with people w/ middle names split = name.split(' ') self.first = split[0] self.last = split[1] end </code></pre> <p>So for example:</p> <pre><code>User.first.full_name = "Charlie Brown" #=&gt; "Charlie Brown" User.first.full_name = "Homer Simpson" #=&gt; "Home Simpson" User.first.save User.first.first #=&gt; "Homer" User.first.last #=&gt; "Simpson" </code></pre> <p>It'd be so nice if I could search by that virtual attribute so for example for dynamic find:</p> <pre><code>User.find_by_full_name('Home Simpson') # this doesn't work </code></pre> <p>Example for conditions in find:</p> <pre><code>User.all(:conditions =&gt; ['full_name LIKE ?', query]) #this doesn't work </code></pre> <p>I am hoping to find at least some ways in SQL language that can do this; if there's a dynamic virtual attribute find, too, that's extra vanilla source on the strudel. (anyone having this this winter?)</p> <p>I was also concerned about a name being searched , e.g., "Holmes" may only be searched in the 'first' column but not the 'last' to retrieve, for example, <code>User.first.full_name #=&gt; "Sherlock Holmes"</code>.</p> <p>I did try to do a more comprehensive search:</p> <h1>user.rb</h1> <pre><code>def self.find_by_full_name(name) #returns an array of User model return all if name.blank? split = name.split(' ', 2) output = [] if split.length &gt; 1 with_scope( :find =&gt; { :conditions =&gt; ['first LIKE ?', "%#{split[0]}%"] }) do output &lt;&lt; all(:conditions =&gt; ['last LIKE ?', "%#{split[1]}%"]) output.flatten! end elsif split.length == 1 output &lt;&lt; all(:conditions =&gt; ['first LIKE ?', "%#{split[0]}%"]) output &lt;&lt; all(:conditions =&gt; ['last LIKE ?', "%#{split[0]}%"]) output.flatten! end end </code></pre> <p>For example</p> <pre><code>User.find_by_full_name("John").map(&amp;:full_name) #=&gt; ["John Resig", "John Doe"] User.find_by_full_name("Doe").map(&amp;:full_name) #=&gt; ["John Doe", "Philips Doeringer"] User.find_by_full_name("John Doe").map(&amp;:full_name) #=&gt; ["John Doe"] </code></pre> <p>But I just thought that the find_by_full_name method here is a bit unwieldy.</p> <p>I mean, if I had a column full_name that gets set each time by a after save filter with the concat of first and last. So finding a person's name, especially with fuzzy memory of this person, is helpful. So if I remembered 'Doe' in that person's either first or last name, I can always do a simple User.find_by_full_name('Doe') to return as many as possible to further pin it down.</p> <p>And since it is a column, I can search it in a find(:conditions[...]) clause if I have to do something like <code>Project.find(:all,:include =&gt; :users, :conditions=&gt;['users.full_name LIKE ?', query])</code> where </p> <pre><code>#project.rb has_many :assignments has_many :users, :through=&gt;:assignments #user.rb has_many :assignments has_many :projects, :through =&gt; :assignments #assignment.rb belongs_to :user belongs_to :project </code></pre> <p>Happy Holidays N</p> http://stackoverflow.com/questions/1805470/sql-query-problem 2 SQL Query problem MubbashirAbbas 2009-11-26T20:13:59Z 2009-11-27T05:10:14Z <p>Consider two table.Employee and Project.Employee table has fields like eid,ename.Project table has fields like pid,pname.Now,since an employee can work on many projects and a project can be done by many employees, therefore,as evident,there is a many to many relationship b/w the two tables.Break the many to many,and create a new table called Assignment which consists as foreign keys the eid and pid.</p> <p>Here is the question, I Want to find out those employee pairs who have worked with each other in more than 1 project.For example if emp A and emp B have worked with each other on more than one project then they qualify for the above query result.</p> <p>Kindly let me know what will be the query for the mentioned problem.</p> http://stackoverflow.com/questions/1806749/performance-tuning-with-sql-server 0 Performance tuning with SQL Server Marcos Buarque 2009-11-27T04:36:34Z 2009-11-27T04:55:13Z <p>Hi, I was trying to contact the author of a book I am reading on SQL Server query performance, but it seems the e-mail address provided in the book does not exis any more. So I decided to ask the community. I am pasting the messasge I had written below. Thanks in advance.</p> <p>======</p> <p>I have bought your book (SQL Server 2008 Query Performance Tuning Distilled) and got to know that my SQL Server Express Edition won't support many of the important tools I will need in order to run the necessary performance tests. As you have said, it is important to have an initial analisys to check how much queries are hurting database performance. Since I don't have profiler, I cannot know. I have downloaded a free project tool, but I am afraid I am not getting the information I need. And it seems to me, the information that should be shown when using SET STATISTICS won't appear in SQL Server Express either.</p> <p>Which is the lowest version of SQL Server that will offer me the tools to run the tests suggested in the book? Is it Developer Edition? Does it offer everything I need in order to follow the examples?</p> <p>Also, is there any problem to install the new version (like Developer Edition) on top of Express Edition? Or do I have to uninstall the previous version?</p> <p>I hope I am not bothering much. I would also like to congratulate you on the great book on such an important topic.</p> http://stackoverflow.com/questions/1806580/how-to-get-the-dependency-of-jobs-in-sql-server 0 How to get the dependency of jobs in SQL Server? srihari 2009-11-27T03:11:33Z 2009-11-27T04:37:01Z <p>Hi, <br> How can we find the job dependency in SQL server.<br> Therotically basing on the success of first one job the other job begins.<br></p> <p>Thanks a lot in advance!!</p> http://stackoverflow.com/questions/1806636/is-there-a-way-to-search-2-or-more-fields-at-the-same-time 0 Is there a way to search 2 or more fields at the same time? Thorpe Obazee 2009-11-27T03:48:34Z 2009-11-27T04:03:10Z <p>I am looking into creating something that does this:</p> <pre><code>SELECT * FROM (`tm_accounts`) WHERE CONCAT(`last_name`, `first_name`) LIKE '%o%' </code></pre> <p>This, of course, doesn't work. I just want you to see the idea behind what I'm trying to emulate.</p> <p>last_name and first_name are two separate fields in the accounts table</p> http://stackoverflow.com/questions/1776631/update-and-insert-stored-procedure 1 Update and Insert Stored Procedure Abhishek Kapuria 2009-11-21T20:13:19Z 2009-11-27T03:55:39Z <p>I want to create a stored procedure that performs insert or update operation on a column if that column does not contains a value that already exists in database it should allow insert when COUNT(field) = 0 or update when COUNT(field)=0 or 1 And I should know that either of these operation is performed or not. Please solve my problem using COUNT not Exists because that won't work for UPDATE.</p> <p>I am working in ASP.net - I have two columns of a table that are needed to be kept unique without using the unique constraint. So I want a procedure like this:</p> <pre><code>create proc usp_checkall @field1 varchar(20), @field2 varchar(20), @ID int, @cunt int output </code></pre> <p>Now your query on updating/inserting @field1 &amp; @field2 on basis of @id</p> http://stackoverflow.com/questions/1740280/select-all-the-newest-record-distinct-keyword-with-a-non-null-value-in-one-column 1 SELECT all the newest record distinct keyword with a non null value in one column Wizzard 2009-11-16T05:39:57Z 2009-11-27T03:49:14Z <p>Hello again...</p> <p>Following on from this question <a href="http://stackoverflow.com/questions/1740199/select-the-newest-record-with-a-non-null-value-in-one-column">http://stackoverflow.com/questions/1740199/select-the-newest-record-with-a-non-null-value-in-one-column</a></p> <p>I know have a problem where I have this data</p> <pre><code>id | keyword | count | date 1 | ipod | 200 | 2009-08-02 2 | ipod | 250 | 2009-09-01 3 | ipod | 150 | 2009-09-04 4 | ipod | NULL | 2009-09-07 5 | apple | 100 | 2009-07-01 6 | apple | 98 | 2009-07-05 7 | apple | 500 | 2009-07-30 8 | itunes | NULL | 2009-08-30 9 | itunes | 50 | 2009-09-10 10 | itunes | NULL | 2009-09-15 </code></pre> <p>And need a query which will fetch out rows 3, 7 and 9 Row which has the newest date and is non-null.</p> http://stackoverflow.com/questions/1746109/retrieve-available-day-from-date-rante 0 retrieve available day from date rante pedalpete 2009-11-17T01:52:52Z 2009-11-27T03:45:54Z <p>I think I'm pretty close on this query, but can't seem to crack it, and I'm not sure if I've got the most efficient approach. </p> <p>I am trying to find a day where a user is not booked from a range of dates where they are booked. </p> <p>Think staff scheduling. I need to find who is available to work on Tuesday, and is working on other days this week. </p> <p>My query currently looks like this</p> <pre> SELECT employees.uid, name, date FROM employees LEFT JOIN storelocation ON employees.uid = storelocation.uid LEFT JOIN schedule ON emplyees.uid = schedule.uid WHERE slid =9308 AND date BETWEEN '2009-11-10' AND '2009-12-20' AND NOT EXISTS ( SELECT uid FROM schedule WHERE date = '2009-11-11' ) </pre> <p>If I don't include the 'Not Exists', I get 1500 results If I use only the Select form the 'Not Exists', I get 200 results, so both of those queries work independently. However, my query as I've written it returns 0 results. </p> http://stackoverflow.com/questions/1469500/querying-multiple-rows-from-oracle-table-using-package 0 Querying multiple rows from Oracle table using package Rahuls 2009-09-24T02:23:03Z 2009-11-27T03:44:05Z <p>I wrote a package to query rows from a table. This select query will call other functions and returns all the rows from table. But when i write a package with all functions and sprocs , my sproc with select statement gives me an error saying i cannot execute without into statement. But if i use into then it will return only one row. How can i retrieve all rows using oracle sp?</p> <pre><code> Procedure GetData As BEGIN Select Jobid, JobName, JobLocation, JobCompany, X(jobid) FROM jobsTable; END GetData; END; </code></pre> <p>I had to change it to following make the error go away: </p> <pre><code>Procedure GetData As r_Jobid jobsTable.jobid%type; r_JobName jobsTable.jobName%type; r_JobLocation jobsTable.jobLocation%type; r_temp varhar2(10); BEGIN Select Jobid, JobName, JobLocation, JobCompany, X(jobid) INTO r_jobid, r_jobName, r_jobLocation, r_temp FROM jobsTable; END GetData; END; </code></pre> http://stackoverflow.com/questions/1379368/my-slow-t-sql-query-needs-a-complete-rethink 0 My slow T-SQL query needs a complete rethink. Robert 2009-09-04T13:44:34Z 2009-11-27T03:43:13Z <p>Good afternoon all. I'm going to post the stored procedure in it's entire glory. Feel free to rip it to shreds. The author won't mind.</p> <pre><code>DECLARE @itemTypeID INT SELECT @itemTypeID=ItemTypeID FROM dbo.ItemTypes WHERE ItemTypeName = 'Advert' BEGIN SELECT a.Active, a.ParentClass, a.Classification, a.Variant, FV."Full Views", PV."Print Views", EE."Email Enquiries", a.ItemRef, a.SiteID FROM ( SELECT DISTINCT i.ItemID, i.ItemRef, i.SiteID, i.ParentClass, i.Classification, i.Summary AS "Variant", i.Active FROM Items i JOIN Actions a ON a.ItemID = i.ItemID JOIN ActionTypes at ON a.ActionTypeID = at.ActionTypeID WHERE i.ItemTypeID = 1 AND a.DateAndTime BETWEEN @startDate AND @endDate AND at.ActionTypeName IN ('Full view', 'Print view', 'Email enquiry') AND ((@siteID = -1) OR (i.SiteID = @siteID)) AND ((@parentClass = '%') OR (i.ParentClass = @parentClass)) AND ((@class = '%') OR (i.classification = @class)) ) a LEFT JOIN ( SELECT i.ItemID, COUNT(*) AS "Full Views" FROM CustomerSites cs JOIN Items i ON cs.SiteID = i.SiteID JOIN Actions a ON a.ItemID = i.ItemID JOIN ActionTypes at ON a.ActionTypeID = at.ActionTypeID JOIN Sites s ON cs.SiteID = s.SiteID WHERE a.DateAndTime BETWEEN @startDate AND @endDate AND i.ItemTypeID = @itemTypeID AND at.ActionTypeName = 'Full view' AND ((@customerID IS NULL) OR (cs.CustomerID = @customerID)) AND ((@siteID = -1) OR (cs.SiteID = @siteID)) AND ((@parentClass = '%') OR (i.ParentClass = @parentClass)) AND ((@class = '%') OR (i.classification = @class)) GROUP BY i.ItemID ) FV ON a.ItemID = FV.ItemID LEFT JOIN ( SELECT i.ItemID, COUNT(*) AS "Print Views" FROM CustomerSites cs JOIN Items i ON cs.SiteID = i.SiteID JOIN Actions a ON a.ItemID = i.ItemID JOIN ActionTypes at ON a.ActionTypeID = at.ActionTypeID JOIN Sites s ON cs.SiteID = s.SiteID WHERE a.DateAndTime BETWEEN @startDate AND @endDate AND i.ItemTypeID = @itemTypeID AND at.ActionTypeName = 'Print view' AND ((@customerID IS NULL) OR (cs.CustomerID = @customerID)) AND ((@siteID = -1) OR (cs.SiteID = @siteID)) AND ((@parentClass = '%') OR (i.ParentClass = @parentClass)) AND ((@class = '%') OR (i.classification = @class)) GROUP BY i.ItemID ) PV ON a.ItemID = PV.ItemID LEFT JOIN ( SELECT i.ItemID, COUNT(*) AS "Email Enquiries" FROM CustomerSites cs JOIN Items i ON cs.SiteID = i.SiteID JOIN Actions a ON a.ItemID = i.ItemID JOIN ActionTypes at ON a.ActionTypeID = at.ActionTypeID JOIN Sites s ON cs.SiteID = s.SiteID WHERE a.DateAndTime BETWEEN @startDate AND @endDate AND i.ItemTypeID = @itemTypeID AND at.ActionTypeName = 'Email enquiry' AND ((@customerID IS NULL) OR (cs.CustomerID = @customerID)) AND ((@siteID = -1) OR (cs.SiteID = @siteID)) AND ((@parentClass = '%') OR (i.ParentClass = @parentClass)) AND ((@class = '%') OR (i.classification = @class)) GROUP BY i.ItemID ) EE ON a.ItemID = EE.ItemID UNION SELECT '0','','','','','','','','' </code></pre> <p>Now ultimately all this does is return some records and the number of times a particular action has occured against them.</p> <p>A small subset would look like.</p> <p>Item Description Views Printed Emails</p> <pre><code>Item1 Desc1 12 NULL 1 Item2 Desc2 NULL NULL 3 Item3 Desc3 5 6 2 </code></pre> <p>Hopefully you can see what's going on.</p> <p>I want a list of items who have had actions against them for a particular date range for a particular customer for a particular site and the query should be filterable on parent class and classification. Nice</p> <p>The first select returns all distinct items that fall within the selection criteria.</p> <p>The other 3 queries all simply returning counts of 1 type of action against each item. The query is pants slow even against a small amount of data. This is never going to go live it just won't work.</p> <p>Hopefully you can see the error of the 'authors' ways and correct him/her.</p> http://stackoverflow.com/questions/1317368/how-do-i-avoid-dynamic-sql-when-using-an-undetermined-number-of-parameters 4 How do I avoid dynamic SQL when using an undetermined number of parameters? Steve Wortham 2009-08-22T23:55:49Z 2009-11-27T03:42:25Z <p>I have a StackOverflow-like tagging system for a database I'm working on. And I'm writing a stored procedure that looks for results based on an undetermined number of tags in a WHERE clause. There could be anywhere between 0 and 10 tags to filter results. So for example the user could be searching for items tagged with 'apple', 'orange', and 'banana' and <em>each</em> result must include all 3 tags. My query is made even more complicated because I'm also dealing with a cross reference table for the tagging, but for the purposes of this question I won't go into that.</p> <p>I know I can do some string manipulation and feed the exec() function a query to take care of this but I'd rather not for performance problems associated with dynamic SQL. I figure it's best if SQL caches a query plan for the stored proc.</p> <p>What are some techniques you've used to avoid dynamic SQL in this type of scenario?</p> <p>By popular demand, here's the query I'm working with:</p> <pre><code>SELECT ft.[RANK], s.shader_id, s.page_name, s.name, s.description, s.download_count, s.rating, s.price FROM shader s INNER JOIN FREETEXTTABLE(shader, *, @search_term) AS ft ON s.shader_id = ft.[KEY] WHERE EXISTS(SELECT tsx.shader_id FROM tag_shader_xref tsx INNER JOIN tag t ON tsx.tag_id = t.tag_id WHERE tsx.shader_id = s.shader_id AND t.tag_name = 'color') AND EXISTS(SELECT tsx.shader_id FROM tag_shader_xref tsx INNER JOIN tag t ON tsx.tag_id = t.tag_id WHERE tsx.shader_id = s.shader_id AND t.tag_name = 'saturation') ORDER BY ft.[RANK] DESC </code></pre> <p>This is functional but hard-coded. You'll see that I have it set to look for the 'color' and 'saturation' tags.</p> http://stackoverflow.com/questions/1266427/sql-join-history-table-to-active-table-ssrs-report 0 sql join history table to active table SSRS report Andrew Jahn 2009-08-12T14:12:51Z 2009-11-27T03:39:37Z <p>I'm trying to pull results from a database (sql server 2005) which takes 4 tables: Subscriber S, Member M, ClaimLines L, ClaimHistoryLines H</p> <p>Query is as follows:<br></p> <pre><code>select S.SBSB_ID, M.MEME_NAME, (CASE L.CLCL_ID WHEN '' THEN H.CLCL_ID ELSE L.CLCL_ID END) AS CLAIM_ID FROM CMC_CDDL_CL_LINE L, CMC_MEME_MEMBER M LEFT OUTER JOIN CMC_CLDH_DEN_HIST H ON H.MEME_CK = M.MEME_CK, CMC_SBSB_SUBSC S WHERE S.SBSB_ID = '120943270' AND L.MEME_CK = M.MEME_CK AND M.SBSB_CK = S.SBSB_CK </code></pre> <p>This query successfully pulls in the result rows from the ClaimLines L table but no results from the History table are shown. I'm not sure how to do this, any sql experts out there that can help would be great. -Thanks!</p> http://stackoverflow.com/questions/1767178/pl-sql-query-with-variables 0 PL/SQL Query with Variables Jim 2009-11-19T23:00:54Z 2009-11-27T03:36:28Z <p>I have a fairly complex query that will be referencing a single date as a start or stop date multiple times throughout. I'm going to have to run this query for 3 different fiscal years, and don't want to have to hunt down the date 17 times in order to change it throughout my query.</p> <p>Is there a way to set a variable at the beginning of my query and reference it throughout? I'm not looking to write a whole function, just reference a variable throughout my query.</p> http://stackoverflow.com/questions/1435177/why-does-this-sql-code-give-error-1066-not-unique-table-alias-user 0 Why does this sql code give error 1066 (Not unique table/alias: 'user')? neobeacon 2009-09-16T20:07:14Z 2009-11-27T03:28:49Z <p>This is my table structure.</p> <p><img src="http://img6.imageshack.us/img6/8730/articlek.jpg" alt="alt text" /></p> <p>This is my code,This give error: #1066 - Not unique table/alias: 'user'</p> <pre><code>SELECT article.* , section.title, category.title, user.name, user.name FROM article INNER JOIN section ON article.section_id = section.id INNER JOIN category ON article.category_id = category.id INNER JOIN user ON article.author_id = user.id LEFT JOIN user ON article.modified_by = user.id WHERE article.id = '1' </code></pre> http://stackoverflow.com/questions/1806365/combine-two-small-queries-that-group-by-different-values-into-one-query 0 Combine two small queries (that group by different values) into one query SanSaurus 2009-11-27T01:16:28Z 2009-11-27T01:31:30Z <p>Please take a look at the following table (called response). It shows what response a respondent has given to a question and answer.</p> <pre><code>questionid answerid respondentid 1 10 1 1 11 2 1 11 4 1 12 3 1 12 5 2 20 1 2 20 2 2 21 2 2 22 1 2 22 4 2 23 1 2 23 3 2 24 4 3 30 2 3 30 3 3 30 4 3 31 1 </code></pre> <p>We can run the following SQL:</p> <pre><code>select questionid, answerid, count(respondentid) as noOfRespondentsToQuestionAndAnswer from response group by questionid, answerid </code></pre> <p>... which will tell us how many respondents answered each combination of question+answer.</p> <p>We can also do:</p> <pre><code>select questionid, count(distinct respondentid) as noOfRespondentsToQuestion from response group by questionid </code></pre> <p>... which will tell us how many distinct respondents have answered each question.</p> <p>I would like to combine the two selects to ONE and let the number of distinct respondents be represented on more than one row for each questionid (which would be necessary, as it's only based on question and not also on answer).</p> <p>So, I would like a result like the following:</p> <pre><code>questionid,answerid,noOfRespondentsToQuestionAndAnswer,noOfRespondentsToQuestion 1 10 1 5 1 11 2 5 1 12 2 5 2 20 2 4 2 21 1 4 2 22 2 4 2 23 2 4 2 24 1 4 3 30 3 4 3 31 1 4 </code></pre> <p>Is it possible to acheive this with just one query?</p> http://stackoverflow.com/questions/1806171/postgresql-update-existing-rows-with-pgresotre 0 PostgreSQL, update existing rows with pg_resotre woky 2009-11-26T23:51:04Z 2009-11-26T23:51:04Z <p>Hello.</p> <p>I need to sync two PostgreSQL databases (some tables from development db to production db) sometimes.</p> <p>So I came up with this script:</p> <pre><code>[...] pg_dump -a -F tar -t table1 -t table2 -U user1 dbname1 | \ pg_restore -a -U user2 -d dbname2 [...] </code></pre> <p>The problem is that this works just for newly added rows. When I edit non-PK column I get constraint error and row isn't updated. For each dumped row I need to check if it exists in destination database (by PK) and if so delete it before INSERT/COPY.</p> <p>Thanks for advices.</p>