Viewing 15 posts - 631 through 645 (of 680 total)
This error indicates that you are trying to reference the first row of a DataTable (or other storage mechanism), but that object does not contain any rows. Run your query...
February 20, 2007 at 8:00 am
Just delete the records from the table instead:
DELETE FROM dbo.employee
February 13, 2007 at 3:40 pm
Can you post the T-SQL code from your SQL task?
February 13, 2007 at 2:49 pm
I'm in the middle of just such a project. Ping me and I'll fill you in.
February 12, 2007 at 3:08 pm
Can you post some code, particularly your connection string.
February 12, 2007 at 10:14 am
You'll have to post some of your VB.NET code for a solid answer, but judging by the error message you posted it appears that you may have forgotten to set...
February 12, 2007 at 7:42 am
Of course - just use the Create Table wizard and create a new table with a single column of type Date. When updating this table, remember that Access requires some...
February 12, 2007 at 7:39 am
The SQL Server Connections conference is well worth the trip. I went a year ago (December '05) to Vegas, which was the same week that SQL Server 2005 was released. ...
February 8, 2007 at 4:15 pm
Yes, but mine's the best. It's in color......
February 8, 2007 at 2:41 pm
I needed the same thing a while back. Try this out. It's not pretty, but it gets the job done.
If you are on SQL Server 2005, you could use also...
February 8, 2007 at 1:47 pm
Actually you can run the 2 in parallel. If you installed Express as the default instance, set up Standard as a named instance. If Express is a named instance, you...
January 31, 2007 at 7:27 pm
You can run queries against a remote SQL server by IP address. You'll need to connect via TCP/IP in this case, so make sure that protocol is enabled. Since you're...
January 29, 2007 at 10:07 pm
Possibly a timeout, but I would suspect an interruption in network connectivity.
January 29, 2007 at 9:37 pm
Frank,
Try removing the GO statement altogether. This statement is simply a batch terminator, and assuming this is the only command you are running in this batch it is unnecessarily verbose to...
January 25, 2007 at 1:07 pm
Ed,
I'm interested in this too - I have thought about writing a web or CE app that would keep track of baseball stats. Let me know if you have found...
January 25, 2007 at 11:40 am
Viewing 15 posts - 631 through 645 (of 680 total)