|
Hi
Is anyone know any good reference or general help for sql server 2008 ?
thank's in advance
Started by Gold on
, 5 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
If you don't already have SQL Management Studio, download the Express edition here:
SQL Server 2008 Express download
Then download and install SQL Server 2008 Books Online (May 200... .
I like to go to SQL Server Central here.
The MSDN SQL Server site.
|
|
As a follow up to: http://stackoverflow.com/questions/105400/what-are-indexes-and-how-can-i-use-them-to-optimize-queries-in-my-database where I am attempting to learn about indexes, what columns are good index candidates?, specifically for an mssql database...
Started by mmattax on
, 12 posts
by 12 people.
Answer Snippets (Read the full thread at stackoverflow):
Any column....
(Also, primary keys make such good indexes down the writes and never get used.
They are unique and must have a value specified.
In general (I don't use mssql so can't comment specifically), primary keys make good indexes.
|
|
Is there a good, concise guide to the various behaviors of the controls that inherit from System.Windows.Controls.Panel? Or just a WPF layout guide in general?
In particular, I'm interested in how the panels handle child objects that have width or height...
Started by John Noonan on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I would recommend looking at the MSDN entry about panels and this example ... .
It sounds like you may be particularly interested in the table in the "User Interface Panels" section .
See http://msdn.microsoft.com/en-us/library/ms754152.aspx for a start...
|
Ask your Facebook Friends
|
Can someone tell me why there are so little good programming tutorials in general?
I know one site, and that's for flash, but I don't use that much flash: http://www.gotoandlearn.com/
I think it's a nice place. All tutorials are video, you see it happening...
Started by Vordreller on
, 8 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
No videos understand it, they say the tutorial....
W3schools.com have some good short tutorials on web and xml related things.
good programming tutorials in general?
Because most people read a tutorial and if they don't programs too...
|
|
I am looking for a good general log reader that is able to allow users an easy way to extract data from logs.
I am logging to plain text files with columns seperated by tab characters.
Essentially I would like an app that can open log files (no more than...
Started by JL on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
It's not open source but it's free for up to 500 MB/day of logs processed... .
Forget simple filtration, you get a simple Google-like search interface with all kinds of advanced features under the covers if you want them .
Splunk (www.splunk.com) is the bomb.
|
|
I asked this question about Microsoft .NET Libraries and the complexity of its source code. From what I'm reading, writing general purpose libraries and writing applications can be two different things. When writing libraries, you have to think about ...
Started by danmine on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
The Framework Design Guidelines book (be sure to get the 2nd edition) is a very good book about how to write effective....
Exceptionally good general purpose libraries, like the Java Collections Framework!)
Joshua Bloch, Google Tech answer.
|
|
Using Adobe ColdFusion version 8 and below, all my cfqueries are wrapped in a try catch that calls a function in database.cfc called "CatchError".
<cftry> <cfquery datasource="myDatasource"> UPDATE TableName SET ... WHERE ID = <cfqueryparam...
Started by cf_PhillipSenn on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Edit - Here is a general handler using the cferror approach: http to error handling in general, so you may find some useful answers in language-agnostic questions.
To log problems like that.
|
|
In general, I occasionally have a chain of nested macros with a few preprocessor conditional elements in their definitions. These can be painful to debug since it's hard to directly see the actual code being executed.
A while ago I vaguely remember finding...
Started by Tyler on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Can you replace them with....
This might not be applicable in your situation, but macros really do hamper debugging and often are overused and avoidable .
Debug the dissasembly with the symbols loaded.
Gcc -E will output the preprocessed source to stdout.
|
|
Just started a new coop workterm and using a solaris machine with bash as my shell. Know basic commands in bash:
ls, pwd, find, cd, mkdir, rm, grep ...
That is basically all I need to do my job (working in java with intellij), but would like to be able...
Started by sixtyfootersdude on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
And don't forget the SO sister sites; superuser.com and serverfault.com - they are a good source shells by Example (Ellie Quigley) is good as a primer on both using shells as your CLI and scripting.
|
|
I really need an easy to use build tool which supports multiple languages with strong Java support. I have tried Scons but found the Java support lacking. Is there anything else out there? I'm not excited about learning yet another build tool. Also, I...
Started by anio on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Most that you have the appropriate....
As the first very good open source java build system, it has grown to be a popular and widespread option.
Ant is a really good option.
EDIT: Let me expound....
Are designed for building Java applications.
|