Viewing 15 posts - 8,986 through 9,000 (of 13,469 total)
this seems to do what you want...i'm doing an order by on the username, and then the username with case sensitive collation:
the desision to order by the second as DESC...
August 4, 2010 at 6:18 am
here's the visual results of my current query for reference: my expectation is that for AREAID 1887, the "buidlingindex" should be all "1", and the apartmentindex increments as seen below.
ID...
August 3, 2010 at 7:19 am
not an expert here by any means, but i think "NetAPP SnapManager ", and what it is doing behind the scenes is more than jsut a SQL Server Enterpise Snapshot;...
August 2, 2010 at 12:18 pm
go to the scripting options and check "script indexes" "script "triggers" and anything else you might need scripted,a nds simply rerun the process.

July 30, 2010 at 7:36 am
in SQL Server Management Studio, have you tried right clicking on the table and selecting "Script Table As ..."
Then you can rename the table and the constraints that are part...
July 29, 2010 at 9:56 am
windows login methods are never disabled...but a domain login might not work yet, is that what you mean?
can you right click on the link to SSMS and choose Run As......
July 29, 2010 at 6:20 am
in that case, look at this article, which shows how to audit access to the databases with a server side trace:
http://www.sqlservercentral.com/articles/Administration/trace/872/
once that is in place, you can insert the results...
July 28, 2010 at 11:07 am
rather than tracking where the inapproprate acces sis coming from, you could change the passwords for those two users, or maybe use a logon trigger to prevent access for those...
July 28, 2010 at 10:54 am
i believe when you google as instructed above,you'll finds posts referencing how when you connect via the Dedicated Admin Connection(DAC), everything is decrypted for you, so you could script...
July 28, 2010 at 9:25 am
your table dbo.deleted_table, has an identity column in it, don't stick a value in it .
actually name each and every column that SHOULD receive a value from the insert instead.
INSERT...
July 28, 2010 at 7:35 am
well, obviously it would be betrter to redesign the proc so it can run concurrently, but that's a future enhancement.
I think you are right, you'll have to use some sort...
July 28, 2010 at 7:22 am
ipconfig will return information about the SERVER's NIC card...it would not have any information about the connecting users. that code might seem to work if your SQL server is also...
July 28, 2010 at 6:45 am
you have to use the EXECUTE AT [LinkedServerName] syntax to do that; 4 part names are DML only, so you cna insert/update/delete to a 4 part named object like MyLinkedServer.DatabaseName.Schema.Table,...
July 27, 2010 at 10:02 am
this will give you the trigger name and the definition for everything in a given database:
--SQL 2000:
select
sysobjects.name,
syscomments.text
from syscomments
inner join sysobjects on...
July 27, 2010 at 7:53 am
probably the easiest way is to to set it to single_user:
alter database emptyexample set single_user with rollback immediate
drop database emptyexample
July 27, 2010 at 6:04 am
Viewing 15 posts - 8,986 through 9,000 (of 13,469 total)