active questions tagged tsql - Stack Overflowmost recent 30 from stackoverflow.com2009-12-14T21:47:05Zhttp://stackoverflow.com/feeds/tag/tsqlhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1903197/combining-two-t-sql-pivot-queries-in-one0Combining two T-SQL pivot queries in oneEd Saito2009-12-14T20:14:41Z2009-12-14T20:52:01Z
<p>Suppose you had this table:</p>
<pre><code>CREATE TABLE Records
(
RecordId int IDENTITY(1,1) NOT NULL,
CreateDate datetime NOT NULL,
IsSpecial bit NOT NULL
CONSTRAINT PK_Records PRIMARY KEY(RecordId)
)
</code></pre>
<p>Now a report needs to be created where the total records and the total special records are broken down by month. I can use these two queries separately:</p>
<pre><code>-- TOTAL RECORDS PER MONTH
SELECT January, February, March, April, May, June,
July, August, September, October, November, December
FROM (
SELECT RecordId, DATENAME(MONTH, CreateDate) AS RecordMonth
FROM dbo.Records
) AS SourceTable
PIVOT (
COUNT(RecordId) FOR RecordMonth IN (January, February, March, April, May, June,
July, August, September, October, November, December)
) AS PivotTable;
-- TOTAL SPECIAL RECORDS PER MONTH
SELECT January, February, March, April, May, June,
July, August, September, October, November, December
FROM (
SELECT RecordId, DATENAME(MONTH, CreateDate) AS RecordMonth
FROM dbo.Records
WHERE IsSpecial = 1
) AS SourceTable
PIVOT (
COUNT(RecordId) FOR RecordMonth IN (January, February, March, April, May, June,
July, August, September, October, November, December)
) AS PivotTable;
</code></pre>
<p>The results might look like this:</p>
<pre><code> Jan | Feb | Mar | Apr | May | Jun | Jul | Aug | Sep | Oct | Nov | Dec
total 0 0 2 2 1 0 0 1 2 1 2 4
total special 0 0 1 0 1 0 0 0 0 0 0 2
</code></pre>
<p>Is it possible to combine these two queries into a single more efficient query?</p>
http://stackoverflow.com/questions/1891858/query-to-get-the-duration-and-details-from-a-table2Query to get the duration and details from a tablesajoz2009-12-12T01:16:10Z2009-12-14T20:18:20Z
<p>Hi:</p>
<p>I have a scenario and not quite sure how to query it. As a sample, I have following table structure and want to get the history of the action for bus:<br>
<br><code>
ID-----TIME---------BUSID----OPID----MOVING----STOPPED----PARKED----COUNT
<br>
1------10:10:10-----101------1101-----1---------0----------0---------15<br>
2------10:10:11-----102------1102-----0---------1----------0---------5<br>
3------10:11:10-----101------1101-----1---------0----------0---------15<br>
4------10:12:10-----101------1101-----0---------1----------0---------15<br>
5------10:13:10-----101------1101-----1---------0----------0---------19<br>
6------10:14:10-----101------1101-----1---------0----------0---------19<br>
7------10:15:10-----101------1101-----0---------1----------0---------19<br>
8------10:16:10-----101------1101-----0---------0----------1---------0<br>
9------10:17:10-----101------1101-----0---------0----------1---------0<br>
</code><br>
I want to write a query to get the status of a bus like:<br>
<br><code>
BUSID----OPID----STATUS-----TIME---------DURATION---COUNT<br>
101------1101----MOVING-----10:10:10-----2-----------15<br>
101------1101----STOPPED----10:12:10-----1-----------15<br>
101------1101----MOVING-----10:13:10-----2-----------19<br>
101------1101----STOPPED----10:15:10-----1-----------19<br>
101------1101----PARKED-----10:16:10-----2-----------0<br>
</code>
<br>
I am using SQL Server 2008.
<br> <br>Thanks for your help.</p>
http://stackoverflow.com/questions/1902947/pk-ids-and-simulating-an-object-in-a-table0PK, IDs and simulating an 'object' in a tableacidzombie242009-12-14T19:28:54Z2009-12-14T20:17:14Z
<p>The object part is misleading. My question is not specific to one type of sql.</p>
<p>ATM i am using sqlite but i will be switching to TSQL (It looks to be what my host is offering) and i am rewriting some tables and logic to clean things up.</p>
<p>One pattern i notice is i have a bigint that could possible be one of 2+ keys and sometimes if i need it a bit or byte as an id to what type it is. Two major things that come to mind is
<strike>
1) If a bigint is signed and i happen to have more then 2^32 PK in a table would bigint still be able to access the keys? I'm thinking since the value will be negative and PKs are always positive? that i will get an error.</strike> mistake, i forgot bigint is 2^63, i have nothing to worry about.</p>
<p>2) If i have a bigint that represents the PK of 2 or more tables would this be bad practice? For whatever reason i think there is a better way of doing bigint the_id, byte the_id</p>
http://stackoverflow.com/questions/1625369/saving-inserted-and-deleted-tables-into-variables-for-use-in-net-code-via-spoa0Saving Inserted and Deleted tables into variables for use in .NET code (via sp_oamethod) [SQL Server 2000]helios4562009-10-26T15:04:55Z2009-12-14T15:32:13Z
<p>I am trying to create a SQL Trigger in SQL Server that will somehow serialize the Inserted and Deleted tables for use in .NET code (via sp_oamethod). I would like this to be generic enough to use for any table.</p>
<p>My first attempt involved using "for xml" to serialize it into XML, and pass it to .NET code. However, I have been unable to assign the XML to a variable, as it is not supported in SQL Server 2000 (2005 is not yet an option for us). The only option is to do the serialization manually (Ref. <a href="http://stackoverflow.com/questions/914009/saving-the-for-xml-auto-results-to-variable-in-sql">http://stackoverflow.com/questions/914009/saving-the-for-xml-auto-results-to-variable-in-sql</a>) and that does not fit my requirements of being generic.</p>
<pre><code>--This does not work
declare @OldValue varchar(5000)
select @OldValue = (select * from Deleted for XML auto)
</code></pre>
<p>Does anyone know of a way to do this generically, using any method? I do not care about the format, as long as I can get the column names and values into my .NET code.</p>
http://stackoverflow.com/questions/1900759/dataadapter-update-requires-input-parameter-for-auto-increment-primary-key-colu0DataAdapter Update() requires input parameter for Auto increment primary key columnphatoni2009-12-14T12:53:34Z2009-12-14T15:21:04Z
<p>While updating a DataTable to a SQL Server database I get the error message "Column 'PK_Column' does not allow nulls" after calling GetErrors()
I don't want to provide a value for PK_Column because it is a auto increment primary key column in the database. My insert statement looks like this:</p>
<pre><code>INSERT INTO [Order] ([Customer_Id], [OrderTime], [OrderType])
VALUES(@Customer_Id, @OrderTime, @OrderType)
SELECT CAST(SCOPE_IDENTITY() AS int) AS '@PK_Column'
</code></pre>
<p>It works as expected in SQL Server Management Studio, so the query is obviously not the problem.</p>
<p>I have four parameters on the insert command, one output parameter (<code>@PK_Column</code>) and three input parameters <code>(@Customer_Id, @OrderTime, @OrderType)</code>. I figured out that I don't get the error if I set <code>@PK_Column</code> to InputOutput parameter, but then the <code>PK_Column</code> value does not get updated with the correct value created by the database.</p>
http://stackoverflow.com/questions/1899736/getting-all-possible-combinations-which-obey-certain-condition-with-ms-sql0Getting all possible combinations which obey certain condition with MS SQLShitHappens2009-12-14T08:50:40Z2009-12-14T14:04:27Z
<p>I need to constract an SQL query but I have no idea how to do it. If someone helps, I'll appriciate it very much.</p>
<p>I have the following table</p>
<pre><code>GroupedBYField ConditionField ToBeSummeField
1 1 1
1 1 2
1 1 3
2 2 100
2 2 200
2 2 300
</code></pre>
<p>and I need to get all the possible combinations of <code>groupedBYField, SUM(ToBeSummeField)</code> which has
<code>SUM(conditionField) = 2</code>, that is the following table</p>
<pre><code>GroupedBYField SumField
1 3
1 4
1 5
2 100
2 200
2 300
</code></pre>
<p>Thank you for your help!</p>
http://stackoverflow.com/questions/1536610/sql-server-2005-returns-results-from-some-other-sp0Sql Server 2005 Returns Results From Some Other SPZuhaib2009-10-08T09:12:31Z2009-12-14T11:39:25Z
<p>I have a data access layer which returns DataSets/DataTables by executing Stored Procedure. Everything was working fine from many months. But suddenly we have started getting the following error.</p>
<p><strong>System.ArgumentException; Column < ColumnName > does not belong to table < TableName ></strong></p>
<p>I wrote come extra logging code to troubleshoot this issue. I was shocked to see that the SP sometimes returns Unexpected result set. The Stored Procedure sometimes returns result that are requested by a Windows Services using some other Stored Procedure.</p>
<p>I monitored the Sql Server traffic using a Profiler. When this error occured Sql Profiler didn't show any execution for the SP that I actually executed. Its difficult to reproduce this bug it happens randomly.</p>
<p>We have only faced this problem in our testing environment. Our testing environment is running Windows 2003 Server & Sql Server 2005 Express Edition.</p>
<p>In past we have run several rigorous load test on our application using both Sql Server 2005 Express and Standard Edition but we have never faced this issues.</p>
<p>Has anybody faced such problem before?</p>
<h2><strong>Update</strong></h2>
<p>I dumped the result that I got after executing the stored procedure to the log file. I found out that the result returned are sometimes empty and sometimes result of sp's that are executed by different windows services.</p>
<p>This problem doesn't occur in any other environment. So I have stopped looking into this problem.</p>
http://stackoverflow.com/questions/1896797/query-to-get-max-min-row-details-for-multiple-fields0Query to get Max/Min row details for multiple fieldssajoz2009-12-13T15:19:02Z2009-12-13T19:41:33Z
<p>I have a table structure similar to the following example:</p>
<pre><code>DateTime V1 V2 V3 V4
10/10/10 12:10:00 71 24 33 40
10/10/10 12:00:00 75 22 44 12
10/10/10 12:30:00 44 21 44 33
10/10/10 12:20:00 80 11 88 12
</code></pre>
<p>With DateTime field being the unqiue and key field, I want a query to output min and max date time for each values so that it will show something like below: <br>
<br></p>
<pre><code>TYPE MIN MINDATETIME MAX MAXDATETIME
V1 44 10/10/10 12:30:00 80 10/10/10 12:20:00
V2 11 10/10/10 12:20:00 24 10/10/10 12:10:00
V3 33 10/10/10 12:10:00 88 10/10/10 12:20:00
V4 12 10/10/10 12:20:00 40 10/10/10 12:10:00
</code></pre>
<p>If there are multiple rows with the same min/max value, then it should get the latest one.<br></p>
<p>With Inner Join on a field, I know to get the details of min/max row for a field, but only way I can think getting everything in one query is to union them all. I think there might be a better solution. Any help is appreciated.</p>
<p>I am using SQL Server 2008.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1897002/sql-ordering-hiarchy1Sql Ordering Hiarchystephenbayer2009-12-13T16:37:59Z2009-12-13T17:52:56Z
<p>I am working on a SQL Statement that I can't seem to figure out. I need to order the results alphabetically, however, I need "children" to come right after their "parent" in the order. Below is a simple example of the table and data I'm working with. All non relevant columns have been removed. I'm using SQL Server 2005. Is there an easy way to do this? </p>
<pre><code>tblCats
=======
idCat | fldCatName | idParent
--------------------------------------
1 | Some Category | null
2 | A Category | null
3 | Top Category | null
4 | A Sub Cat | 1
5 | Sub Cat1 | 1
6 | Another Cat | 2
7 | Last Cat | 3
8 | Sub Sub Cat | 5
Results of Sql Statement:
A Category
Another Cat
Some Category
A Sub Cat1
Sub Cat 1
Sub Sub Cat
Top Category
Last Cat
</code></pre>
<p>(The prefixed spaces in the result are just to add in understanding of the results, I don't want the prefixed spaces in my sql result. The result only needs to be in this order.)</p>
http://stackoverflow.com/questions/1896371/need-help-with-a-sql-query0Need help with a SQL query.Shimmy2009-12-13T12:34:38Z2009-12-13T16:58:34Z
<pre><code>SELECT @Tax = SUM(QuoteItem.SalesPrice) * TOP (1) Tax.Amount
FROM Tax INNER JOIN
Job ON Tax.TaxId = Job.TaxId INNER JOIN
Quote ON Job.JobId = Quote.JobId INNER JOIN
QuoteItem INNER JOIN
Room ON QuoteItem.RoomId = Room.RoomId ON Quote.QuoteId = Room.QuoteId
WHERE (Room.QuoteId = @QuoteId) AND (QuoteItem.UnitId = @UnitId)
RETURN @Tax
</code></pre>
<p><hr></p>
<p>Result:</p>
<pre><code>Msg 156, Level 15, State 1, Procedure fn_GetQuoteUnitTax, Line 54
Incorrect syntax near the keyword 'TOP'.
</code></pre>
<p>Note, that when I omit the TOP(1) it says:</p>
<pre><code>Msg 8120, Level 16, State 1, Procedure fn_GetQuoteUnitTax, Line 54
Column 'Tax.Amount' is invalid in the select list because it is not contained in
either an aggregate function or the GROUP BY clause.
</code></pre>
http://stackoverflow.com/questions/1894288/sql-query-to-list-all-dependant-entities0SQL query to list all dependant entities.pencilslate2009-12-12T18:27:22Z2009-12-13T16:18:40Z
<p>A SQL table has 100s of tables, SPs and functions. </p>
<p>I am trying to put together a sql query that will return all the dependencies of a given set of tables. Is there a way to accomplish this using SSMS without writing queries?</p>
<p>Updated:
Simplified the question to the point.</p>
http://stackoverflow.com/questions/1896828/getting-a-boolean-from-a-date-compare-in-t-sql-select0Getting a boolean from a date compare in t-sql selectChris Foot2009-12-13T15:32:00Z2009-12-13T15:38:32Z
<p>I am wondering if something along the lines of the following is possible in ms-sql (2005)</p>
<p>SELECT (expiry < getdate()) AS Expired
FROM MyTable
WHERE (ID = 1)</p>
<p>I basically want to evaluate the date compare to a boolean, is that possible in the select part of the statement?</p>
http://stackoverflow.com/questions/1822685/reporting-services-specify-file-name-in-email-subscription1Reporting Services: Specify File Name in Email SubscriptionQWERTY2009-11-30T21:59:16Z2009-12-13T14:13:51Z
<p>Is there a way to specify a file name for a subscription using the email delivery method in Reporting Services? Unlike the file share delivery method, there does not appear to be a way to do this by default. My department emails many, many, many reports each month and it would be helpful if the file names could be customized for each subscription execution.</p>
http://stackoverflow.com/questions/1871931/cant-change-owner-to-partition-table0can't change owner to partition tablegoldroma2009-12-09T06:19:26Z2009-12-13T08:23:46Z
<p>i got error when i run exec sp_changeobjectowner 'testtable','dbo'
'testtable' table
- Unable to modify table.<br>
The object with name "testtable" already exists.</p>
http://stackoverflow.com/questions/1872688/how-i-can-create-full-index-search-on-multi-column-pk0How i can create full index search on multi column pkgoldroma2009-12-09T09:37:57Z2009-12-13T08:22:39Z
<p>I need create full index search on table with multi columns as pk </p>
http://stackoverflow.com/questions/1873282/sql-server-2005-installation-on-vista-com-error0sql server 2005 installation on vista, COM+ errorgoldroma2009-12-09T11:27:58Z2009-12-13T08:21:01Z
<p>How to Work Around COM+ System Configuration Check Failure in SQL Server Setup?</p>
http://stackoverflow.com/questions/1509561/sql-query-slow-from-net-code-but-not-interactively6SQL query slow from .NET code, but not interactivelyAlexWalker2009-10-02T13:38:51Z2009-12-13T00:56:21Z
<p>We are using an ORM that is executing a call from .NET to SQL Server's sp_executesql stored procedure.</p>
<p>When the stored proc is called from .NET, we receive a timeout exception.</p>
<p>Looking at Profiler, I can see that the query is indeed taking a long time to execute.</p>
<p>The query is essentially:</p>
<pre><code>exec sp_executesql N'SELECT DISTINCT
FROM [OurDatabase].[dbo].[Contract] [LPLA_1] ) [LPA_L1]
LEFT JOIN [OurDatabase].[dbo].[Customer] [LPA_L2] ON [LPA_L2].[Customer_ID]=[LPA_L1].[CustomerId] AND [LPA_L2].[Data]=[LPA_L1].[Data])
WHERE ( ( ( ( ( [LPA_L1].[DealerId] = @DealerId1))
AND ( [LPA_L2].[Last_Name] = @LastName2))))',N'@DealerId1 varchar(18),@LastName2 varchar(25)',@DealerId1='1234',@LastName2='SMITH'
</code></pre>
<p>The confusing part for me is this: If I copy and paste the query that's timing out into SQL Management studio and execute it interactively, it executes just fine.</p>
<p>Does anyone know why the same query would take significantly longer when executed via .NET code? (I'm able to reproduce this -- the query executed from code consistently times out, and the query executed interactively consistently works fine.)</p>
<p>Any help is appreciated. Thanks!</p>
http://stackoverflow.com/questions/1891108/sql-query-to-return-top-x-sequential-descending-rows-by-group-for-a-particular1SQL query to return top X sequential descending rows, by group, for a particular value..unknown (google)2009-12-11T21:53:34Z2009-12-13T00:55:52Z
<p>I need a query to return, by group, a true or false if the most recent x number of sequential rows, in descending date order, have a column with a false value where x can be different for each group.</p>
<p>For example, a Configuration table would have the number of records that have to match sequentially by companyId and serviceId:</p>
<pre>
CompanyId ServiceId NumberOfMatchingSequentialRecords
2 1 3
3 2 2
</pre>
<p>The table to query against, say Logging, might have the following data:</p>
<pre>
CompanyId ServiceId SuccessfulConnect(bit) CreateDate (desc order)
2 1 0 2009-12-09 9:54am
2 1 0 2009-12-09 9:45am
2 1 0 2009-12-09 9:36am
2 1 1 2009-12-08 10:16am
2 1 1 2009-12-07 3:24pm
3 2 0 2009-10-15 8:54am
3 2 1 2009-10-14 5:17pm
3 2 0 2009-10-13 4:32am
3 2 1 2009-10-13 1:19am
</pre>
<p>For the query to match, SuccessfulConnect must have 0/false values for the sequence by group (companyId, serviceId).</p>
<p>The result of the query would then be...</p>
<pre>
CompanyId ServiceId Alert (bit)
2 1 1
3 2 0
</pre>
<p>...because companyId=2, serviceId=1 would return a true as the 3 most recent consecutive records in descending date order, as defined in the Configuration table, all had SuccessfulConnect as false.</p>
<p>However, companyId=3 serviceId=2 would return a false because the 2 most recent consecutive records in descending date order, as defined in the Configuration table, did not both have false.</p>
http://stackoverflow.com/questions/1890923/xpath-to-fetch-sql-xml-value0XPath to fetch SQL XML valuejoerage2009-12-11T21:16:42Z2009-12-11T22:05:29Z
<p>I am looking for a good intro (not a book!) to XPath with SQL Server 2005. Anyone has a link for me?</p>
<p>P.S. I don't really want to learn it (yet), I just want to fix my problem now :) So something with a bunch of examples would be useful.</p>
<p>Thanks.</p>
<p>Edit: Ok. Here is my problem: From the following XML that is within a column, I want to know if the value of a variable with the name 'Enabled' is equal to 'Yes' given a step Id and a component Id.</p>
<pre><code>'<xml>
<box stepId="1">
<components>
<component id="2">
<variables>
<variable id="3" nom="Server" valeur="DEV1" />
<variable id="4" nom="Enabled" valeur="Yes" />
</variables>
</component>
<component id="3">
<variables>
<variable id="3" nom="Server" valeur="DEV1" />
<variable id="4" nom="Enabled" valeur="No" />
</variables>
</component>
</components>
</box>
<box stepId="2">
<components>
<component id="2">
<variables>
<variable id="3" nom="Server" valeur="DEV2" />
<variable id="4" nom="Enabled" valeur="Yes" />
</variables>
</component>
<component id="3">
<variables>
<variable id="3" nom="Server" valeur="DEV2" />
<variable id="4" nom="Enabled" valeur="No" />
</variables>
</component>
</components>
</box>
</xml>'
</code></pre>
http://stackoverflow.com/questions/1836184/are-delimited-identifiers-considered-a-best-practice-in-transact-sql1Are delimited identifiers considered a "best-practice" in Transact-SQL?Travis2009-12-02T22:07:34Z2009-12-11T19:28:04Z
<p>I'm working on some legacy SQL and the author delimited every column name and data type declaration. See the following:</p>
<pre>
CREATE TABLE SomeTable (
[SomeDate] [datetime] NOT NULL,
[SomeInt] [int] NOT NULL,
[SomeString] [nvarchar] NOT NULL
) ON [PRIMARY]
GO
</pre>
<p>Is this considered a best-practice when writing T-SQL for SQL Server? Since I'm now maintaining this code, should I continue the practice?</p>
http://stackoverflow.com/questions/1890015/string-padding-in-tsql1String padding in tsqlpolarbear2k2009-12-11T18:33:14Z2009-12-11T18:39:35Z
<p>I print out a bunch of DDL statements that are dynamically created and want to align the output in a specific way.</p>
<pre><code>PRINT 'ALTER TABLE ' + @TableName + ' WITH NOCHECK ADD CONSTRAINT CK_' + @TableName + '_' + @ColumnName + '_MinimumLength CHECK (LEN(' + @ColumnName + ') > 0)'
</code></pre>
<p>Output:</p>
<pre><code>ALTER TABLE SignType ADD CONSTRAINT CK_SignType_Description_MinimumLength CHECK (LEN(Description) > 0)
ALTER TABLE Person ADD CONSTRAINT CK_Person_Name_MinimumLength CHECK (LEN(Name) > 0)
</code></pre>
<p>What I want the output to be:</p>
<pre><code>ALTER TABLE SignType WITH NOCHECK ADD CONSTRAINT CK_SignType_Description_MinimumLength CHECK (LEN(Description) > 0)
ALTER TABLE Person WITH NOCHECK ADD CONSTRAINT CK_Person_Name_MinimumLength CHECK (LEN(Name) > 0)
</code></pre>
<p>Is there a function that allows me to pad the string by n of character x. I would use it like this:</p>
<pre><code>PRINT 'ALTER TABLE ' + @TableName + PAD(' ', 50 - LEN(@TableName)) + ' WITH NOCHECK ADD CONSTRAINT .....'
</code></pre>
<p>Thanks</p>
http://stackoverflow.com/questions/1504684/sql-turn-dates-of-adding-and-removing-into-date-ranges0sql turn dates of adding and removing into date rangespetebob7962009-10-01T15:35:08Z2009-12-11T18:36:08Z
<p>I am using a timetabling application called CELCAT and trying to pull out some data about when students should have been marked for reporting... This seems to be extremely difficult because of the way the adding and removing of students on registers is structured see below:</p>
<p>studentid eventid fromdatetime addition removal<br/>
25149 25145 2009-09-12 10:30:00.000 Y NULL<br/>
25149 25145 2009-09-12 10:30:00.000 NULL Y<br/>
25149 25145 2009-09-12 10:30:00.000 Y NULL<br/>
25150 23013 2009-09-08 09:00:00.000 Y NULL<br/>
25150 23554 2009-09-07 09:00:00.000 Y NULL<br/>
25150 25145 2009-09-12 10:30:00.000 Y NULL<br/>
25150 25145 2009-07-27 00:00:00.000 NULL Y<br/>
25150 25145 2009-09-12 10:30:00.000 Y NULL<br/>
25150 25145 2009-09-12 10:30:00.000 NULL Y<br/>
25150 25145 2009-09-12 10:30:00.000 Y NULL<br/>
25150 25148 2009-09-12 15:00:00.000 Y NULL<br/>
25151 25145 2009-09-12 10:30:00.000 Y NULL<br/>
25151 25145 2009-10-10 00:00:00.000 NULL Y<br/>
25152 25145 2009-09-19 10:30:00.000 Y NULL<br/>
25152 25145 2009-07-27 00:00:00.000 NULL Y<br/></p>
<p>So an addition of a student means they should be marked from that date onwards in the register (registers are weekly reccurring events with their own week profile, I can handle that side of it though). A removal would mean the student doesn't need to be marked past this date, however a student could potentially be added, removed and then re-added in a later week.</p>
<p>What I think would get me in the right direction would be to get a table of structure</p>
<p>studentid eventid fromdate todate<br>
25149 25145 2009-09-12 10:30:00.000 2009-09-28 10:30:00.000 <br>
25149 25145 2009-10-13 10:30:00.000 2009-10-24 10:30:00.000 </p>
<p>Any ideas how to do this? Or a better suggestion? I imagine it will involve some use of cursors unless someone has an awesome solution. The tables are designed by CELCAT and cannot be modified.</p>
<p>Oh yeah it's sql server 2005.</p>
<p><strong>EDIT</strong> by KM, here is some code to test solutions with:</p>
<pre><code>DECLARE @YourTable table (studentid int
,eventid int
,fromdatetime datetime
,addition char(1)
,removal char(1)
)
SET NOCOUNT ON
INSERT INTO @YourTable VALUES (25149,25145,'2009-09-12 10:30:00.000','Y' ,NULL)
INSERT INTO @YourTable VALUES (25149,25145,'2009-09-12 10:30:00.000', NULL,'Y')
INSERT INTO @YourTable VALUES (25149,25145,'2009-09-12 10:30:00.000','Y' ,NULL)
INSERT INTO @YourTable VALUES (25150,23013,'2009-09-08 09:00:00.000','Y' ,NULL)
INSERT INTO @YourTable VALUES (25150,23554,'2009-09-07 09:00:00.000','Y' ,NULL)
INSERT INTO @YourTable VALUES (25150,25145,'2009-09-12 10:30:00.000','Y' ,NULL)
INSERT INTO @YourTable VALUES (25150,25145,'2009-07-27 00:00:00.000', NULL,'Y')
INSERT INTO @YourTable VALUES (25150,25145,'2009-09-12 10:30:00.000','Y' ,NULL)
INSERT INTO @YourTable VALUES (25150,25145,'2009-09-12 10:30:00.000', NULL,'Y')
INSERT INTO @YourTable VALUES (25150,25145,'2009-09-12 10:30:00.000','Y' ,NULL)
INSERT INTO @YourTable VALUES (25150,25148,'2009-09-12 15:00:00.000','Y' ,NULL)
INSERT INTO @YourTable VALUES (25151,25145,'2009-09-12 10:30:00.000','Y' ,NULL)
INSERT INTO @YourTable VALUES (25151,25145,'2009-10-10 00:00:00.000', NULL,'Y')
INSERT INTO @YourTable VALUES (25152,25145,'2009-09-19 10:30:00.000','Y' ,NULL)
INSERT INTO @YourTable VALUES (25152,25145,'2009-07-27 00:00:00.000', NULL,'Y')
SET NOCOUNT OFF
</code></pre>
http://stackoverflow.com/questions/1040654/how-to-convert-datetime-to-date-only-with-time-set-to-000000-0004How to convert datetime to date only (with time set to 00:00:00.000)Saobi2009-06-24T20:04:33Z2009-12-11T17:42:45Z
<p>I have a string '2009-06-24 09:52:43.000', which I need to insert to a DateTime column of a table.</p>
<p>But I don't care about the time, just want to insert it as 2009-06-24 00:00:00.000</p>
<p>How can I do that in T-SQL?</p>
http://stackoverflow.com/questions/1675378/avoiding-end-of-file-errors0Avoiding 'End Of File' errorsIdealflip2009-11-04T17:25:25Z2009-12-11T17:08:29Z
<p>I'm trying to import a tab delimited file into a table.</p>
<p>The issue is, SOMETIMES, the file will include an awkward record that has two "null values" and causes my program to throw a "unexpected end of file".</p>
<p>For example, each record will have 20 fields. But the last record will have only two fields (two null values), and hence, unexpected EOF.</p>
<p>Currently I'm using a <code>StreamReader</code>. </p>
<p>I've tried counting the lines and telling bcp to stop reading before the "phantom nulls", but <code>StreamReader</code> gets an incorrect count of lines due to the "phantom nulls".</p>
<p>I've tried the following code to get rid of all bogus code (code borrowed off the net). But it just replaces the fields with empty spaces (I'd like the result of no line left behind).</p>
<pre><code>Public Sub RemoveBlankRowsFromCVSFile2(ByVal filepath As String)
If filepath = DBNull.Value.ToString() Or filepath.Length = 0 Then Throw New ArgumentNullException("filepath")
If (File.Exists(filepath) = False) Then Throw New FileNotFoundException("Could not find CSV file.", filepath)
Dim tempFile As String = Path.GetTempFileName()
Using reader As New StreamReader(filepath)
Using writer As New StreamWriter(tempFile)
Dim line As String = Nothing
line = reader.ReadLine()
While Not line Is Nothing
If Not line.Equals(" ") Then writer.WriteLine(line)
line = reader.ReadLine()
End While
End Using
End Using
File.Delete(filepath)
File.Move(tempFile, filepath)
End Sub
</code></pre>
<p>I've tried using SSIS, but it encounters the EOF unexpected error.</p>
<p>What am I doing wrong?</p>
http://stackoverflow.com/questions/1885299/help-needed-in-formatting-organizational-hierarchysql-server-20051Help needed in formatting Organizational Hierarchy(Sql Server 2005)pewned2009-12-11T01:34:00Z2009-12-11T15:33:15Z
<p>Hi,
I am facing a problem. I have some parent / child data
Like</p>
<pre><code>Parent Child
Admin Sarvesh
Admin Shodhan
Sarvesh Ishan
Sarvesh Monish
Shodhan Kinnera
Shodhan Somya
Somya Kartik
Kartik Swapna
</code></pre>
<p>The task is to make a hierarchial report (desired output)</p>
<pre><code>Level Hierarchy
0 Admin
1 Sarvesh
2 Ishan
2 Monish
1 Shodhan
2 Kinnera
2 Somya
3 Kartik
4 Swapna
</code></pre>
<p>So far I am able to make </p>
<pre><code>Level Hierarchy
0 Admin
1 Sarvesh
1 Shodhan
2 Ishan
2 Kinnera
2 Monish
2 Somya
3 Kartik
4 Swapna
</code></pre>
<p>My query goes like this</p>
<pre><code>declare @tbl table(parent varchar(20),child varchar(20))
insert into @tbl
select 'Admin','Sarvesh' union all select 'Admin','Shodhan' union all
select 'Sarvesh','Ishan' union all select 'Sarvesh','Monish' union all
select 'Shodhan','Kinnera' union all select 'Shodhan','Somya' union all
select 'Somya','Kartik' union all select 'Kartik','Swapna'
--select * from @tbl
declare @parent varchar(50)
select @parent = 'Admin'
;with cte as
(
select t1.parent,t1.child ,0 AS [Level], 1 as [Sublevel] from @tbl t1
where t1.parent = @parent
union all
select t1.parent,t1.child ,[Level]+1 , [Sublevel]+1 from @tbl t1
join cte c
on t1.parent = c.child
)
select level , replicate(' ',level) + parent as Hierarchy from cte --parent
union
select Sublevel,replicate(' ',Sublevel) + child as Hierarchy from cte --child ,
order by level
</code></pre>
<p>Note: The level can go to any depth like a typical organizational hierarchy</p>
<p>I am struggling with the formatting part.</p>
<p>Please help</p>
http://stackoverflow.com/questions/1528805/how-do-i-rename-a-table-in-sql-server-compact-edition0How do I rename a table in SQL Server Compact Edition?romkyns2009-10-07T00:06:52Z2009-12-11T15:31:53Z
<p>I've designed my SQL CE tables using the built-in designer in VS2008. I chose the wrong names for a couple. I am now completely stuck trying to find a way to rename them.</p>
<p>I am refusing to believe that such a feature could have been "forgotten". How do I rename an existing table using the VS2008 designer, or a free stand-alone app?</p>
http://stackoverflow.com/questions/1880376/one-t-sql-query-output-to-multiple-record-sets0One T-SQL query output to multiple record setsExscess2009-12-10T11:28:26Z2009-12-11T14:17:00Z
<p>Don't ask for what, but i need two tables from one SQL query.</p>
<p>Like this...</p>
<pre><code>Select Abc, Dgf from A
</code></pre>
<p>and result are two tables</p>
<pre><code>abc
1
1
1
dgf
2
2
2
</code></pre>
<p>More details?
Ok lets try.</p>
<p>Now i have sp like this:</p>
<pre><code> SELECT a.* from ActivityView as a with (nolock)
where a.WorkplaceGuid = @WorkplaceGuid
SELECT b.* from ActivityView as a with (nolock)
left join PersonView as b with (nolock) on a.PersonGuid=b.PersonGuid where a.WorkplaceGuid = @WorkplaceGuid
</code></pre>
<p>It's cool. But execution time about 22 seconds. I do this because in my programm i have classes that automaticly get data from records set. Class Activity and class Person. That why i can't make it in one recordset. Program didn't parse it.</p>
http://stackoverflow.com/questions/44046/truncate-not-round-decimal-places-in-sql-server5Truncate (not round) decimal places in SQL ServerRyan Eastabrook2008-09-04T15:50:41Z2009-12-11T11:11:58Z
<p>I'm trying to determine the best way to truncate or drop extra decimal places in SQL without rounding. For example:</p>
<pre><code>declare @value decimal(18,2)
set @value = 123.456
</code></pre>
<p>This will auto round @Value to be 123.46....which in most cases is good. However, for this project I don't need that. Is there a simple way to truncate the decimals I don't need? I know I can use the left() function and convert back to a decimal...any other ways?</p>
http://stackoverflow.com/questions/1885352/in-tsql-what-is-the-best-way-to-iterate-through-1-child-nodes-of-xml-data-and0In TSQL, what is the best way to iterate through 1..* child nodes of XML data and retreive values?ElHaix2009-12-11T01:50:46Z2009-12-11T07:26:01Z
<p>I have a simple XML structure: </p>
<pre><code><Receipt xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ReceiptID="0" UserID="0" UserCardID="0" PaymentMethodID="1" MerchantID="0" MerchantTaxID="MERCHANT_TAX_ID" MerchantReceiptID="MERCHANT_RECEIPT_ID" MerchantReceiptReferenceID="MERCHANT_RECEIPT_REF_ID" ReceiptTypeID="0" TransactionTypeID="2" MerchantReceiptDate="2009-12-10T18:01:14.2101141-07:00" Tax1PerCent="0" Tax2PerCent="0" Tax3PerCent="0" Tax1Total="0" Tax2Total="0" Tax3Total="0" TotalTax="5" Subtotal="100" ReceiptTotal="105" DateAdded="2009-12-10T18:01:14.2101141-07:00" MerchantStore="MERCHANT_STORE_NAME" StoreAddress1="228127 Long Street" StoreAddress2="" StoreCity="Los Angeles" StoreState="California" StoreZip="90212" StoreCountry="USA" StorePhone1="310-444-3333" StorePhone2="" StoreFax="310-333-2222" ReceiptHeader1="Test Receipt Header 1" ReceiptHeader2="Header 2" ReceiptHeader3="Header 3" ReceiptFooter1="Test Receipt Footer 1" ReceiptFooter2="Footer 2" ReceiptFooter3="Footer 3" ReceiptCreditCost="6" UserPaidForReceipt="false">
<Errors />
<ReceiptItem LineItemID="0" UserID="0" ReceiptID="0" MerchantItemID="111xxxTEST_ITEM_1" LineItemTypeID="1" ItemDesc1="Item 1 - Desc1: This is a test item purchased on a test receipt, line 1" ItemDesc2="Item 1 - Desc2: Item description, line 2" ItemDesc3="Item 1 - Desc3: Item description, line 3" Quantity="1" PricePerItem="50" LineItemTotal="50" DateAdded="2009-12-10T18:01:14.2101141-07:00">
<Errors />
<LineItemType LineItemTypeID="1" LineItemType="Purchase">
<Errors />
</LineItemType>
</ReceiptItem>
<ReceiptItem LineItemID="0" UserID="0" ReceiptID="0" MerchantItemID="111xxxTEST_ITEM_2" LineItemTypeID="1" ItemDesc1="Item 2 - Desc1: This is a test item purchased on a test receipt, line 1" ItemDesc2="Item 2 - Desc2: Item description, line 2" ItemDesc3="Item 2 - Desc3: Item description, line 3" Quantity="1" PricePerItem="25" LineItemTotal="25" DateAdded="2009-12-10T18:01:14.2101141-07:00">
<Errors />
<LineItemType LineItemTypeID="1" LineItemType="Purchase">
<Errors />
</LineItemType>
</ReceiptItem>
.
.
.
</code></pre>
<p>I'm sending the serialized stream to my sproc where I can grab individual values of what I need, like IDs, etc. However I want to iterate through all ReceiptItems, grabbing values and saving them to an ReceiptItems table.</p>
<p>Is there a simple way of creating a while loop to accomplish this?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1885522/tsql-in-sql-2005-query0TSQL in SQL 2005: Querydewacorp.alliances2009-12-11T02:51:41Z2009-12-11T03:34:35Z
<p>Hi there</p>
<p>I have 3 tables: Customer, CustomerTypes, CustomerCustomerTypes. CustomerCustomerTypes is basically is a bridge table between the Customer and CustomerTypes.</p>
<p>Table structure:
Customers:
CustomerID
CustomerName</p>
<p>CustomerTypes:
CustomerTypeID
CusctomerTypeName</p>
<p>CustomerCustomerTypeID
CustomerID
CustomerTypeID</p>
<p>Sample Data:
Customers:</p>
<pre><code>1, ABC
2, CBA
</code></pre>
<p>CustomerTypes:</p>
<pre><code>1, Broadcast
2, Banking
3, Retailer
</code></pre>
<p>CustomerCustomerTypes:</p>
<pre><code>1, 1
2, 2
2, 3
</code></pre>
<p>I want to be able to return query as follow:</p>
<pre><code>ABC; "Broadcasting"
CustomerCustomerTypes; "Banking, Retailer"
</code></pre>
<p>as well as to be able to search that string let say "CustomerTypeID = 2"</p>
<p>It will be ruturned as :</p>
<pre><code>CustomerCustomerTypes; "Banking, Retailer"
</code></pre>
<p>I can do this with cursor type of query BUT i am just wondering maybe there is a better way.</p>
<p>Thanks</p>