Viewing 15 posts - 6,946 through 6,960 (of 13,469 total)
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...
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.
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...
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...
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...
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...
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?
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...
August 16, 2011 at 5:48 am
i just sat in on a SQLSaturday #79 in Davie(Fort Lauderdale) presentation on how to improve performance in exactly this situation;
the Presenter was Dimitri, and he had a great example...
August 15, 2011 at 2:52 pm
much easier to comprehend...that whole pseudo code to abstract the logic actually made it harder to understand.
the rules you pasted are actually multiple separate and distinct check constraints....all of...
August 15, 2011 at 12:24 pm
http://www.quest.com/litespeed-for-sql-server/
SQL LightSpeed is a third party applicaiton that creates backups for SQL server; it's faster than native backups and also compresses the backups to a smaller size.
you'd have to have...
August 15, 2011 at 10:42 am
zozilany (8/15/2011)
August 15, 2011 at 8:12 am
Sachin Nandanwar (8/14/2011)
Just because you define it as a "Best Practice" and it gives me an overhead in maintenance then surely I am better off in not using those "Best...
August 14, 2011 at 7:56 am
don't you have to explicitly state you are inserting nvarchar? otherwise there is an implicit conversion wich is incserting the question marks
INSERT INTO tblDSV_AttributeChangeDetectionData VALUES (100700,'914225891','JOR','Historical Monument',1,34,N'??????');
August 12, 2011 at 12:34 pm
this may help a little;
this gets all the directories in a given directory.
from there, you can cursor thru to build what i had hard coded to 4 specific directories:
--some variables
declare...
August 12, 2011 at 9:09 am
Viewing 15 posts - 6,946 through 6,960 (of 13,469 total)