Viewing 15 posts - 5,881 through 5,895 (of 9,643 total)
Thanks for letting us know what the resolution was.
February 24, 2009 at 6:09 am
When I copied your code and passed in parameters as you mention in your first post and did a Select @strSQL this is what I got:
WITH Search AS
...
February 24, 2009 at 6:08 am
Here a couple of links that show how to get more information about your TX Log:
http://jmkehayias.blogspot.com/2008/11/database-transaction-log-part-2-how.html
February 23, 2009 at 1:27 pm
It sounds to me like the issue is that the TX LOG is growing twice to its limit of 6000MB and then needing to grow again during the Rebuild and...
February 23, 2009 at 1:05 pm
You can use the derived column transform and use the Left function.
Left(column, Len(column)-4)
Should work.
February 23, 2009 at 11:57 am
Okay, I'll chime in on the book series. I've never read Dune, but may now. I liked the Wheel of Time, read all of them this past summer,...
February 23, 2009 at 11:54 am
I just want to make sure I understand what you want. You want a trace that will identify databases that are no longer used? You can't specifically trace...
February 23, 2009 at 10:16 am
GSquared (2/23/2009)
Any possibility of posting the code for the query? That usually helps in these cases.
I agree it would be more polite and easier if the SQL was posted,...
February 23, 2009 at 10:00 am
Paul Morris (2/23/2009)
Msg 402, Level 16, State 1, Line 6
The data types char and text are incompatible in the...
February 23, 2009 at 9:46 am
GSquared (2/23/2009)
Edit: Uh oh! I just realized I called "The Thread" "it"....
How else would you refer to The Thread? We do not the gender of The Thread. ...
February 23, 2009 at 8:55 am
Here are a couple of threads that discuss converting julian dates to regular dates:
http://204.9.76.233/Community/forums/p/20619/114975.aspx
http://www.sqlservercentral.com/Forums/Topic438807-8-1.aspx
Assuming you want to create a true datetime value from the date and time portions then once...
February 23, 2009 at 8:47 am
If the Query Processor is compiling to the same plan I don't think either really matters. My preference would be to query the main table and use the smaller...
February 23, 2009 at 8:37 am
That depends on the amount of activity in the database and the amount of data that you can afford to lose in a disaster.
My general rule of thumb for backups...
February 23, 2009 at 8:15 am
This is not perfect and I am pretty sure Jeff will have a better solution, but here's an idea:
UPDATE dbo.Temp
SET Prev_close = (SELECT PREV.Close_Price
...
February 23, 2009 at 8:05 am
If you are really in SQL 2000 this link won't help, but if you are in 2005 this article may help you:
http://www.sqlservercentral.com/articles/T-SQL/62159/
Are your dates always consecutive or can there be...
February 23, 2009 at 7:42 am
Viewing 15 posts - 5,881 through 5,895 (of 9,643 total)