Viewing 15 posts - 5,236 through 5,250 (of 9,643 total)
Do you have any groups in the Report? What is the data type of the column?
April 28, 2009 at 7:10 am
Check out this article[/url] and the follow-up[/url] on Pivoting. I believe the first article will address your situation.
April 28, 2009 at 7:07 am
Unfortunately because the way that SQL Server tracks dependencies sp_depends and the sysdepends table are not always accurate. Mainly because of situations like you describe, and also because SQL...
April 28, 2009 at 7:05 am
This is possibly not the best solution, but it will work:
1. Get the necessary information (Name, email address) of the people who have birthday that day.
2. Loop through...
April 28, 2009 at 6:52 am
You have a couple of options:
1. Use a staging table in SQL Server and after loading the staging use T-SQL to do an Update Where Exists and an Insert...
April 28, 2009 at 6:47 am
Jaime,
As John said, triggers in SQL Server fire once per batch, so if your batch updates 1 row or 1 million rows the trigger fires only once. Try reading...
April 28, 2009 at 6:37 am
In SQL Server you need to explicitly insert new rows. So in your case I'd do it like this:
UPDATE Pastforecast
SET PastForecast.Noun = pastforecast_Append1.noun,
PastForecast.dDate = pastforecast_append1.fcstdate,
PastForecast.Fcst =...
April 28, 2009 at 6:14 am
Jacob Sebastian wrote an excellent series on XML for SSC and later articles discuss generating an RSS Feed. I would start with his XML Workshop
April 28, 2009 at 6:09 am
Are there any errors in the SQL Error Log? Any other errors in the Windows event log right around this error?
April 28, 2009 at 6:05 am
Bruce W Cassidy (4/27/2009)
Jack Corbett (4/27/2009)
April 27, 2009 at 5:41 pm
DC (4/27/2009)
April 27, 2009 at 4:04 pm
Thanks Lynn. That at least explains why the code is mixed.
twdavis,
Okay, I'm trying to understand your issue. I'm not sure what you are trying to gain from...
April 27, 2009 at 3:55 pm
You can' get a seek without any criteria (Where clause). It has nothing to seek on, it has to scan each row.
April 27, 2009 at 2:54 pm
If I understand you correctly, which I'm not sure I do, I think this query will work:
SELECT DISTINCT
A.BUSINESS_UNIT,
A.LOAD_ID,
A.TMS_EXT_REF_ID,
...
April 27, 2009 at 2:47 pm
Peter,
Try this:
UPDATE s
SET s.ProdTableSuffix = ISNULL((SELECT
...
April 27, 2009 at 2:38 pm
Viewing 15 posts - 5,236 through 5,250 (of 9,643 total)