Viewing 15 posts - 631 through 645 (of 920 total)
Congratulations on half a million!!!!!
I stumbled on this site while looking for the answer to a very esoteric problem and found not only that answer but the answer to a...
October 2, 2007 at 5:24 pm
My experience has been that having triggers interact with objects outside the DBMS is a bad idea. More typically, I've seen this type of event-driven processing accomplished by having...
September 27, 2007 at 12:20 pm
Take the quotes off:
FirstName = @FirstName,
LastName
= @LastName,
JobLevel
=
September 20, 2007 at 4:20 pm
If you're selecting all the rows from a table, you'll read all the data pages. No index would help with that. If you were reading a subset of the columns...
August 24, 2007 at 1:08 pm
What are you trying to accomplish with this?
You can't really address the databases and tables residing inside the database management system as though they were other computing objects, like files, unless...
August 15, 2007 at 4:02 pm
In the spirit of belief in my fellow man and the idea that any help given is never wasted, I'd still like to see the script run by the OP...
August 10, 2007 at 5:06 pm
Back in the dim and distant past, isql used to have a -w option to specify the size of the output file. It shows up as an option on the MS site:
bcp...
August 9, 2007 at 4:55 pm
Has this ever worked? According to the boys in Redmond:
http://office.microsoft.com/en-us/excel/HP052009261033.aspx?pid=CH010006341033
Important When you insert cells, rows, or columns, keep in mind that the maximum size of a worksheet is 65,536 rows...
August 9, 2007 at 4:13 pm
I believe the short answer is 'NO'.
If you need to get at the data, you could download the SQL Server 2005 Express version (free), restore the DB there, and then...
August 8, 2007 at 12:10 pm
Do the execution plans for the queries look well-optimized? Are you sure they're using the indexes?
I don't know what the restrictions are on the developer edition, but I'm guessing that...
July 31, 2007 at 2:03 pm
In one of my previous lives we had a similar problem. We'd start with 2 databases both containing the same data from the source. The users only had rights to...
July 31, 2007 at 1:02 pm
Is the archive bit indexed? Otherwise, you need to do a table scan just to find the records to delete. I don't think the rowlock provides any benefit and you...
July 20, 2007 at 12:45 pm
What's the total number of rows in the table? Why rowlock? Is 'archive' indexed? How many other operations are going on on this table while the delete is running and...
July 20, 2007 at 12:23 pm
Remove the concept of 'sorted table' from your thinking. Inserting data into a table in a particular order does not guarantee the data will come back in the same order.
The...
July 13, 2007 at 2:58 pm
If it can be yesterday's data, replication and dts copies are probably not the most efficient, or easiest to manage, alternatives. Why not just take the backup from the primary...
July 2, 2007 at 5:54 pm
Viewing 15 posts - 631 through 645 (of 920 total)