Viewing 15 posts - 7,591 through 7,605 (of 7,635 total)
I like to keep an idle SA or SysAdmin session open.
If things seem like they are locking up, try
Select * from master..sysprocesses with (NoLock)
and work out...
March 10, 2008 at 5:16 pm
Oops! I just remembered...
A known limitation of CREATE LOGIN is that the login name has to be a literal.
Thus, you will have to use dynamic SQL to parametize...
March 10, 2008 at 5:08 pm
geedeearr (3/10/2008)
This should be simple but I seem to be playing with my mental blocks today. In the following Create Procedure I receive an "Incorrect syntax near '@NewPassword" referring...
March 10, 2008 at 5:04 pm
molecule_kaab (3/10/2008)
Actually I want to keep track for security and navigation
I want the admin can tell who do what transaction and
he can find that it's possible that the...
March 10, 2008 at 2:46 pm
Loner (2/7/2008)
March 10, 2008 at 1:09 pm
RonKyle (3/10/2008)
I suppose that for some downloads there would be no change to the dimension tables, but I haven't had that experience. There are always new dimension facts to...
March 10, 2008 at 1:07 pm
As Robert said look at the query plan(s). Specifically, you want to compare the query plans that work to the one that does not work.
Let us know the results,...
March 10, 2008 at 12:34 pm
Markus2006 (3/10/2008)
1. One of the tables that...
March 10, 2008 at 12:28 pm
swlakshmi (3/9/2008)
March 9, 2008 at 11:09 pm
Chuck Bevitt (2/7/2008)
March 9, 2008 at 10:56 pm
By far the most important tip on Cursors is: Avoid them as though they were leprosy.
March 9, 2008 at 10:46 pm
I don't think that you get this capability until SQL 2005.
March 9, 2008 at 9:00 pm
All of the answers offered are incorrect.
The correct answer is
Use Database.ExecuteWithResults method to run the query SELECT create_date FROM SYS.Tables
March 9, 2008 at 8:45 pm
Viewing 15 posts - 7,591 through 7,605 (of 7,635 total)