Viewing 15 posts - 21,466 through 21,480 (of 22,184 total)
Good one. I hadn't thought about looking at the cache.
November 26, 2007 at 8:25 am
You're getting wait states, or contention in your system. For a quick & dirty look at what's happening, query the DMV sys.dm_os_waiting_tasks while the suspended status is going on. That'll...
November 26, 2007 at 8:23 am
Is it "as unvpt"?
I'm not very acquainted at all with the PIVOT & UNPIVOT operators, so that's a guess.
November 26, 2007 at 8:18 am
You can automate the use of SQL Profiler (also called Trace) either by using the correct stored procedures (sp_trace_create is the first of many, look 'em up in the BOL)...
November 26, 2007 at 7:49 am
Actually, SCOPE_IDENTITY should work perfectly well in the way you've described it. Is it possible you're getting insert errors, deadlocks or something, because that would cause bad results from SCOPE_IDENTITY.
November 26, 2007 at 7:21 am
From the description, you did not detach the database prior to removing the files. There are still entries for that database in your master & msdb databases. Trying to reattach...
November 26, 2007 at 7:04 am
We're doing all our new development on 2005, but we haven't even started a plan for upgrading from 2000 because, like you, everything is working fine. Our current assumption is...
November 26, 2007 at 6:58 am
In addition to what everyone else has suggested, I'd also suggest taking the delimited list that you start with and instead of using it to load up a temp table...
November 26, 2007 at 6:50 am
tfifield (11/21/2007)
If there is only 1 front end application doing all of the inserts and deletes, there is no reason to force FK type constraints.
I just have to...
November 22, 2007 at 6:43 am
That is usually seemless. What collation is set on that database?
BTW, if you're data in the database is nvarchar and you use varchar in your parameters or what have you,...
November 21, 2007 at 9:43 am
First thing I noticed is that it looks like you need to add another element here:
NULL AS [Profile!3!EVPersonalFunds!element],
NULL AS [SiteOfActivity!4!siteofactivityname!element],
You want it to be something like this (and of course,...
November 21, 2007 at 7:54 am
That's a great idea and what a service to the community. I'm not a big fan of reinventing the wheel. Having all of that readily available is about as close...
November 21, 2007 at 7:42 am
The basic syntax will work in Oracle, but you can't have the brackets.
November 21, 2007 at 7:29 am
Since I know just how HORRIFIC the XML EXPLICIT statements can be, I shudder to say this, but go ahead and post the query (maybe as an attachment) and someone...
November 21, 2007 at 5:10 am
I don't believe the CREATE TABLE scripts can be made generic, but I could be wrong. As to the INSERT scripts, just be sure you're, for want of a better...
November 21, 2007 at 5:07 am
Viewing 15 posts - 21,466 through 21,480 (of 22,184 total)