Viewing 15 posts - 5,341 through 5,355 (of 5,393 total)
Maybe I'm wrong, but it looks like the first row already in your table.
Am I missing something?
August 7, 2008 at 1:23 am
Very interesting!
Can you provide just a little bit more information? What does the job? Which step failed?
I don't think you'll get any answer with such a post!!
August 6, 2008 at 8:07 am
Set the commandTimeout property in the Connection object to 0 (= no timeout).
August 6, 2008 at 8:04 am
In fact the cursor was declared without any option, so I switched it to FAST_FORWARD, just to get a quick fix. I'll try to code it without cursors, also because...
August 6, 2008 at 7:54 am
Well, I don't know if it had cursors open in that moment, all I know is that it opened 2 (small) cursors, but I checked and the deallocate instruction was...
August 6, 2008 at 7:25 am
In Activity Monitor there's a column named "Open Transactions", that contained a 0 for my mysterious spid... I don't know where that information is extracted from, but I think...
August 6, 2008 at 6:52 am
Try working with the linked server options, maybe you can work around your problem. This looks interesting:
(From BOL)
Collation Compatible
Affects Distributed Query execution against linked servers. If this option is set...
August 6, 2008 at 3:02 am
Try with this:
SELECT A.personId, A.LogDate, A.selectedValue
FROM MySelectedValues AS A
INNER JOIN (
SELECT personId, MAX(logDate) AS LogDate
FROM MySelectedValues
GROUP BY...
August 6, 2008 at 2:30 am
The size of your LDF file depends on the recovery model of the database. If it set to "Simple" the LDF file won't grow a lot, beacuse the space in...
August 6, 2008 at 2:19 am
Your trigger expects a single row to be added/updated in your table, you can't be sure of that.
Try this way:
USE [Database]
GO
/****** Object: Trigger [dbo].[clientpanno] Script Date:...
August 6, 2008 at 1:16 am
I think you have to set a default value for the CodePage property in the connection properties. I'm working with a connection to a DB2-AS/400 and I set the codepage...
August 5, 2008 at 11:48 am
Did you try what suggested by the warning?
August 5, 2008 at 11:33 am
One way to achieve it could be to import your excel file into a table and the update the fields in the destination table.
If you want something more complex,...
August 5, 2008 at 10:10 am
Viewing 15 posts - 5,341 through 5,355 (of 5,393 total)