Viewing 15 posts - 5,086 through 5,100 (of 5,102 total)
I couldn't agree more with "vegas205". If you are not specific on the question the ONLY answer is to disable.
Brian, disabling TCP/IP doesn't mean that you can not reach the...
October 24, 2003 at 8:34 am
The question didn't specified ANY version. I hope if you are using SQL Server you have SP3a on it!
October 24, 2003 at 8:26 am
Disabling the port is BY FAR the BEST!!! way.
This port is not indispensable for an application, in fact that’s why firewalling was suggested.
If you firewall the port, it is...
October 24, 2003 at 8:02 am
To add my two cents if you use the quoted value on a parameter that is used for dynamic TSQL take a look at QUOTENAME on BOL
HTH
October 23, 2003 at 7:55 am
if accurate timing is needed you should use DBCC FREEPROCCACHE before running each one of them otherwise you may be using a precompiled plan
just my 2 cents
October 21, 2003 at 6:52 am
The solution to this problem is to handle the error message on the CLIENT side. In other words use structured exception handling, trap the exception and translate the message to...
October 15, 2003 at 7:03 am
quote:
WORKGROUPS----------
38.0 1.0 100.0 Styling 0
39.0 2.0 100.0 Non Surgical 0
40.0 2.0 105.0 Nails 0
41.0 2.0 110.0 Wax/ Electro 0
DEPARTMENTS
-----------42
38.0 100.0 Cut/Finish...
August 25, 2003 at 8:47 am
The Identity Seed Gets incremented every time you insert a record!
if you want to reuse the Identity value that you deleted then you must run:
DBCC CHECKIDENT ('able Name', RESEED, 'reuse...
August 25, 2003 at 8:33 am
There are other implications that were not mentioned here like:
DTS DOESN'T WORK on fiber mode and that is huge for some enviroments.
August 6, 2003 at 6:26 am
You have several options. These are just some:
1- you could use a trigger in one to update the other using three part names
2- you could use a linked server...
July 30, 2003 at 6:26 am
For the intended purpose TRIGGERS are the way to go without barely any effort
July 23, 2003 at 6:01 am
I believe this code:
IF NOT EXISTS (SELECT 1 FROM MyTable WHERE MyField = @Value)
BEGIN
...
June 26, 2003 at 8:34 am
In my opinion this is a design issue. I would change from View to a Stored Procedure with the parameters necessary on your Where Clause.
IF it has to be used...
June 20, 2003 at 11:59 am
Just One more thing. You are using a One-Statement Update, so The BEGIN TRANSACTION and COMMIT TRANSACTION Statements are NOT neccessary, in fact they are NOT recomended for a single...
February 3, 2003 at 12:41 pm
Viewing 15 posts - 5,086 through 5,100 (of 5,102 total)