Viewing 15 posts - 1 through 15 (of 16 total)
I have tried doing the same with a Default Instance of SQL 2000 Standard, and have the same result.
December 23, 2009 at 10:08 am
Thanks...
The most annoying performance issue reported to me was when accessing the server with Enterprise Manager, apparently some people still do . ...
March 26, 2007 at 4:37 am
Please ignore this post, i just realised it is in the wrong category
March 26, 2007 at 2:29 am
Do you have a "create table" SQL task before the pump task?
September 27, 2006 at 12:06 am
Try this, should be a lot more effective...
Create table TblPublisher (Pub_ID int identity(1, 1) constraint PK_TblPublisher primary key(Pub_ID), Publisher nvarchar(255))
go
create unique index IX_TblPublisher on TblPublisher(Publisher) with ignore_dup_key on primary
go
insert into...
September 8, 2006 at 1:07 am
You can also a query Sreejith's statement, using a case statyement, that should properly pivot the data, if that is what you need.
It is probably not the best way of...
September 4, 2006 at 1:09 am
We have just re-installed the whole machine from scratch, windows, office, sql, etc and it seems to be working now.
Thank you for your replies and patience...
December 8, 2005 at 11:35 pm
There is also a way of storing data about the different formats ("versions") of the files in a table.
All you have to do then is to ensure that your DTS...
December 7, 2005 at 11:26 pm
Hi there
This is basically what AJ also said... Try this:
select * from TblName
where
convert(smalldatetime, cast(MonthField as...
October 14, 2005 at 12:57 am
Please post your "INSERT" statement...
September 12, 2005 at 4:51 am
Happy to help.
i had a lucky guess, i guess...
September 8, 2005 at 3:03 am
I had the same problem before as well. I am not sure what your DTS does, but if for e.g. it exports to a file, the server will need to...
September 8, 2005 at 2:38 am
I agree. You either have the cat by the tailpiece, or you are giving us insufficient info, hehehe
September 8, 2005 at 1:56 am
There are actually a couple of ways to do this. I use the folowing:
declare TextColumnCursor cursor for select name from syscolumns
where id in (select id from sysobjects where...
September 5, 2005 at 8:29 am
Do you need to load image data into the database? From personal experience and advice I received before I would think it better...
September 1, 2005 at 7:48 am
Viewing 15 posts - 1 through 15 (of 16 total)