Viewing 15 posts - 2,176 through 2,190 (of 2,339 total)
Take the @Tsql variable out of single quotes.
SELECT Top 100 * FROM OPENQUERY (ENIQSQLSERVER, @tsql) Hourly
August 1, 2014 at 10:45 am
One thing I noticed and am curious about is, this physical machine has 8 processors and looking at the %Process Time for each processor only Processor(0) has data filled in....
August 1, 2014 at 8:41 am
Markus, is there virus scanning or some other disk process in place on the disks you want to restore it to?
July 25, 2014 at 9:23 am
A few more questions.
Is there common data between the two databases that needs to be in sync? Or, is this data completely separate?
If there is data that needs to...
July 25, 2014 at 9:19 am
Number one, you need to become very good friends with your network people!
Where are the user names and passwords stored? If they can be stored in the USA database,...
July 24, 2014 at 12:57 pm
In the table Tab06_SubTab02, you have field defined as an integer.
The corresponding field in the select statement is a smalldatetime.
Even though there are no rows returned, SQL still...
July 24, 2014 at 12:37 pm
The execution plan tells it all. This query is performing a table scan. In order to get one row, the query optimizer needs to look at all of the...
July 17, 2014 at 2:08 pm
Probably the fastest thing is to take new backups, and restore those.
July 17, 2014 at 1:58 pm
Are all three .bak files valid SQL Server backups? .bak is only the default extension. Backups can be named anything.
Try this:
RESTORE VERIFYONLY
FROM DISK = 'FILENAME'
You should get this...
July 17, 2014 at 12:20 pm
New Born DBA (7/17/2014)
Since the DB is only 10 GB, you may not see a need for more indexes. At this size, unless you have a server with 512...
July 17, 2014 at 12:10 pm
1400 tables, 2300 indexes. That's about 1.5 indexes per table. Actually kind of a low number, IMHO.
Does this seem normal? Define normal. What works fine for...
July 17, 2014 at 11:54 am
The "rules and regulations" are specific to performing an in-place upgrade, which you are not doing. With a new server, you have a lot of options.
For starters, you can...
July 17, 2014 at 11:39 am
The questions are:
What EXACTLY are they going to do in this time?
Do you get an initial assessment?
Do they provide ongoing metrics about your servers?
Do they make recommendations based upon...
July 8, 2014 at 1:22 pm
It sounds as if you are considering outsourcing your DBA activities, and are trying to determine if their estimate / proposal is a fair one.
A few things to think...
July 8, 2014 at 12:42 pm
This may be the issue:
WHERE ID = @codeCnt;
Something tells me that the value of ID does not correspond to the value of @codeCnt
ID is an identity. How many times...
July 3, 2014 at 10:00 am
Viewing 15 posts - 2,176 through 2,190 (of 2,339 total)