Viewing 15 posts - 4,051 through 4,065 (of 5,394 total)
Look into INFORMATION_SCHEMA views: they hold information on the whole database structure.
June 29, 2010 at 1:47 am
Duplicate post.
Replies here please: http://www.sqlservercentral.com/Forums/FindPost944341.aspx
June 29, 2010 at 1:46 am
It does, if each user authenticates with his own credentials on the database.
You could also have different scenarios, with an application that requires windows authentication fo the users but doesn't...
June 29, 2010 at 1:41 am
I'm not sure I understand what you mean, but they look like the logical file names, associated with a physical file. You don't have two data files and two log...
June 29, 2010 at 1:37 am
ORIGINAL_LOGIN() should be what you're after, but be careful: it could be different from what you expect, depending on how you authenticate the users in your application.
June 29, 2010 at 1:31 am
Your sample data and required output is quite hard to read.
Can you make it more readable?
Take a look at the article linked in my signature and find out how.
June 28, 2010 at 10:49 am
I would do it this way:
select
KEY
, SUM( case WHEN col1 IS NULL THEN 1 else 0 end) AS 'nullcnt'
, SUM( case...
June 28, 2010 at 8:21 am
Gail, I found the perfect present for your birthday!!!
June 28, 2010 at 8:11 am
create table #t
(
i int
)
insert into #t(i)
values (null)
SELECT CASE WHEN i IS NULL THEN 'Is Null' -- This will never be returned
...
June 28, 2010 at 8:04 am
Download and install process monitor.
Start it and set up a filter on process name = sqlbrowser.exe
Start sql browser: you should see it struggling to start and some kind of...
June 28, 2010 at 7:35 am
Is it a 64 bit installation on 32?
Have you checked the registry?
You could try to trace the sqlbrowser.exe process with process monitor and see where it stops.
June 28, 2010 at 7:21 am
You can't go at trigger level, you'll have to set the permissions at table level.
June 28, 2010 at 6:15 am
Viewing 15 posts - 4,051 through 4,065 (of 5,394 total)