Viewing 15 posts - 796 through 810 (of 5,356 total)
No, SQL Server does not know the concept of constraint deferability.
March 18, 2005 at 1:13 am
As far as I understand it, this depends on how you delete the data. If you use DELETE, the data is actually physically deleted. If you use, say, TRUNCATE, the...
March 18, 2005 at 1:03 am
March 18, 2005 at 12:54 am
Hm, I've just downloaded ActiveState PERL. Why not give it a try? It's always good to look over the rim of one's coffee cup.
March 18, 2005 at 12:41 am
SHA is a hash algorithm, no encryption algorithm
This might be interesting:
March 18, 2005 at 12:16 am
Like athurgar already said, there is really no sense in shrinking the log just because of the shrinking itself. Growing the log file is somewhat expensive and leadds to fragementation...
March 17, 2005 at 8:43 am
Forgive my ignorance, but what can PERL do what Windows scripting cannot do?
I don't want to start a discussion what is superior or...
March 17, 2005 at 8:29 am
I don't know, if third-party tools can do this. However, I would script my procedures in one file, add this WITH ENCRYPRTION for every proc and run that file back...
March 17, 2005 at 8:07 am
Not sure if I understand you here, but this works for me without errors
use tempdb
create table #test
(
c1 int null
, c2 int null
, c3 int not null default 1
)
create clustered index...
March 17, 2005 at 6:37 am
You are aware that you can find this information here:
http://www.sqlservercentral.com/forums/default.aspx at the bottom of the page?
March 17, 2005 at 5:23 am
Maybe these will help (at least something to read )
http://support.microsoft.com/default.aspx?scid=kb;EN-US;243586
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnsql2k/html/statquery.asp
http://www.microsoft.com/sql/techinfo/tips/development/queryopstats.asp
http://www.microsoft.com/technet/prodtechnol/sql/2005/recomp.mspx
Last one is for SQL Server 2005
March 17, 2005 at 5:15 am
Yes, there is a timeout. Don't know if it is configurable.
Usually when I need more time for an answer I copy the reply to the clipboard, cancel that reply,...
March 17, 2005 at 5:10 am
When you store data in a text column, SQL Server will not interpret this data in any way. This is the job of your front-end, in your case Access. So,...
March 17, 2005 at 5:04 am
Viewing 15 posts - 796 through 810 (of 5,356 total)