Viewing 15 posts - 38,401 through 38,415 (of 49,571 total)
Paul White (6/17/2009)
June 17, 2009 at 7:31 am
Paul White (6/17/2009)
GilaMonster (6/17/2009)
In all cases that have been observed.Maybe not 😉
Weren't you the one who said earlier in this thread that you'd never seen an update that didn't work...
June 17, 2009 at 7:28 am
Florian Reischl (6/17/2009)
Just tried on SQL Server 2000. ESCAPE works fine 😉
I was going to say...
I know I've used ESCAPE on SQL 2000 before...
http://msdn.microsoft.com/en-us/library/aa933232(SQL.80).aspx
LIKE:
Syntax
match_expression [ NOT ] LIKE pattern...
June 17, 2009 at 7:25 am
Poor performance. Generally that kind of query does not use indexes effectively and often does table scans. On small tables that aren't used too often that won't be a major...
June 17, 2009 at 1:33 am
If you want the underscores to be treated as literals rather than wildcards, you need to escape them.
SELECT class_code FROM tbl_class WHERE class_code LIKE 'ep/_f/_%' ESCAPE '/'
June 17, 2009 at 1:26 am
Interesting.
I'm doing M.Sc at the moment and my study fees are R7000 per year. That's Masters by dissertation, so no course work involved.
June 17, 2009 at 1:12 am
Jeff Moden (6/16/2009)
Now, if we could just get them to say that UPDATEs always work in clustered index order... 😛
They won't. The unofficial word from one of the guys who...
June 17, 2009 at 1:11 am
Just a couple things with that.
It's likely to perform badly. Take a look at the blog post I referenced earlier. Also, before you use nolock, read this: http://sqlblog.com/blogs/andrew_kelly/archive/2009/04/10/how-dirty-are-your-reads.aspx
June 17, 2009 at 1:08 am
Jeffrey Williams (6/16/2009)
GilaMonster (6/13/2009)
And the quote button from time to time.
Interesting you say that cause I have seen it a couple of times now. I think I have it...
June 17, 2009 at 1:07 am
GilaMonster (6/16/2009)
Roy Ernest (6/16/2009)
Gail, I think it will be Sri Lanka that is going to take it. SA has no clue how to play spinners.. 🙂
Ooohhh... You're asking for...
June 16, 2009 at 1:45 pm
Oh dear, this one's not going to be pretty....
http://www.sqlservercentral.com/Forums/Topic735954-357-1.aspx
Suspect DB, and a very new 'DBA'
June 16, 2009 at 1:38 pm
In management studio open Object Explorer. Management - SQL Server Logs.
If there's a senior DBA there get him involved. Suspect database are serious issues. If not, consider calling MS's customer...
June 16, 2009 at 1:33 pm
Is the D drive still accessible?
Is the .mdf file where SQL expects it to be? (D:\programfiels\michrosoft sql server\mssql\data\tiger_data.mdf)
Does the SQL Server service account have full rights (read and write) to...
June 16, 2009 at 1:18 pm
How to recover depends completely on what's actually wrong. Check the SQL error log, there should be error messages indiating why the database is suspect. Check those messages, post them...
June 16, 2009 at 1:14 pm
Viewing 15 posts - 38,401 through 38,415 (of 49,571 total)