Viewing 15 posts - 31 through 45 (of 74 total)
We did a work around on this issue were I work by creating an proc in the master database that called the sp_OACreate and granted right to this sproc to...
February 1, 2006 at 2:01 pm
This is a wild guess but is it having problems finding the domain controller to verify the account info.
Checked WINS and DNS entries stuff
Tim S
February 1, 2006 at 1:57 pm
Expand the + in-front of a table that should have a trigger; you should see a folder called triggers under the table.
Tim S
January 25, 2006 at 2:38 pm
Till the SQL Server has SP3 of SQL installed it is not suppossed to let tcp/ip traffic in i under XP and 2003 OS.
Tim S
January 9, 2006 at 10:53 am
I like this URL better
http://www.sqlsecurity.com/DesktopDefault.aspx?tabid=37
But, this one is a little better upto date
January 5, 2006 at 12:01 pm
DBGhost Does it OK.
I use a custom method which does the table creates for all the tables and then I do all the FK stuff.
Tim S
January 5, 2006 at 8:10 am
-- Create temp table with the structure of Data returned by the Sproc
CREATE TABLE #temp
(
col1 INT NULL,
col2 varchar(2) NULL
)
INSERT INTO #temp (col1,...
January 5, 2006 at 8:05 am
December 21, 2005 at 4:05 pm
Try
IF EXISTS(SELECT TABLE_NAME FROM tempdb.INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME LIKE '#searchResult%')
I perfer the following
IF OBJECT_ID('tempdb.dbo.#searchResult') IS NOT NULL
Tim S
November 18, 2005 at 10:39 am
SET FMTONLY
Returns only meta data to the client.
Syntax
SET FMTONLY { ON | OFF }
Remarks
No rows are processed or sent to the client as a result of the request when...
November 15, 2005 at 5:12 pm
Did You Try it!!!!!!
SET FMTONLY ON
Tim S
November 15, 2005 at 5:03 pm
It might be an MSDTC issue. MSDTC was changed in XP SP2 & WIN2K3 SP1
http://support.microsoft.com/default.aspx?scid=kb;en-us;827805
Tim S
November 15, 2005 at 3:11 pm
SET FMTONLY ON
GO
SELECT *
FROM dbo.sysobjects
GO
Tim S
November 15, 2005 at 3:04 pm
I would get a copy of developer ED SQL 2000 and find out what stats the IT guys want and then learn how to get them from your development box.
The...
October 20, 2005 at 9:13 am
It is bad because of SQL Injection and because of the permissions issues.
When using "dynamic sql" the user must have rights to both the sproc and the tables invovled.
The above...
October 4, 2005 at 9:19 pm
Viewing 15 posts - 31 through 45 (of 74 total)