Viewing 15 posts - 346 through 360 (of 360 total)
Just as a warning, a job can only be running once at a given time otherwise the sp_startjob will fail.
What I mean by this is that if you have a...
October 8, 2008 at 2:57 pm
I can't answer your question, exactly... but SQL 2005 does have more intelligent lock manager.
I've scoured the msdn blogs for the article I read about this, but couldn't find it......
October 8, 2008 at 2:17 pm
If you're inserting data in a sequential manner according to your index, you will probably not need to reindex. If the data is random compared with your index, you...
September 26, 2008 at 8:59 pm
yes to all.
I thought your other questions were example questions.
It's the same thing as a regular reindex, only when you specify a partition, only that partition is reindexed.
Oh, and specifying...
September 23, 2008 at 7:02 am
If you've not disabled builtin\administrators I'd look there.
Lots of times development groups put themselves as local admins on their server because it's less headaches. It's not an obvious place...
September 22, 2008 at 12:50 pm
Can anyone explain for me whether can i perform all the operations (operations we perform using ALTER INDEX statement on a non-partitioned index) on a single partition of any index?
Yes,...
September 22, 2008 at 9:03 am
Can you get it from systypes?
select * from master.sys.systypes
I'm not quite sure if that's what you're meaning in your question.
September 21, 2008 at 6:44 pm
I think what you're essentially talking about is an ETL job.
You might consider a couple of options.
1. Use your OLE DB provider as a datasource in SSIS; use agent to...
September 21, 2008 at 6:09 pm
If it's disk space you're meaning, there are a number of ways.
I usually run
xp_fixeddrives
to check the available drive space. FYI It doesn't work if you use...
September 21, 2008 at 5:46 pm
Another good solution that was not mentioned before is to use database mirroring and a snapshot of the mirror. Depending on how current the data needs to be, this...
September 21, 2008 at 5:29 pm
And besides all that, the answer of what happens when you compare strings with >= entirely depends on your collation setting.
under normal circumstances >= in varchar/nvarchar means...
September 21, 2008 at 9:00 am
If you're just talking about the database considerations, there are none.
Standalone to Cluster is not an issue for databases, the only differences are at the instance/server level and those things...
September 21, 2008 at 8:37 am
I believe you can use the copy database wizard to move jobs.
Just set up a 'sacrificial' database, right click -- tasks -- copy database
Run through the Wizard and I think...
September 21, 2008 at 8:31 am
On more hint if you go that route: Put the db in restricted_user mode first... Even though it's an online operation, nobody wants to see all the incorrect references in...
May 29, 2008 at 2:40 pm
an idea that might work would be to add an 'oldkey' column to your prod database, pump the data from old to new and allow the new db to assign...
May 29, 2008 at 2:21 pm
Viewing 15 posts - 346 through 360 (of 360 total)