Viewing 15 posts - 136 through 150 (of 361 total)
might want to check if certain tables are being specifically built on your secondary filegroup.
this should work:
SELECT DISTINCT
OBJECT_SCHEMA_NAME(ID) [SCHEMANAME]
,OBJECT_NAME(id) [TABLENAME]...
February 1, 2010 at 1:23 pm
Ha,
I thought I was the only one that set people's default to tempdb.
everyone I run into gives me weird looks about it.
Cheers!
February 1, 2010 at 1:14 pm
64 bit is best for consolidation projects where you plan on putting lots of DB's and/or SQL instances on one server to save licensing costs. If that doesn't make...
February 1, 2010 at 1:12 pm
The best managers I had were conscientious, sought out expert knowledge, and wanted to succeed and lead. From your post it looks like you're on the right track if...
February 1, 2010 at 1:02 pm
yes.
use SQL server config manager to bind an instance to a specific IP address and port 1433.
You'll obviously need to bind several IP's to your host's NIC to accomplish this.
you...
February 1, 2010 at 12:50 pm
first off, do as Gail says. It will help greatly in the event that your query isn't covered by an index. We'll be able to help then.
Also, 13...
February 1, 2010 at 9:54 am
I did find this helpful tool for migrating RS objects around.
Haven't tested it yet:
February 1, 2010 at 7:07 am
Better try a Sybase forum.
We'll only tell you how to migrate from Sybase to SQL 😀
Sybase, Inc. should have some tools for you to actually move the database format from...
February 1, 2010 at 6:52 am
Man, that's a great question.
You can find out part of the answer in sys.sql_logins
As for whether or not SQL Server still considers the password expired if you stop checking for...
January 4, 2010 at 12:19 pm
it's probably the account running SQL Server or Agent, or fulltext, etc.
I'm guessing someone changed the PW on the domain CUSTOMDIRECT, but probably not the password on your local service....
January 4, 2010 at 12:12 pm
also check the SQL log for detailed messages around the restore and the steps that occur when the DB is brought online.
Cheers!
December 30, 2009 at 7:32 am
I just had this same error message on a similar setup.
3 quick things:
1. my primary issue is that there were packet drops on a storage switch.
You should...
December 30, 2009 at 7:30 am
what happens in SQL for you to get the error message:
Could not find procedure 'sp_procname'
it's always security, either you're specifying the wrong schema, or you don't have exec permission.
I'd...
December 4, 2009 at 11:39 am
One thing I forgot to mention was to make sure the login/user that's doing the inserts/updates/deletes has the default schema of dbo. That would also cause the issue because...
December 4, 2009 at 10:06 am
This problem is usually due to naming, either schema or replication procedure.
Are you 100% sure the names of the procedures specified in sysarticles of the publication databases matches the...
December 4, 2009 at 10:02 am
Viewing 15 posts - 136 through 150 (of 361 total)