Viewing 15 posts - 346 through 360 (of 486 total)
I suspect its because the DB is 100GB in size. And they may only need some not all of the tables in the database.
MCITP SQL 2005, MCSA SQL 2012
September 5, 2013 at 4:15 am
harsimranjeetsinghwasson (9/4/2013)
I would like to export data of warehouse from Production to dev for special reasons, what are best possible
ways for the same.
We normally have a job that runs in...
MCITP SQL 2005, MCSA SQL 2012
September 5, 2013 at 3:55 am
You cannot shrink the files to smaller than when they were initially created. Shrinking the files will only shrink down to the inital creation sizes if there is space...
MCITP SQL 2005, MCSA SQL 2012
September 3, 2013 at 6:30 am
September 3, 2013 at 6:28 am
Although I cant provide you with the code, the easiest way would be to trace your server whilst running the report and you will be able to capture the code...
MCITP SQL 2005, MCSA SQL 2012
August 29, 2013 at 6:24 am
Technically you can run anything simulataneously as long as they are not conflicting commands (which in your example are not). But be wary as I mentioned about resources.
MCITP SQL 2005, MCSA SQL 2012
August 27, 2013 at 7:40 am
It may be easier to replicate the data of the tables you need using transactional replication from one database to the other. You would then not need to use...
MCITP SQL 2005, MCSA SQL 2012
August 27, 2013 at 7:34 am
Possibly. As each operation will take up resources such as DISK I\O, CPU cycles etc etc.
You may run into resource issues when running them at the same time. ...
MCITP SQL 2005, MCSA SQL 2012
August 27, 2013 at 7:27 am
You can use the free RML utilities by microsoft to perfom this very action
http://support.microsoft.com/kb/944837
Not the easiest apps to use but very effective.
MCITP SQL 2005, MCSA SQL 2012
August 27, 2013 at 6:50 am
This may be what you are looking for:
USE TEMPDB
GO
IF EXISTS (SELECT TOP 1 1 FROM sys.tables WHERE name = 'test_prices')
DROP TABLE Test_Prices
GO
CREATE TABLE Test_prices (
[Date] date,
Product nvarchar(100),
Price decimal (10,2))
GO
INSERT INTO...
MCITP SQL 2005, MCSA SQL 2012
August 27, 2013 at 6:46 am
Your requirements are a little sparse in your description. Can you elaborate? replication may be an option but without more details I cant advise any better.
MCITP SQL 2005, MCSA SQL 2012
August 27, 2013 at 6:30 am
I should point out that the organisation I work for has quite habitual use, so taking the trace for 10 minutes per day covers 99% of all procedure calls made,...
MCITP SQL 2005, MCSA SQL 2012
August 20, 2013 at 10:36 am
Well, for example how do you know if a procedure is taking up any more resources or taking any longer than usual without having a baseline figure?
As I mentioned before...
MCITP SQL 2005, MCSA SQL 2012
August 20, 2013 at 9:53 am
*Check for wait types
Ans - SELECT * FROM sysprocesses WHERE SPID > 50 and WaitTime > 0
*Identify fragmentation % (and then do an index reorg or rebuild accordingly)
I Know to...
MCITP SQL 2005, MCSA SQL 2012
August 20, 2013 at 6:02 am
Everyones approach is different but personally I find performance monitor is only realy helpful if you have a baseline of values for counters for when the system is performing as...
MCITP SQL 2005, MCSA SQL 2012
August 20, 2013 at 3:59 am
Viewing 15 posts - 346 through 360 (of 486 total)