Viewing 15 posts - 766 through 780 (of 5,356 total)
Please refrain from posting the same question to multiple fora here. Let's leave your question here
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=169&messageid=169129
March 22, 2005 at 6:15 am
BOL is the SQL Server online help and CREATE TRIGGER is the command you should search for to find the solution I mentioned.
You're working with SQL Server and don't...
March 22, 2005 at 6:06 am
Wow, you're not putting any peer pressure on us, do you?
Why do you intend to keep a redundant "total" column anyway? When you...
March 22, 2005 at 5:58 am
Have you already tried to search here for "interview"?
Returns several very useful threads.
March 22, 2005 at 5:45 am
See if this also helps:
http://www.microsoft.com/windows2000/techinfo/planning/server/clustersteps.asp
You can also do a search on my site for "cluster". That is the text box in the upper right corner next to the date....
March 22, 2005 at 1:24 am
Sorry, I suspect you don't want to hear my answer. But SQL Server is no product for such sophisticated statistics like you have in mind. T-SQL is no computational language...
March 22, 2005 at 1:09 am
Why do you want to shrink the file? Such a file needs to grow again when necessary. And that is a somewhat expensive operation which leads to file fragmentation and...
March 22, 2005 at 12:53 am
When you look at the code of both procedures, you'll see two very good reasons why they are undocumented: cursors and dynamic sql
March 22, 2005 at 12:49 am
Piggy-backing on Brian. I think you need to have a faible for such kind of literature to derive fun from reading purely academical books like Date's. You also need to...
March 22, 2005 at 12:48 am
"t/a"
Do you mean N/A = not available?
do you think having a second .ldf would help
No, SQL Server treats log files (no matter how much you have) as one single virtual...
March 22, 2005 at 12:42 am
Not sure, what you're trying to accomplish here, but have a look at http://www.sommarskog.se/dynamic_sql.html
March 21, 2005 at 7:28 am
A dirty workaround might be:
USE PUBS
IF EXISTS(SELECT * FROM sysindexes WHERE [name] = 'PK_emp_id')
Do something...
March 21, 2005 at 4:19 am
Sooner or later, I think you'll come across Date's book anyway. As Brian mentioned, no easy reading, but it pays (even just to disagree with him of NULL and missing...
March 21, 2005 at 2:36 am
No, if you use DATETIME or SMALLDATETIME you always will have both: a date *and* a time portion. You can however set this time to midnight, so that it doesn't...
March 21, 2005 at 2:30 am
At a size of 15.5 GB you're nowhere near any limit provided by SQL Server. See "Maximum capacity specifications" in BOL for such informations. And, just for fun, consider this:...
March 21, 2005 at 2:21 am
Viewing 15 posts - 766 through 780 (of 5,356 total)