Viewing 15 posts - 2,656 through 2,670 (of 5,103 total)
I was going to propose to simply add a final step to each job with sp_start_job "nextJob". But if you can't modify it then polling is the only thing I...
September 23, 2005 at 1:28 pm
I am against using system tables for those purposes. Creating jobs dynamically and then firing them is not only expensive in resources but also a misuse IN MY OPINION of...
September 23, 2005 at 1:03 pm
September 22, 2005 at 10:14 am
Title of the article is not appropriate. How does this fixes sysdepends again?
[Edit] : Oops I see Remi already mentioned ![]()
September 22, 2005 at 9:56 am
you can use sp_foreachView of this site and summit the sp_refreshview as the command. Then schedule it as a job.
Let me remind you that what you are doing is not a...
September 22, 2005 at 9:16 am
Yes! Take a look at
GROUPING ( column_name )
in BOL.
Is exactly what you need to either Filter them out or simply change that Null for 'TOTAL' or ALL
September 21, 2005 at 2:47 pm
Ok,
First I am hoping that whe you said that you had a row that is a date you actually meant a column ![]()
assuming that,...
September 21, 2005 at 12:44 pm
Not sure exactly how are you sending the feedback but if you are using connections accross the athlantic you are most definitely crossing Firewalls and port numbers also play a role. It...
September 21, 2005 at 10:56 am
after you modify a view you need to run sp_refreshview ![]()
September 21, 2005 at 10:46 am
September 21, 2005 at 10:30 am
DECLARE @TableName VarChar(50)
SET @TableName = 'OEOHdr'
CREATE Table #Columns
(
ColumnName VarChar(50)
, ActDataLength Int
INSERT INTO #Columns (ColumnName)
SELECT a.Name 'ColumnName'
FROM INFORMATION_SCHEMA.COLUMNS Where TABLE NAME = @TableName
DECLARE @sqltext...
September 21, 2005 at 10:15 am
OK These are my assumptions
1. Updates are not affecting large amount of rows!
2. Xp can actually be an independent application ( or service )
On the trigger you build the...
September 21, 2005 at 9:59 am
You are mixing two join styles you need to stick to one!
not sure exactly what are you trying to get but you can try:
select IU.IUraysAmount, AdminNetwork.IONetworkName as AdminNetwork,
YU.YUNetworkName as ClientNetwork,
ZX.ZXnameLast...
September 21, 2005 at 9:14 am
On the update trigger you are using IF UPDATE([Amount]):
But this statement
UPDATE TableName SET
Dollars = 100
WHERE [ID] = 714199
Updates Dollar not Amount therefore nothing happens
On...
September 21, 2005 at 9:05 am
Viewing 15 posts - 2,656 through 2,670 (of 5,103 total)