Viewing 15 posts - 601 through 615 (of 700 total)
The 'check existing' setting on constraint creation is not stored anywhere, afaik. Once you create the constraint, there's no need to track the value.
You can determine the...
June 8, 2006 at 2:32 pm
SET
NOEXEC ON
GO
Insert that at the top of your script and execute it. It will...
June 7, 2006 at 3:08 pm
> http://msdn.microsoft.com/vstudio/teamsystem/products/dbpro/
It's seriously exciting, provided your organization is willing to drop $5,500 per developer/architect/tester/db pro for any single VS Team Edition (architect, developer, or tester; DB pro...
June 6, 2006 at 10:46 am
What are you using now? If you've never taken any certification exams, then your first one should be on material with which you are most comfortable.
The 2005 certification exams cover...
June 6, 2006 at 10:07 am
For an effective source control solution, it helps to go through and uninstall Enterprise Manager from anyone who will be touching your systems. Otherwise, you get folks who use it...
June 5, 2006 at 3:50 pm
Have you tried loading up a SqlTypes.SqlXml variable with your document and passing that as a parameter to a stored procedure?
The procedure:
CREATE
PROC...
June 1, 2006 at 2:55 pm
I see you're using the templates. Note that they are just samples, and there's plenty of room for you to modify them for your needs. This stored procedure template sets...
May 29, 2006 at 9:53 pm
Red Gate's SQL Data Compare can reduce that pain:
http://www.red-gate.com/products/SQL_Data_Compare/index.htm
(If you buy, tell them an MCT sent you )
As for any aspiring developers reading...
May 26, 2006 at 12:16 am
SQL Server has no hand in the management of connection pooling.
Connection pooling is similar to a bank of phones used by a research department. One guy calls the library (dials...
May 25, 2006 at 11:56 pm
I'm guessing you're running this in Query Analyzer.
Your actual output is the full length, but QA is cutting it off. From the menu, choose Tools -> Options and look for...
May 19, 2006 at 1:56 pm
> then do I still need two SQL Server licences or just the one as I'm not going to need SQL Server installed on the box in the DMZ?
http://www.microsoft.com/sql/howtobuy/default.mspx
There's...
May 18, 2006 at 9:00 am
> is this the right way to implement the reporting services ?
Blocking anonymous access is the correct part, yes.
Remember there are three steps to running reports from an application:
1. ...
May 18, 2006 at 8:49 am
UNPIVOT is the key, here:
DECLARE
@test table(id int, math int, bio
May 18, 2006 at 8:38 am
Place parentheses around @n:
SELECT TOP (@n) notrans, NOTARJETA, NOCLIENTE
-Eddie
May 17, 2006 at 1:26 pm
Viewing 15 posts - 601 through 615 (of 700 total)