User Tomas Tintera - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T04:14:21Zhttp://stackoverflow.com/feeds/user/15136http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1406230/sql-aggregrates-without-a-group-by/1406279#14062790Answer by Tomas Tintera for SQL Aggregrates without a GROUP BYTomas Tintera2009-09-10T16:20:35Z2009-09-10T16:20:35Z<p>Use sub-select. </p>
<pre><code>SELECT TASK.*, sums.*
FROM
task left outer join
(
select task.task_id, sum(PROJCOST.act_cost), sum(PROJCOST.target_cost)
FROM
task LEFT OUTER JOIN
projcost ON task.task_id = projcost.task_id
) sums ON task.task_id = sums.task_id
</code></pre>
http://stackoverflow.com/questions/214427/reconciling-a-column-across-two-tables-in-sql-server/216309#2163091Answer by Tomas Tintera for Reconciling a column across two tables in SQL ServerTomas Tintera2008-10-19T11:37:57Z2009-07-20T08:43:18Z<pre><code>UPDATE
DatabaseB.dbo.Table_B
SET
DatabaseB.dbo.Table_B.[Flag] = DatabaseA.dbo.Table_A.Flag
FROM
DatabaseA.dbo.Table_A inner join DatabaseB.dbo.Table_B B
on DatabaseA.dbo.id = DatabaseB.dbo.B.id
</code></pre>
<p>Complication:
For sevaral groups run one such update SQL per group.</p>
<p>Note you can use Flag without []. I'm using the brackets only because of syntax coloring on stackoverflow.</p>
http://stackoverflow.com/questions/138419/sql-compact-select-top-10SQL Compact select top 1Tomas Tintera2008-09-26T09:13:04Z2008-10-21T11:55:33Z
<p>While poring an app from SQL 2005 to SQL Server Compact, I need to port command</p>
<pre><code>SELECT TOP 1 Id FROM tblJob WHERE Holder_Id IS NULL
</code></pre>
<p>But SQL Server Compact does not know the TOP keyword. Any idea how to port such command?
Than you for your answers in advance!</p>
http://stackoverflow.com/questions/138419/sql-compact-select-top-1/218981#2189810Answer by Tomas Tintera for SQL Compact select top 1Tomas Tintera2008-10-20T16:07:44Z2008-10-21T11:55:33Z<p>Well found a reason. Management studio carries and uses it's own version od SQL Server Compact. See more in <a href="http://en.wikipedia.org/wiki/SQL_Server_Compact" rel="nofollow">http://en.wikipedia.org/wiki/SQL_Server_Compact</a>.</p>
<blockquote>
<p>SQL Server Management Studio 2005 can
read and modify CE 3.0 and 3.1
database files (with the latest
service pack), but the SQL Server
Management Studio 2008 from the
"Katmai" 2008 CTP release (or later)
is required to read version 3.5 files.</p>
<p>The RTM of SQL Server Management
Studio 2008 and Microsoft Visual
Studio Express 2008 SP1 can create,
modify and query CE 3.5 SP1 database
files.</p>
</blockquote>
http://stackoverflow.com/questions/138419/sql-compact-select-top-1/218515#2185150Answer by Tomas Tintera for SQL Compact select top 1Tomas Tintera2008-10-20T13:55:50Z2008-10-20T13:55:50Z<p>I have installed Microsoft SQL Server 3.5 SP1 English and when running </p>
<pre><code>SELECT * FROM tblJob
go
SELECT TOP(1) * FROM tblJob
</code></pre>
<p>Running it in Mangement Studio the first query runs ok, second failes with</p>
<pre><code>(1 row(s) affected)
Major Error 0x80040E14, Minor Error 25501
SELECT TOP(1) * FROM tblJob There was an error parsing the query. [ Token line number = 1,Token line offset = 8,Token in error = TOP ]
</code></pre>
http://stackoverflow.com/questions/218300/what-can-a-software-engineer-do-to-cross-train/218329#2183290Answer by Tomas Tintera for What can a software engineer do to cross-train?Tomas Tintera2008-10-20T12:55:36Z2008-10-20T13:16:54Z<p>What Im's learning as cross training is typography. As virtually every programmer is creating UI more or less. One example of what I would expect every CS graduate to know and use today: <a href="http://24ways.org/2006/compose-to-a-vertical-rhythm" rel="nofollow">http://24ways.org/2006/compose-to-a-vertical-rhythm</a></p>
<p>Also programming is communication more today than in past time. So traning for conflict communication or asertivity often helps to an programmer.</p>
http://stackoverflow.com/questions/218335/is-is-possible-to-write-ms-sql-server-add-in/218355#2183550Answer by Tomas Tintera for Is is possible to write MS SQL Server add-in?Tomas Tintera2008-10-20T13:09:15Z2008-10-20T13:09:15Z<p>You can include a lot into MS SQL server 2005 and 2008 database. Including .Net code.
But there is no real way to extend (create plugin for) the Management Studio. (Formerly Enterprise Manager.)</p>
<p>However there are database management addins for Visual Studio (especially in Team System). Maybe there you can implement what you need.</p>
http://stackoverflow.com/questions/138419/sql-compact-select-top-1/216271#2162710Answer by Tomas Tintera for SQL Compact select top 1Tomas Tintera2008-10-19T10:55:14Z2008-10-19T10:55:14Z<p>@Mike Dimmick Thank you. Would be interesting to see a test. Our app is using NHibernate. We use SQL Compact only for non-intall demo CD, so perfomance is not an issue. At least until is not order of magnitude different from Express edition. </p>
<p>The command in query is from initial script to fill up demo data into our DB.</p>
http://stackoverflow.com/questions/216130/sql-server-backup-to-unc/216172#2161721Answer by Tomas Tintera for Sql Server Backup to UNCTomas Tintera2008-10-19T08:32:26Z2008-10-19T08:32:26Z<p>Check the he account SqlAgent is runs on. Usually it system\NetworkService ant it does not have access rights on other computers. </p>
<p>Either give temporarily write rights to everyone on the UNC path or in Control Panel/Services change the account used for SqlAgent.</p>
http://stackoverflow.com/questions/13540/insert-update-stored-proc-on-sql-server/80790#807904Answer by Tomas Tintera for Insert Update stored proc on SQL ServerTomas Tintera2008-09-17T07:26:40Z2008-09-17T07:26:40Z<p>You not only need to run it in transaction, it also needs high isolation level. I fact default isolation level is Read Commited and this code need Serializable. </p>
<pre><code>SET transaction isolation level SERIALIZABLE
BEGIN TRANSACTION Upsert
UPDATE myTable set Col1=@col1, Col2=@col2 where ID=@ID
if @@rowcount = 0
begin
INSERT into myTable (ID, Col1, Col2) values (@ID @col1, @col2)
end
COMMIT TRANSACTION Upsert
</code></pre>
<p>Mayne adding also the @@error check and rollback could be good idea.</p>