Viewing 15 posts - 9,211 through 9,225 (of 14,953 total)
I had a three-table solution. One was currently active data, which was only a few dozen rows, but was under constant updates, in terms of up to a hundred...
June 17, 2009 at 8:56 am
What edition of SQL Server are you using? Standard, Enterprise, or something else?
June 17, 2009 at 8:42 am
What do you get if you run this query in Management Studio on that server?
select * from fn_trace_getinfo(0)
That will give you data on active traces.
June 17, 2009 at 8:38 am
See if this helps: http://www.sqlservercentral.com/Forums/Topic735882-338-1.aspx
June 17, 2009 at 8:34 am
Are you asking for documentation on a recovery strategy, or for code?
June 17, 2009 at 7:58 am
I've done something very similar on 2000, and the data in Create View in BOL has all the rules on partitioned views. It's pretty easy to set up, and...
June 17, 2009 at 7:56 am
It has "downgrade rights", but doesn't have the installation media for it. Difference between having a right and having the tool to implement it. (Like, you have the...
June 17, 2009 at 7:54 am
Null and 0 aren't the same in databases. Null means an unknown value, a field that hasn't been provided with a value yet.
In that case, change the "is null"...
June 17, 2009 at 7:48 am
Check to make sure the file system rights are the same for the login the job is using and the login you're testing from.
June 17, 2009 at 7:30 am
Lowell's solution looks almost right. It needs to have a couple of typos fixed, and it checks for a non-zero value instead of null. Your original message mentions...
June 17, 2009 at 7:26 am
In order to do that, you need to have valid media for SQL 2005, including a product key. You can't install 2005 from 2008 media, nor can you use...
June 17, 2009 at 7:18 am
It sounds like you're asking for changes in the database engine, as opposed to changes in the features. You're more likely to get a valid response on that directly...
June 17, 2009 at 7:11 am
I guess it depends on what exactly you want it to do.
For example, does it reject the insert and raise an error, or does it accept the insert but also...
June 17, 2009 at 7:09 am
That makes some sense. Let me know how it goes, please. I'm very curious.
June 17, 2009 at 7:00 am
The wider spaces are probably from emptry strings. That would result in a double-space.
June 17, 2009 at 6:58 am
Viewing 15 posts - 9,211 through 9,225 (of 14,953 total)