Viewing 15 posts - 1 through 15 (of 15 total)
tstagliano (6/26/2013)
DECLARE
@sqlquery NVARCHAR(MAX),
@finalQuery NVARCHAR(MAX),
@q CHAR(1) = ''''
Try changing this to:
DECLARE
@sqlquery NVARCHAR(MAX),
@finalQuery NVARCHAR(MAX)
DECLARE @q CHAR(1) = ''''
or
DECLARE
@sqlquery NVARCHAR(MAX),
@finalQuery NVARCHAR(MAX),
@q CHAR(1)
SET @q =...
June 26, 2013 at 7:39 am
The trace we ran confirmed that the code that was executing was not what we expected to be executing. Further analysis found (quite shockingly) human/process err.
The check of "Is...
June 25, 2013 at 9:34 am
Lowell (6/24/2013)
is the proc generating a unique key value? a bad join in a SELECT statement could pass the not exists, but ...
June 25, 2013 at 6:52 am
Korn shell? On windows? That's being a glutton for punishment.
August 10, 2007 at 7:53 am
FYI - If you are using app role security with reporting services, you need to use a custom data extension on the reporting server. I've got some sample C#...
July 20, 2007 at 2:04 pm
There is a way to reset permissions (in 2005) sp_unsetapprole. It does take some careful coding to make sure it is always called before returning connections to the app_pool, but it...
July 20, 2007 at 10:04 am
Why would it use the ASP.NET acount for non-local browser connections, and correct windows identity information on local browser connections? The web site is set to not allow anonymous authentication,...
June 13, 2007 at 3:31 pm
I'm not passing in login information. I'm using integrated windows security. (Which worked fine in RS2K in similar scenarios)
June 13, 2007 at 1:18 pm
I tried all the things that you suggested with no improvement.
One new thing I notice is that the log files record the following on each failed attempt to pull a...
June 13, 2007 at 12:14 pm
I'm doing them both because I don't know any better. What is a better solution? Only reorganize? Reorganize daily and reindex once a month?
June 11, 2007 at 2:31 pm
So if C is what the explanation says, why isn't it the correct answer?
May 25, 2007 at 7:15 am
I enjoyed this article a lot, because I happen to be getting ready to present a 2-hour bit to a group of 20 enterprise DBAs on exactly this topic. I...
May 15, 2007 at 8:28 am
This is probably the most ambiguous question I've seen in QOD for a while. It makes the COMPLETELY INACCURATE assumption that a RAID level is always (or even morst of...
April 26, 2007 at 10:40 am
Is Snapshot Isolation turn on in your database? If so, are you actually using it, or did you just turn it on because it is a new feature?
Using Snapshot isolation...
April 10, 2007 at 12:49 pm
Firstly, Microsoft DOES release gobs of high quality code, and has for years. Have you missed the Starter Kits that they have been publishing for years? So, the point...
April 4, 2007 at 8:18 am
Viewing 15 posts - 1 through 15 (of 15 total)