Viewing 15 posts - 1 through 15 (of 50 total)
What is an example of where the same values are being seen as different? I'm running examples where the comparisons (nchar to char) always succeed.
(Do you rather mean like where...
December 9, 2009 at 9:09 am
What error messages are you getting when you try to start SQL?
Look for the file “Errorlog,” which SQL generates. It may be in the default path, something like C:\Program Files\Microsoft...
October 14, 2009 at 8:07 am
Thank you all for your help. I can't redesign the table structures, at least at this time, but I can tweak the indexes. You've helped me know what to weigh...
July 2, 2009 at 2:36 pm
I really appreciate your insight and help.
I'm guess I'm wondering what I get in exchange for declaring a primary key (in my peculiar setting).
On the con side,
(1) Slowdown...
July 2, 2009 at 12:09 pm
Hmm. Now, there IS a function in the where clause ("where statusID = dbo.GetIdfromEnum(1)", which hits a table with 6 rows). Hard-coding the GUID I'm looking for makes the query...
May 18, 2009 at 1:23 pm
The sproc was designed to return a relative handful of new records. I knew SQL prefered indexes that tended toward unique, but I was surprised that it would throw out...
May 18, 2009 at 12:42 pm
Running this little query in management studio can tell you what statements (including itself) are being processed at the moment.
SELECT a.session_id, c.dbid,
SUBSTRING(c.text, (a.statement_start_offset/2)+1,
...
March 19, 2009 at 2:47 pm
MJ,
Thank you for your response, and for posting the MS website. I was having trouble finding it again. That may be all that is left to us.
I had seen...
February 3, 2009 at 3:31 pm
You didn't specify what editions you're upgrading from/to, but just in case (or for others in a similar boat)...
The database property "auto_close" is defaulted to true for the free versions...
January 22, 2009 at 7:05 am
Let me see if I understand your questions. You want to connect to a SQL instance from another machine. One instance ("MSSQLSERVER") will not start, and another ("SCSF\SQLExpress") cannot be...
January 12, 2009 at 7:39 am
BPA appears to stand for SQL "Best Practices Analyzer." I'm not sure why it's giving you grief, but here are some thoughts.
1. Logs
1a. Is...
November 6, 2008 at 7:24 am
Argh! In my code, the
COUNT(SELECT CASE WHEN
should have read
SUM(CASE WHEN
'Sorry -- too hurried.
November 4, 2008 at 11:56 am
The parenthesis right after the last outer join looks reversed, and the final parenthesis is missing.
Maybe you could accomplish this without the sub Qs and joins with
SELECT DISTINCT
...
November 4, 2008 at 7:48 am
Sure 'nuf, the browser was the difference. Thank you all for your help.
I'll be studying to get a better understanding of how the ports are used between instances as well....
November 3, 2008 at 6:44 am
Microsoft says their independent SP2 upgrade is good for all SQL 2005 except Express (http://www.microsoft.com/downloads/details.aspx?FamilyID=D07219B2-1E23-49C8-8F0C-63FA18F26D3A&displaylang=en). There it reads,
Note: To upgrade SQL Server 2005 Express Edition, obtain the SP2 version...
October 31, 2008 at 6:40 am
Viewing 15 posts - 1 through 15 (of 50 total)