Viewing 15 posts - 76 through 90 (of 158 total)
On the Start menu, point to Programs/Microsoft SQL Server , and then click Client Network Utility.
In the general TAB you will find Enabled and Disabled options. If Named Pipes is...
June 4, 2004 at 1:59 am
I have had this problem before and this is how I solved it I hope this will give you a little bit of help.
I had MDAC ver 2.8 and was...
June 4, 2004 at 1:24 am
I need some more info about your setup
What version and SP of SQL Server and what platform?
June 4, 2004 at 12:29 am
I think that you have a possible disk bottleneck.
Use Performance provider to chech PhysicalDisk counters for confirmation.
A pointer to look at (IMHO)
% Disk time - If...
June 3, 2004 at 1:36 am
You can use the following statement. You alter the table remove the constraint insert your data and alter the table to add constraint back...
ALTER TABLE
WITH NOCHECK
June 2, 2004 at 5:59 am
Declarative referential integrity.
Data-integrity rules that will enforce the relationships between tables and keep the database as consistent as possible
June 2, 2004 at 5:38 am
Full table scan can be select * from table OR
Ignoring indxes -- Which one is bugging you?
June 1, 2004 at 8:26 am
Hi,
Use SQL Profiler and trace TSQL and Stored Procedure events.
Then search the textdata column.
I hope this helps...
June 1, 2004 at 7:36 am
Depending on the size of the table u could
select column1,column2 into products where blah blah
create table Spacetemp (name nvarchar(255),
rows nvarchar(100),
reserved nvarchar(255),
data nvarchar(255),
index_size nvarchar(255),
unused nvarchar(255)
)
insert Spacetemp (name,rows,reserved,data,index_size,unused) exec sp_spaceused 'products'
select *...
June 1, 2004 at 7:11 am
Hi,
My 2 cents.. Does the Oracle table contain a numeric field? If so what is the precision? I can't remember the "cut off" precision that the provider can't handle. But...
June 1, 2004 at 6:40 am
Try this.....
DECLARE @object int
DECLARE @hr int
DECLARE @property varchar(255)
DECLARE @return varchar(255)
DECLARE @src varchar(255), @desc varchar(255)
-- Create a SQLServer object.
SET NOCOUNT ON
-- First, create the object.
EXEC @hr = sp_OACreate 'SQLDMO.SQLServer', @object OUT
IF...
June 1, 2004 at 3:19 am
In T-SQL you have different join types...
(INNER) JOIN
A join that displays only the rows that have a match in both joined tables.
OUTER JOIN - LEFT OUTER / RIGHT OUTER Joins
A...
June 1, 2004 at 12:56 am
Try this......
SELECT mm.title, aa.[name]
FROM movie mm INNER JOIN
casting cc ON mm.movieid = cc.movieid INNER JOIN
actor aa ON cc.actorid = aa.actorid
and mm.movieid in(SELECT m.movieid
FROM movie m INNER...
June 1, 2004 at 12:03 am
May 31, 2004 at 6:14 am
Viewing 15 posts - 76 through 90 (of 158 total)