Viewing 15 posts - 5,626 through 5,640 (of 7,191 total)
Well, it has a Delete File operation. And you can dynamically define the connection, so you should be able to delete any file pattern you choose.
John
December 3, 2010 at 1:33 am
Why are you doing all those conversions on the date column? Can you not just leave them as datetime? I'd guess that's what's killing performance. In order...
December 2, 2010 at 8:41 am
How do you know that the individual column used 100GB?
It could be that deleting the column freed a certain amount of space on each data page, but that the table...
December 2, 2010 at 8:34 am
I don't think that's possible with the Maintenance Cleanup Task, since it's done on extension only. Have you tried the File System task?
John
December 2, 2010 at 7:45 am
If you have a unique constraint on a column, it doesn't matter what you do with triggers, WHERE clauses and so on - you can still only have one NULL....
December 2, 2010 at 6:28 am
George
Another way round it might be to open the file in Excel, format the columns appropriately and then save it and import from that. You could write a VB...
November 26, 2010 at 9:51 am
Jeff
Yes, I did think about asking why he posted in this forum, but it such things seem to happen so much these days that I don't usually bother!
John
November 26, 2010 at 9:46 am
George
I think the problem is that 1,400.00 is actually a number, which is being sent as text because it has a "," as a thousands separator. I would import...
November 26, 2010 at 9:39 am
Something like this. The INSERT statement will only work in 2008.
CREATE TABLE #Docs (DocNo int, Line char(1), LStatus varchar(2))
INSERT INTO #Docs VALUES
(1, 'A', 'QA'),
(1, 'B', 'QV'),
(1, 'C', 'O'),
(1,...
November 26, 2010 at 9:22 am
Yes, that's the old-style join syntax which is deprecated for inner joins, and obsolete for outer joins. Goes something like this
SELECT * FROM Table1 t1 JOIN Table2 t2
ON t1.ID...
November 26, 2010 at 8:52 am
For the first one, look in Job Activity Monitor. For the second, you'll need to write a query against sysjobhistory (like I think you would also in SQL Server...
November 26, 2010 at 6:24 am
I don't think you can. But read the ALTER Login topic in Books Online - you may or may not be able to find a way round it by...
November 26, 2010 at 4:00 am
From Books Online:
CHECK_POLICY = { ON | OFF }
Applies only to SQL Server logins. Specifies that the Windows password policies of the computer on which SQL Server is running...
November 26, 2010 at 3:50 am
Flodpanter (11/26/2010)
November 26, 2010 at 3:46 am
It sounds as if there's something in Visual Studio 2008 or Integration Services 2008 that is insisting on a SQL Server 2008 database. What is the task that is...
November 24, 2010 at 8:49 am
Viewing 15 posts - 5,626 through 5,640 (of 7,191 total)