Viewing 15 posts - 29,266 through 29,280 (of 39,771 total)
Use the ms_foreachtable or just write a cursor that loops through the output from
select table_name
from information_schema.tables
where table_name like 'tbl_%'
March 13, 2008 at 7:56 am
This is a Windows error, and possibly a driver/hardware issue. I found a few references similar to this one: http://support.microsoft.com/kb/259573
March 13, 2008 at 7:56 am
You can read about it in Books Online, but as Kent mentioned, it's to handle objects that have names with quotes in them.
March 13, 2008 at 7:55 am
If it's a variable number of pages in the flow, I'm not sure what a good T-SQL solution would be. In fact, it might be worse than some loops. You'd...
March 13, 2008 at 7:54 am
Thanks for the notes and I agree with webrunner. Lots of us want to just add a server to distribute load.
Thanks for the RAC notes. I don't know a lot...
March 13, 2008 at 7:48 am
DST kicked in on Sunday in the US, which is how the servers work.
I think that the rest of the world might have a different DST date.
March 12, 2008 at 3:56 pm
It is ultimately management's responsibility to find a balance (and yours), but having been through some long negotiations when selling this site, I'll tell you that it's hard to be...
March 12, 2008 at 8:30 am
I've actually had some reasonable NCAs, especially when negotiating with management. My experience has been the lawyers typically present these worst case scenarios, and end up trying to get things...
March 12, 2008 at 7:58 am
Detaching /Attaching on the same server will not orphan users. The users are mapped to SIDs on that instance, so as long as the databases are attached to the same...
March 12, 2008 at 7:13 am
Look up patindex or charindex in BOL. Perhaps SOUNDEX would work as well.
March 12, 2008 at 7:12 am
It seems some of your terminology is mixed up. There isn't a "Users" group on the server, unless you mean the OS, in which case, specify that. However the user...
March 12, 2008 at 7:11 am
The only way to test the backup is to test restore it to another database. You should periodically, perhaps monthly at least, restore a database from a backup that is...
March 12, 2008 at 7:09 am
Maybe someone here wants to write one and open source it! Or make an article. 🙂
March 12, 2008 at 7:08 am
You could schedule a job to run after the maintenance plan (or add a step) that runs this for a backup and then parse the results.
The maintenance plan should have...
March 12, 2008 at 7:07 am
It's likely some data issue. Have you checked to see if there are formulas or calculations that might be data dependent? Meaning something like a divide by 0 is occurring.
March 12, 2008 at 7:02 am
Viewing 15 posts - 29,266 through 29,280 (of 39,771 total)