Viewing 15 posts - 8,686 through 8,700 (of 9,641 total)
You should also look at your buffer cache, it may be that the data is not in the cache when first run and then it is in cache and it...
May 2, 2008 at 10:17 am
I'd have to agree with Gail on this one. Did you test to see that the Set RowCount was carried to the execution of the dynamic sql?
Also, why use...
May 2, 2008 at 10:12 am
I'll chime in as well that I do not see any issues with the T-SQL code, it should only return 1 row.
May 2, 2008 at 10:04 am
Tom Garth (5/2/2008)
It's nice to see that I'm not the only one who is avoiding doing any real work this morning.TGIF
It is Friday and that is international professional development day,...
May 2, 2008 at 9:54 am
True, but if your domain is compromised you have problems in every area not just SQL Server and while SQL Server holds your data at least you should have backups...
May 2, 2008 at 9:52 am
I'm not sure that there is a good way to write this query. It is hard to determine if there is a way to make it faster as you...
May 2, 2008 at 9:44 am
Danny (5/2/2008)
May 2, 2008 at 9:17 am
Q (5/2/2008)
Jack Corbett (5/2/2008)
May 2, 2008 at 7:41 am
I just figured you would have a months table with the number of days in the month as each of the months mentioned have 31 days. So I would...
May 2, 2008 at 6:11 am
I guess I've never had to manage a really high transaction environment, so I've always allowed autogrow to manage database size. The performance hit was always acceptable to me....
May 2, 2008 at 6:06 am
Attached is a zip file with a datasource and 2 reports. The orders report has the order details as a subreport. The datasource points to adventure works on...
May 1, 2008 at 1:10 pm
Phil,
Your code should look something like this:
[font="Courier New"]SET IDENTITY_INSERT db2.dbo.AccountTypes ON
INSERT INTO db2.AccountTypes
(
id, -- this would be the PK identity field
TYPE,
...
)
SELECT
id,
TYPE,
...
May 1, 2008 at 12:30 pm
How are the column being populated? Somehow the data in ColA is being created without the milliseconds, which tells me at some level it is being used as a...
May 1, 2008 at 11:17 am
Can you attach the rdl file for the report to the thread. Reporting Services can be difficult to explain in a forum without seeing what is being done.
It sounds...
May 1, 2008 at 11:13 am
Sorry you put the post in a SQL Server 2005 forum so I answered with a SQL Server 2005 application. SSMS replaced Enterprise Manager with SQL 2005. You...
May 1, 2008 at 10:03 am
Viewing 15 posts - 8,686 through 8,700 (of 9,641 total)