Top new questions this week:
|
I have the following index created on a table in my database:
CREATE INDEX [idx_index1]
on [table1]
(col1, col2, col3)
The server is suggesting the following 'missing' index:
CREATE INDEX …
|
Made a mistake and mistyped an alter database command for tempdb.
Now the instance won't start. I can't start in single user mode using -m as it states the tempdb could not be found. I tried using:
…
|
Microsoft recommends not bothering to rebuild indexes that have less than 1,000 pages (from memory I think it's because they are so small that they will be held in RAM).
If I'm not rebuilding them, …
|
Summary of the problem
We've spit our one database server environment into two servers.
We are now having intermittent performance issues
I am hoping someone can offer clues - perhaps direction …
|
What are the drawbacks and downsides?
We want to schedule automatic nightly refreshes of 20 databases, approximately 1GB each, from the PRODUCTION server to the TEST server. We're setting up SQL …
|
I'd like to log in to PostgreSQL in my server to change my root (postgres) password .
Debian GNU/Linux 7.1 wheezy
PostgreSQL 9.1
After changing below:
$ sudo vi …
|
I've got this query I'd like to get working. I'm trying to count all the instances of a foreign key after a certain date that isn't null, and then left join that to the distinct of the original table, …
|
Greatest hits from previous weeks:
|
I know a lot of Database Administrators and they are all over 28-29 years old.
Is all database administration like that? I mean, is this about getting experience more than at least 7-8 years?
Or is …
|
How to export / import a database in MySQL through the command line?
MySQL system configuration, WampServer server installed.
OS: Windows
The advice for my local host, not an live hosting...
|
Can you answer these?
|
I manage a 280gb SQL Server database.
The structure contains a single database file and many schemas. Each customer has a schema and an associated set of tables. so :
MainDatabase :
Schema1:
…
|
I've got a working postgreSQL database with following pg_hba.conf:
local all postgres peer
local all all …
|
I have a table that can contain reasonably large BYTEA values (the same could apply to large TEXT values). It looks like this:
CREATE TABLE testtable (
id SERIAL PRIMARY KEY,
name TEXT UNIQUE …
|