Viewing 13 posts - 1 through 13 (of 13 total)
A good article:
October 25, 2006 at 5:15 am
Object_ID not indicative of order of creation (sorry I changed names, but you might get the gist):-
SET NOCOUNT ON
DECLARE
@Objects INT
,@Built INT
,@CurrentObject INT
,@LastUnbuiltObject INT
,@Build CHAR(1)
IF OBJECT_ID('Tempdb.dbo.#Objects') IS NOT NULL
DROP TABLE...
October 19, 2006 at 7:45 am
This should give you your problem entries in Notes:
SELECT
n.Customer_ID
FROM
Notes n
LEFT JOIN Customer c
ON n.Customer_Id = c.Customer_Id
WHERE
c.Customer_Id IS NULL
September 26, 2006 at 4:42 am
Ok, in msdb we have dbo.sysjobs (not sys.jobs) but we do not have sys.jobactivity (nor dbo.sysjobactivity). Can you explain where this is located. It sounds like it has the information...
August 25, 2006 at 8:39 am
Sounds like your ODBC driver is not accessed through a system DSN. If you have access to your ODBC Data Source Administrator (Admin Tools), set the DSN as a System DSN...
July 6, 2006 at 6:19 am
Duh!
Can everyone ignore this as I find the answer lies with Dynamic Properties Task. Thanks for looking.
June 21, 2006 at 9:03 am
I pass exactly the same parameter values in the debugger.
Also, if I try in QA
DECLARE @strMessage varchar(255), @strResult varchar(2)
EXEC @strResult = dbo.upCheckSessionExists 2, '30 xxx 2004', @strMessage OUTPUT -- Date...
February 5, 2005 at 1:41 am
Try entering RSExecutionLog in Google or just go direct to here:-http://msdn.microsoft.com/library/default.asp?url=/library/en-us/rsadmin/htm/arp_rslogfiles_v1_88gy.asp
This is a tool that comes with Reporting Services, which basically provides various reports on itself. Very good indeed.
December 1, 2004 at 1:51 am
Sorry, result of DBCC CHECKDB was:-
CHECKDB found 0 allocation errors and 0 consistency errors in database.
July 29, 2003 at 10:13 am
I have SP3 installed. Looking at the knowledgebase article, I think the problem fix is for data modification in tables with indexed views on them. My problem is purely a...
July 28, 2003 at 10:47 am
Yes, it's better to have data residing in cache, but when we need to read/write.....
I guess ultimately it comes down to how often and in what size chunks the dB...
July 17, 2003 at 2:02 am
Can only give you the pass mark for 070-228, can't remember how many questions there were for sure, but the pass mark is 755 (out of 1000). Hope this helps.
June 13, 2003 at 2:08 am
For what it's worth, just throw this one in - I have just installed RC 2 of .NET Server Enterprise Edition, and although it isn't production, I have developer edition...
April 24, 2003 at 1:47 am
Viewing 13 posts - 1 through 13 (of 13 total)