Viewing 15 posts - 6,001 through 6,015 (of 6,395 total)
so you issued for example
alter database model alter file (name='modeldev', filename='e:\model.mdf')
after which you restarted SQL, but the server would not start
this is due to the model.mdf being in C:\Program File\Microsoft...
December 7, 2011 at 7:01 am
have a look for a program called handle from SysInternals, this should tell you which processes have locks on files, so you can cleanly stop them to release any OS...
December 7, 2011 at 6:55 am
when you moved the model database, did you actually move the database files?
temp db is created upon the startup of the instance of SQL so will work by just doing...
December 7, 2011 at 6:48 am
IE will use windows authentication if it can and only if it cannot authenticate then it will prompt for a username and password.
Your windows account must be granted access to...
December 7, 2011 at 6:31 am
UNION ALL does give duplicates, if you dont want duplicates use UNION
December 7, 2011 at 6:20 am
you talking about when you went to the reports url e.g. http://reportingserver/reports or within bids on the data source?
if is the URL then you need to go into your...
December 7, 2011 at 6:05 am
union or union all can only have 1 order by so you will need to remove the first two order by
eg
select
col1, col2, col3
from
table1
union [all]
select
col1, col2, col3
from
table2
union [all]
select
col1, col2, col3
from
table3
order...
December 7, 2011 at 6:01 am
I used to get this problem a lot, and the article that Gail provided is great.
We where in a multi domain environment, parent, child eg
domain1.com
subdomain1.domain1.com
subdomain2.domain1.com
There where servers in all 3...
December 7, 2011 at 4:46 am
extract the ssis package from server1 then upload to server2
this is assuming that you have the same config, database names etc on server2 which are detailed in the MP's on...
December 7, 2011 at 4:25 am
excellent, thats good to hear
December 7, 2011 at 3:35 am
easiest route is this
1.create a new blank database in SQL
2.right click the new db --> tasks --> import data
3.follow the wizard step by step up to Save and Run package
4.save...
December 7, 2011 at 3:32 am
happy to help.
as i said in my original post, what is the business requirement for having dates as varchars? if there isnt any, I would recommend putting a task...
December 7, 2011 at 3:16 am
first of all, can you detail why you are storing dates as varchar and not datetime and what is the business requirements for doing this
secondly you could set dateformat =...
December 7, 2011 at 2:52 am
thats good that the database has come back online, but the root cause should be investigated as to why the DB went into recovery_pending and should be fixed to stop...
December 7, 2011 at 2:47 am
if you have the operators already set up on the job then it should work, as you have not change the way in which SQL agent sends its mail, just...
December 7, 2011 at 2:34 am
Viewing 15 posts - 6,001 through 6,015 (of 6,395 total)