Viewing 15 posts - 226 through 240 (of 281 total)
@terry: Yes, using a string parser may be a solution in this case. However I'd rather build such a tool in .NET (C# or VB NET) - since...
March 19, 2009 at 8:07 am
tosscrosby (3/19/2009)
March 19, 2009 at 7:53 am
Since the question didn't mention any details about the isolation level, I assumed that it is the default READ COMMITTED...
March 19, 2009 at 7:37 am
If you query sys.dm_tran_locks you'll see an IX lock taken on the test_tran table.
If you run in the second window SELECT col1 FROM test_tran WHERE col1 = 1 (or...
March 19, 2009 at 5:26 am
What do you mean by "the fact that an object uses the login"?
March 19, 2009 at 4:20 am
Is the login member of the "sysadmin" server role?
March 19, 2009 at 3:45 am
Maybe an "or" instead of the "and" would be more appropriate...
See also http://msdn.microsoft.com/en-us/library/ms189612.aspx
March 19, 2009 at 2:02 am
You can start with reading the BOL section about bcp.
March 19, 2009 at 1:14 am
I think that SQL 2008 offers a feature (the resource governor) that's close to what you want, see
March 18, 2009 at 4:05 am
How can you tell in advance that your users will perform searches using only certain words? Am I missing something?
March 14, 2009 at 10:56 am
Jeff Moden (3/12/2009)
dmoldovan (3/12/2009)
Try also:CONVERT(CHAR(8), GETDATE(), 114)
CONVERT(CHAR(8), GETDATE(), 108)
No... not for the application the OP is going to use and almost never for everything else because both methods are slow...
March 13, 2009 at 3:37 am
Grant Fritchey (3/12/2009)
The default size is based off the model database. Anything structural you do to the model database will be reflected in new databases you create.
Is this true for...
March 12, 2009 at 5:51 am
Try also:
CONVERT(CHAR(8), GETDATE(), 114)
CONVERT(CHAR(8), GETDATE(), 108)
March 12, 2009 at 3:23 am
You can find some info here: http://msdn.microsoft.com/en-us/library/ms178028(SQL.90).aspx - however they are not listing the "default sizes". Try to monitor the system databases sizes after a fresh install.
March 12, 2009 at 2:21 am
If so, things are getting a little more complicated. See
http://msdn.microsoft.com/en-us/library/ms180800(SQL.90).aspx
As far as I know you'll need to grant permissions on the view.
As for the REFERENCES permission - it...
March 11, 2009 at 2:30 pm
Viewing 15 posts - 226 through 240 (of 281 total)