4
votes
Insert Update stored proc on SQL Server
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.
SET transaction iso …
1
vote
Sql Server Backup to UNC
Check the he account SqlAgent is runs on. Usually it system\NetworkService ant it does not have access rights on other computers.
Either give temporarily write rights to everyone on the UN …
1
vote
Reconciling a column across two tables in SQL Server
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 = Da …
0
votes
Is is possible to write MS SQL Server add-in?
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.) …
0
votes
SQL Aggregrates without a GROUP BY
Use sub-select.
SELECT TASK.*, sums.*
FROM
task left outer join
(
select task.task_id, sum(PROJCOST.act_cost), sum(PROJCOST.target_cost)
FROM
task LEFT OUTER JOI …
