Viewing 15 posts - 5,401 through 5,415 (of 6,105 total)
The first one I gave exists at my database level. It's a Windows collation... so it's based on what is available for the OS.
If you go to Start |...
June 13, 2002 at 4:12 pm
Yes. Programmatically you can do this within the application, with it taking care of the NT authentication. Are you wanting to prompt them for a username and password...
June 13, 2002 at 4:09 pm
I did a quick search on the web but didn't turn up anything. I'll keep looking. However, this may be a case where you need to get in...
June 13, 2002 at 3:24 pm
If you are installing it and setting it for the server, select Collation designator (this is using the Windows collations) as opposed to SQL Collations. Choose Latin1_General and check...
June 13, 2002 at 3:12 pm
If you do a DROP PROC and CREATE PROC , you'll lose any security settings. Therefore, you'll have to also redo the GRANT EXECUTE and DENY EXECUTE. If...
June 13, 2002 at 2:27 pm
Maybe Latin1_General_CS_AI?
Latin1 is for Western European, and if I am understanding the nomenclature right on that abbreviation, CS = Case Sensitive and AI = Accent Insensitive.
K. Brian Kelley
June 13, 2002 at 1:41 pm
It does work, but you have to enclose the owner and name in quotes. For instance:
EXEC sp_MStablespace 'joe.tableA'
K. Brian Kelley
June 13, 2002 at 1:32 pm
This is for SQL Server 2000.
Consider the case of a simple recovery configuration. The transaction log will be truncated whenever an automatic checkpoint occurs. Automatic checkpoints...
June 12, 2002 at 10:04 pm
See if the following works for you:
SELECT so.name [Table],
si.name [Index], sc.name [Column]
FROM sysindexes si
JOIN sysobjects so ON si.id = so.id
...
June 12, 2002 at 1:09 pm
That would be fun... sort of like the type of stuff covered by the Inside {} series of books from MS Press?
K. Brian Kelley
June 12, 2002 at 1:03 pm
SQLMail (xp_sendmail) and SQLAgentMail (sends notification of the job failure) are two different things entirely, so there usually isn't anything there if the Profile(s) are set correctly. I've seen...
June 10, 2002 at 1:25 pm
You didn't say if persontypebin & 2 = 2 matters or not. If it doesn't, you can do:
SELECT *
FROM persontypes
WHERE persontypebit & 13 = 13
[/code]
If it needs to be...
June 10, 2002 at 1:21 pm
See if this is any help:
http://www.microsoft.com/licensing/programs/sa/SQL.asp
It's gotten to be a pretty confusing animal.
K. Brian Kelley
June 10, 2002 at 12:19 pm
Viewing 15 posts - 5,401 through 5,415 (of 6,105 total)