Viewing 15 posts - 796 through 810 (of 5,356 total)
No, SQL Server does not know the concept of constraint deferability.
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
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...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
March 18, 2005 at 1:03 am
See if this helps:
http://www.microsoft.com/technet/prodtechnol/sql/2000/maintain/ss2kidbp.mspx
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
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. ![]()
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
March 18, 2005 at 12:41 am
Can you com up with something general enough that will account for all the possibilities in all parts of the world
Noel, you know that this is almost impossible and my post...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
March 18, 2005 at 12:30 am
SHA is a hash algorithm, no encryption algorithm
This might be interesting:
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
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...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
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...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
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...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
March 17, 2005 at 8:07 am
Noel,
while your query works on the sample data presented, it fails in two ways when you have someone like the one in bold.
It cuts off the last letter of van...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
March 17, 2005 at 6:47 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...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
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?
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
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
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
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,...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
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,...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
March 17, 2005 at 5:04 am
Viewing 15 posts - 796 through 810 (of 5,356 total)