Viewing 15 posts - 4,891 through 4,905 (of 9,643 total)
I don't know of a way to "cache" parameters for use by multiple reports when navigating through the RS interface. The only way would be to setup defaults for...
June 5, 2009 at 5:32 am
I would agree with twillcomp. The application si probably using @@IDENTITY. I'd drop the identity column from the status changes table.
Does adding a trigger to the application's database...
June 4, 2009 at 10:48 am
Lynn's solution will work, is simpler, and doesn't need an arbitrary number. The only issue is that some UI's don't like the warning so you need to SET ANSI_WARNINGS...
June 4, 2009 at 10:45 am
Typically a string split using a numbers/Tally table or CTE will outperform a while loop. For a small list a while loop is probably okay. Here is the...
June 4, 2009 at 10:39 am
Are these subreports or reports you have to navigate to through the report server interface?
June 4, 2009 at 10:22 am
Any error messages in the database mail log? Where are putting the non-existent account, E-Mail Address or Reply e-mail? I have tested this at my shop and it...
June 4, 2009 at 10:17 am
Something like this works:
Declare @stocks TABLE([dAte] SMALLDATETIME, [nAme] CHAR(1), Buy INT, sell INT)
INSERT INTO @stocks (
dAte,
[nAme],
Buy,
sell
)
SELECT
'1-1-2008', 'A', 1, 4
UNION ALL
SELECT
'1-1-2008', 'A',...
June 4, 2009 at 10:07 am
I would define Optimization as jobs that reorganize/rebuild indexes and update statistics.
Integrity Jobs verify that the data on disk is not corrupt. For Integrity things you should read Paul...
June 4, 2009 at 9:50 am
I can't duplicate your error, of course I don't have a 1GB file either. I have included all the columns mentioned in the 2000 KB error and have multiple...
June 4, 2009 at 9:47 am
FreeHansje (6/3/2009)
EDIT: Found another way, but I am still curious why this does not work with a Profiler generated TRC.
What's the other way you found?
June 4, 2009 at 8:40 am
I found 2 bugs listed for fn_trace_gettable in SQL Server 2000. This one was fixed in SP3. This one does not have a fix listed.
I have not found...
June 4, 2009 at 8:38 am
I think this will work:
IF OBJECT_ID('dbo.Table1') IS NOT NULL
DROP TABLE table1
IF OBJECT_ID('dbo.Table2') IS NOT NULL
DROP TABLE table2
...
June 3, 2009 at 3:23 pm
I'm going to have to agree with GSquared on this one. This definitely does not belong in a trigger and as Gail said the trigger runs on the server so...
June 3, 2009 at 9:39 am
Gus and Gail have both been to this one, but I had to put it here. I'd like to know what resources he has read on triggers.
June 3, 2009 at 9:36 am
You can issue the command Set Identity_Insert [TableName] On before you start the insert and then Set Identity_Insert [TableName] Off when you are done.
Yes, nulls will cause a problem because...
June 3, 2009 at 9:21 am
Viewing 15 posts - 4,891 through 4,905 (of 9,643 total)