Viewing 15 posts - 31 through 45 (of 1,654 total)
Look in your installation folder, usually C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap in the LOG directory. You will see a file called Summary.txt and a folder for each time you've...
September 18, 2013 at 6:17 am
1) Can we attach SQL 2005 DB .mdf file in SQL Server 2008 ?
Yes, you can
2) Can we restore SQL 2005 User Databases in SQL 2008 ?
Again, no problem, but...
September 17, 2013 at 5:44 am
You can use sys.sysindexes.
The column rowmodctr contains the total number of inserted, deleted, or updated rows since the last time statistics were updated for the table.
September 17, 2013 at 5:36 am
1. Is that the best option?
Yes, that's what you need to do
2. 6 reports existed on the old server. How can I get those back, including the data sources?
After you...
September 10, 2013 at 7:13 am
You should find everything you need here
September 6, 2013 at 9:12 am
That part is a bit more tricky. Do the filenames contain a date or do you need to get it from the file attributes?
I would say using a script task...
September 6, 2013 at 4:48 am
Depends a bit on how long a period you like to look at. You can use the sys.dm_db_index_operational_stats function and look at the leaf_insert_count column. But since it's a...
September 6, 2013 at 4:37 am
I hope I get it right now.
Create your package with two "file system tasks" connect them with an "on success" connection.
Then define a variable "sourcepath" and change the sourceconnection properties....
September 6, 2013 at 3:54 am
GilaMonster (9/6/2013)
First, the cursor definition
declare FindFragment cursor for
SELECT object_id, name FROM #IndexFrag WHERE (avg_fragmentation_In_Percent > 5) and (avg_fragmentation_In_Percent < 40) and (name not like 'null')
because...
September 6, 2013 at 3:45 am
Not sure I understand what you want. Do you want to make then file and\or path configurable? The use SSIS variables.
Or do you need to move the package to another...
September 6, 2013 at 3:38 am
Is this really a local drive or maybe a mapped network share?
September 6, 2013 at 3:28 am
Change the following line
set @tablename = ( select OBJECT_NAME(object_id) FROM sys.indexes WHERE name = @Result)
To
set @tablename = ( select s.name +'.'+ OBJECT_NAME(o.object_id) FROM sys.objects o
JOIN sys.schemas s
ON o.schema_id =...
September 6, 2013 at 3:24 am
Are both defined on just one column?
In that case I would question the design, but there is a possibility that the table was split up into two tables because...
September 6, 2013 at 3:15 am
Use the "File System task" from the SSIS toolbox.
September 6, 2013 at 3:11 am
As long as your reports don't contain any custom code you can also move all of your reports by moving your report server database to the new server. Technet has...
September 2, 2013 at 9:27 am
Viewing 15 posts - 31 through 45 (of 1,654 total)