Viewing 15 posts - 10,786 through 10,800 (of 14,953 total)
If you select from two copies of the table joined to each other on issue number and sequence, you can get the sequential open and close dates and the days...
February 24, 2009 at 11:45 am
I guess you're going to have to run the scripts yourself and see if you can get more details.
February 24, 2009 at 11:24 am
Sounds to me like the book is probably wrong.
February 24, 2009 at 11:18 am
I must be misunderstanding something in your post. You list two different queries, and you seem to be listing the reads for both queries. They aren't the same...
February 24, 2009 at 11:16 am
As with many things, "it depends". In the situation you outlined, manipulating the values in SQL makes sense.
What you might try, if you can, is duplicating the functionality in...
February 24, 2009 at 11:13 am
You could, but it's generally a bad idea to do that on a production server during the day.
You should have an error message on the job that failed. Check...
February 24, 2009 at 10:00 am
It doesn't matter so far as I know. Try a test like this:
create table dbo.NullTest1 (
ID int identity primary key,
Col1 int null,
Col2 int null,
Col3 int null,
Col4 int null,
Col5 int...
February 24, 2009 at 9:51 am
In Management Studio, right-click on the job, and select History. To the left of the job in the history, it will have a red symbol indicating job failure. ...
February 24, 2009 at 9:41 am
The order of rows in a table isn't supposed to matter in a relational database. You have to query it, using Order By, to force the rows to have...
February 24, 2009 at 9:38 am
Procs is a pretty standard way to do that kind of thing.
If you want to call a proc in one database from another database, you use a three-part-name. Four-part-name...
February 24, 2009 at 9:36 am
Basically, you need three copies of the database.
One is the production version. That's the one that the web page connects to.
Another is the dev version. That's...
February 24, 2009 at 8:54 am
I would expect that proc to run quite rapidly. It's not doing a lot of work. Just a simple insert.
How fragmented is the table's clustered index? How...
February 24, 2009 at 8:47 am
Is Page_ID an identity field?
February 24, 2009 at 8:43 am
Derek Dongray (2/24/2009)
Alvin Ramard (2/24/2009)
February 24, 2009 at 8:13 am
Yeah, I just love tech support calls when I have to make them. I had to define "POST" to someone last night, because my computer at home won't do...
February 24, 2009 at 8:03 am
Viewing 15 posts - 10,786 through 10,800 (of 14,953 total)