Viewing 15 posts - 4,921 through 4,935 (of 5,394 total)
OK, so I guess now I can be Barf.
I'm a mog: half man, half dog. I'm my own best friend!
It's nice to have a best friend.:-D
August 12, 2009 at 1:54 am
Some time ago there was a thread entitled "Should you use your real name as nickname?".
Maybe it's time to start the "Should you use your real pic as avatar?" thread?...
August 11, 2009 at 10:05 am
If you are working on the same phisical machine, you should install a new instance of SQLServer, exactly as you installed the first one. You don't have to uninstall anything:...
August 11, 2009 at 10:01 am
Whats the reason for putting one filter in ON cluase and the other filter in WHERE clause? why not both in ON or both in WHERE?
If you put both...
August 11, 2009 at 9:59 am
Add filter conditions for the main table (TableA) in the WHERE clause, then add filters for TableB in the JOIN conditions.
SELECT *
FROM TableA
LEFT JOIN TableB
ON (TableA.ID1=TableB.ID1 AND TableA.ID2=TableB.ID2 AND TableB.AnotherStat='B'...
August 11, 2009 at 9:01 am
Let's cut the whole thing into two parts:
1) Orphaned user 'qc'
2) Users not logging to databases
For number 1 I still suggest changing db owner. Change it to what it already...
August 11, 2009 at 8:58 am
Yes, you can do it. Nothing prevents you from installing two versions on the same machine.
August 11, 2009 at 7:54 am
Have you tried sp_droprolemember 'db_owner', 'yourAccount'?
An alternative to this is sp_dropalias 'yourAccount', which is deprecated but should still work.
August 11, 2009 at 7:48 am
Run sp_helpdb dbName.
What do you get in the "owner" column?
August 11, 2009 at 7:34 am
Rob Goddard (8/11/2009)
August 11, 2009 at 7:10 am
This is what I get in my US-English instance:
select convert(datetime,'31/12/2009',120) --FAILS
select convert(datetime,'31/12/2009') --FAILS
select convert(datetime,'2009-06-30',120) --WORKS
select convert(datetime,'2009-06-30') --WORKS
SELECT isdate('31/12/2009') -- Returns False
SELECT isdate('2009-06-30') -- Returns True
August 11, 2009 at 7:09 am
Running the provider out of process is exactly what you did: uncheck allow in process.
The main difference is that when SQLServer loads the provider in process, takes the provider inside...
August 11, 2009 at 7:06 am
Check your default language in the server properties, advanced window.
SET LANGUAGE implicitly sets the setting of SET DATEFORMAT.
Regards
Gianluca
August 11, 2009 at 6:45 am
Check who's the database owner.
If it is your 3rd party sw user, run sp_changedbowner to assign to another user.
Hope this helps
Gianluca
August 11, 2009 at 6:41 am
Viewing 15 posts - 4,921 through 4,935 (of 5,394 total)