Viewing 15 posts - 496 through 510 (of 1,186 total)
1. The problem COULD be the 5mm records and you are running into a buffer problem.
Have you tried importing the file directly into a "staging" table that has 1 column...
March 21, 2005 at 6:01 am
Unfortunately, you need to either write 10x OR Dynamic SQL. The good thing is you could build a stored-procedure and call that 1x.....
March 21, 2005 at 5:58 am
Try this
SELECT tblDiaryLog.Id, tblDiaryLog.Ticket_Id, tblDiaryLog.LogTime,
COALESCE([name], [admin]) AS [User], tblDiaryLog.Comment
FROM tblDiaryLog LEFT JOIN tblAdmin ON tblDiaryLog.Admin_Id = tblAdmin.Id
ORDER BY tblDiaryLog.LogTime DESC
March 18, 2005 at 5:24 am
If you look in BOL (Editions of SQL Server) and select (Maximum Capacity Specifications) scroll to the bottom (Max amount of RAM)
SQL 2k standard can only use 2GB RAM
Hope this...
March 17, 2005 at 12:10 pm
Couple of different approaches.
1. On Startup you fire a VBA module that creates the DSN connection with the name and all other information it needs for your purpose on the...
March 17, 2005 at 6:09 am
For a different take:
Why not have the SELECT INTO go against a VIEW. You could set-up a job that runs once a week to CREATE TABLE and ALTER VIEW (using...
March 11, 2005 at 12:49 pm
I have never done this via DMO however, just from looking at the information provided I don't think that DMO is smart enough to realize that "I" am (local)....
March 10, 2005 at 6:17 am
1st reaction was "Dear Lord.... "
It only took me 3 years of begging to upgrade my 1Ghz machine (and only got the upgrade AFTER she started having problems)...
Now she has...
March 9, 2005 at 5:40 am
Short answer is NO. SQL does NOT maintain history. That is WHY you have VSS
March 9, 2005 at 5:37 am
I don't think that this is SYTAX-wise correct. You need to do FROM tableA INNER JOIN tableB ON tableA.field = tableB.field WHERE tableA.field BETWEEN tableB.Start AND tableB.END
March 8, 2005 at 11:25 am
Found this in BOL
| 17803 | Insufficient memory available. |
March 8, 2005 at 6:41 am
I know that this sounds bizarre but, try turning logging OFF for the package. Also, make sure that the .CSV has at least a carriage return in it...
March 4, 2005 at 12:36 pm
I think that SELECT @err = @@error will ALWAYS resolve to 0. To truly capture the @@error SET @err = @@error and then you can do
IF @err <> 0 OR...
March 4, 2005 at 12:33 pm
I guess question 1 is What kind of UPDATES? Data or Structure?
IF Data I would create stored-procedures and then GRANT EXEC to them (and only them) and as long as...
March 3, 2005 at 1:51 pm
I have not used ASP.NET so if this seems a silly question please forgive me. Have you tried CREATEPARAMETER 1st telling the system which direction the parameter is and of...
March 3, 2005 at 5:46 am
Viewing 15 posts - 496 through 510 (of 1,186 total)