Viewing 15 posts - 6,931 through 6,945 (of 13,460 total)
sounds like security: remember in SQL 2008, or whenever installed on win7/server2003 and above, local admins on a box are no longer admins in SQL.
connect as sa, add your...
Lowell
August 17, 2011 at 12:17 pm
if the application is logging in with a SQL login, you cannot get the NT user information.
Going forward, you'd have to change the application to start passing thru the NT...
Lowell
August 17, 2011 at 11:09 am
a server side trace typically has no performance impact, unless you create a trace that is logging everything; every column and every event would probably be a bad idea.
I'm in...
Lowell
August 17, 2011 at 7:43 am
msdb has some tables which contain the errors and their details.
i create a view to make them eaiser to access, i think this might help you.
i get errors like this:
...
Lowell
August 17, 2011 at 5:50 am
jamesnt (8/16/2011)
We have an issue where after data entry, certain fields need to be verified. I was hoping to create a SSIS package that end users could...
Lowell
August 16, 2011 at 2:01 pm
a foreign key always prevents truncation.
to do the same thing it requires two separate steps.
instead you have to delete, and then maybe reseed the identity
DELETE FROM MyTable
DBCC CHECKIDENT( [MyTable],RESEED,1) --reset...
Lowell
August 16, 2011 at 1:47 pm
no...SELECT * FROM sys.objects selected from the current database.
sp_msForEachDB 'select
''?'' as DbName,
name
,object_id from ?.sys.objects
where object_id = 2073058421 '
would show you all the objects that , buy...
Lowell
August 16, 2011 at 1:05 pm
Vicki I'm pretty sure the issue is that the same object_id exists in multiple databases....
that view returns multiple database results, not just results from a single database.
change that query to...
Lowell
August 16, 2011 at 12:54 pm
i think what you want is a schedule job that runs every day.
that job updates rows meeting your criteria for being delinquent.
Lowell
August 16, 2011 at 12:03 pm
when i read this requirement:
If InformationRestricted is True,
InformationNotRestricted cannot be true
and InformationRestrictedFromLevel1,
InformationRestrictedFromLevel2,
InformationRestrictedFromLevel3,
InformationRestrictedFromLevel4,
InformationRestrictedFromLevel5 cannot be true
i see that as saying a suite of constraints like...
Lowell
August 16, 2011 at 11:35 am
that post from Paul exactly encapsulates that portion of his presentation Chris, yes.
» Dmitri Korotkevitch's web site, now...
Lowell
August 16, 2011 at 9:13 am
Danzz (8/16/2011)
when I try to add it throws an error.
Msg 4901, Level 16, State 1, Line 1
ALTER TABLE only...
Lowell
August 16, 2011 at 8:40 am
I googled and didn't find anything definitive that said you had to upgrade to SP4 prior to upgrading to 2008...where did you see that?
my recommendation would be only if it...
Lowell
August 16, 2011 at 6:02 am
Gail, would disconnecting every connection, as an attempt to clear whatever is blocking that rollback, be helpful at all?
Lowell
August 16, 2011 at 5:57 am
you'd need to call a either a third party dll like we used to have to in SQL2000 (via cmdshell and sp_oaCreate)
I used to use a dll from AspEmail a...
Lowell
August 16, 2011 at 5:48 am
Viewing 15 posts - 6,931 through 6,945 (of 13,460 total)