Viewing 15 posts - 5,611 through 5,625 (of 6,400 total)
you need to join sys.dm_db_index_physical_stats to sys.sysindexes
the below is what i use to get all the indexes in all databases which have more than 8 pages, more than 0%...
March 14, 2012 at 6:24 am
lots of good links on google, do a search for ssis 101 or ssis basics and take a play in BIDS, knock up a couple of packages and test them...
March 14, 2012 at 6:03 am
different ways to do it
you could as I said, copy the data from server 1 into server 2 and then do a update on server 2
or
you could use a data...
March 14, 2012 at 5:37 am
You could transfer the data from Server1 into a staging database on Server2, then write a stored proc which joins to the staging database and does the update.
March 14, 2012 at 5:08 am
can you zip and attach your shp and dbf files as I have only ever done maps by embedding the geo data as a spatial query passing a bing map...
March 14, 2012 at 4:24 am
create the parameter at the dashboard level, then in each subreports properties pass in the parameter to run the report.
the sub report data sets and/or reports will need changing also...
March 14, 2012 at 2:59 am
two ways
add a clean up maintenance plans task and give it a number of days to keep
or
in the back up database task on the options menu enable remove files older...
March 14, 2012 at 2:54 am
I dont believe you can change the display name, you can change the email address its from in 2008 by using the @from_address parameter, but I'm sure it takes display...
March 14, 2012 at 2:47 am
stevefromOZ (3/13/2012)
March 14, 2012 at 2:43 am
the following link http://msdn.microsoft.com/en-us/library/ms175106.aspx contains all the objects that are used in logshipping, you should be able to create a query to your needs by selecting from these.
March 14, 2012 at 2:32 am
you would need to create a batch file which calls SQLCMD passing in the .sql file and then run the batch file, the only way in SSMS is to press...
March 14, 2012 at 2:28 am
as another one on this, single user does exactly what it says allows 1 person access to the DB, if that is to much then you could set the database...
March 14, 2012 at 2:23 am
please take a moment to read the first link in my signature block on posting T-SQL
as this is fairly a small task i have knocked this up
create table #temp (col1...
March 14, 2012 at 2:13 am
are you moving a SQL2000 master database to a SQL2008 server? or is it going 2000 to 2000?
what is your goal in moving the master database? is it to...
March 14, 2012 at 2:08 am
Also to add on from Lynn you could use the convert function which does the same job as cast
First column: CONVERT(VARCHAR(10), SUBSTRING(col1,1,10))
Second column: CONVERT(VARCHAR(64), col2)
March 14, 2012 at 2:05 am
Viewing 15 posts - 5,611 through 5,625 (of 6,400 total)