Viewing 15 posts - 8,716 through 8,730 (of 9,641 total)
Wouldn't this work?
[font="Courier New"]SELECT
Fl.folderId
ISNULL(COUNT(EL.eventTargetId), 0) AS NumberofHits
FROM
folderList FL LEFT OUTER JOIN
na_production.dbo.Pagelist PL ON
FL.folderID = PL.folderID AND
PL.moduleID = 576456718 AND
...
April 30, 2008 at 10:11 am
I'm going to throw a guess at this one. You have autogrow on the database and the autogrow process is causing the log file to grow. Try making...
April 30, 2008 at 9:55 am
A GO after the create schema should work as well.
You could also do Alter Table Add password_encrypted varbinary(128) then
update table
Drop the old column and then in SSMS rename the encrypted...
April 30, 2008 at 9:52 am
I don't know what forum this was in originally, but I have to disagree with Steve about it being a T-SQL question. You have done all you can in...
April 30, 2008 at 9:28 am
Michael Earl (4/30/2008)
The initial pause may be because your statistics are out of date because of a significant change in the number of records each time you load. You...
April 30, 2008 at 8:57 am
Bill Marriott (4/30/2008)
Are there any utilities out there that will bulk 2-part name my table references in all my...
April 30, 2008 at 8:51 am
You should be able to use distributionlist@yourdomain.com just like any other email address set up on the exchange server. The distribution list is setup on the exchange server right?
April 30, 2008 at 8:23 am
Oops, my bad, I actually had corrected the code, but forget to add the correction to my post. You just need a GO on the line before the create...
April 29, 2008 at 11:22 am
John is right you need to use an outer join, but first you need to have a list of all the months. This solution assumes you have a months...
April 29, 2008 at 9:57 am
How are the users querying the database? If they are using SSMS, you can change the settings for queries under Query -> Query Options to default to Read Uncommitted.
April 29, 2008 at 9:47 am
I agree with Grant, 1 Db with different schemas for the amount of data you are looking at.
April 29, 2008 at 9:43 am
GSquared has it right although you need to change the data type of the column as well, which you can't do while it has data in it. You could...
April 29, 2008 at 9:34 am
Can you give some example data and table structure(s)?
Are you returning all the data needed in the report in one data set or multiple data sets? What does the...
April 29, 2008 at 9:11 am
I don't know that I would say "evil", but dangerous would be a good term. I mean how can it be evil when the whole point of storing data...
April 29, 2008 at 9:06 am
Here is a link to another forum discussing parameterized views (which SQL Server does not have) which applies to what you want to do, I think.
April 29, 2008 at 9:00 am
Viewing 15 posts - 8,716 through 8,730 (of 9,641 total)