Viewing 15 posts - 3,811 through 3,825 (of 6,486 total)
Or - design a SSIS package which will accept a dynamic parameter. As described here:
http://www.mssqltips.com/tip.asp?tip=1395
I use this in conjunction with very simplistic VB form apps, so that you can...
April 3, 2008 at 11:29 am
Keep in mind that the different placement would create altogether different query results in an OUTER JOIN scenario.
April 3, 2008 at 11:19 am
Jon Heck (4/2/2008)
April 3, 2008 at 11:15 am
peter.anderson (4/3/2008)
We have a system that generates automatic letters for clients, with an entry in the database for each letter, with a unique letter ID - the PK (not an...
April 3, 2008 at 11:04 am
Lynn Pettis (4/3/2008)
April 3, 2008 at 10:54 am
ramadesai108 (4/3/2008)
Like I wrote earlier, if I fill the primary key column in the grid and then click on row above of below the current row...
April 3, 2008 at 10:43 am
Lynn Pettis (4/3/2008)
April 3, 2008 at 10:29 am
ALZDBA (4/3/2008)
Your sqlserver instance is at risk !
Check my reply on Jeff's article "Solving the "Running Total" &...
April 3, 2008 at 9:52 am
delta dirac (4/3/2008)
but ,,,, as an advanced database file (the sql i mean) was it too hard to protect it like a box or...
April 3, 2008 at 9:17 am
Nick123 (4/3/2008)
Please let me clear my existing set up and further requirements.
1.Sorry I have SQL server 2005 standard edition not Enterprise edition.
2.Our currenct production server have 4 processors.
3.Other server where...
April 3, 2008 at 9:11 am
Also - just to avoid recursive trigger calls - (stealing Andras' code)
CREATE TRIGGER [dbo].[Trigger_tbl_Process_Constants] ON dbo.tbl_Process_Constants
FOR UPDATE
AS
BEGIN
IF not(update(Date_Modified))
...
April 3, 2008 at 9:02 am
meaning....
update tableA
Set colA=Summary.Total
from TableA
inner join (select grpID, sum(amount) Total from TableB group by Grpid) Summary
where
TableA.ID=Summary.GrpID
...
April 3, 2008 at 8:45 am
Your aggregate calculation will need to be a separate sub-query. The aggregation operation itself can't be visible at the top level, or the data set will not be updateable...
April 3, 2008 at 8:37 am
Jeff Moden (4/3/2008)
April 3, 2008 at 8:26 am
That might be an interesting challenge. Unless my memory is failing me - prior to SP2, Reporting services was a premium feature (meaning - you had to pay for...
April 3, 2008 at 8:22 am
Viewing 15 posts - 3,811 through 3,825 (of 6,486 total)