Viewing 15 posts - 4,786 through 4,800 (of 6,400 total)
Certain things are stored in the default trace if its enabled, but by default only 5 20MB files are created and are rolled over once full, so you might have...
June 1, 2012 at 1:52 am
sure as long as you have a connection method that uses the correct credentials you can do what you want to the db.
June 1, 2012 at 1:44 am
First off I'm going to say, that I hope you understand that shrinking a database is not recommended or best practise and ensure that you perform index maintenance after your...
June 1, 2012 at 1:39 am
the config tool is good for looking at it in a GUI, but always check the XML config file as it can differ as the config file contains all the...
May 31, 2012 at 9:00 am
Depends what you want to do, DATEDIFF gets the difference between 2 dates, in this case you simply want to subtract 5 weeks from the current value which DATEADD is...
May 31, 2012 at 8:52 am
you could build it into a xml auto format pass it into an exec statement if you wanted to do it set based, but it will eventually only come out...
May 31, 2012 at 8:51 am
you will need to set the authentication to mixed mode (sql & windows) restart SQL, then create a SQL account under the security folder in SSMS on the actual server,...
May 31, 2012 at 8:38 am
There are a lot of things on google for that error message my google search which seem to imply its something to do the rsreportserver.config file.
May 31, 2012 at 8:33 am
DELETE FROM test1 WHERE col1 <= DATEADD(WEEK,-5,GETDATE())
Will delete anything where col1 is 2012-04-26 (based on today) or less
May 31, 2012 at 8:27 am
first link i found when googling
http://jahaines.blogspot.co.uk/2010/04/t-sql-tuesday-005-creating-emailing.html
May 31, 2012 at 8:22 am
sp_who2 or sys.dm_exec_requests/sys.dm_exec_sessions will get you the information you need.
if the query window was closed and didnt commit it will be rolling back the transaction. if the query window...
May 31, 2012 at 8:17 am
If the data needs to be accessable to users on the other server, then you will want a combination of backups and either logshipping, mirroring, replication.
If the data doesnt need...
May 31, 2012 at 7:37 am
are you talking backups as in BAK and TRN files or copying the db's so that they can be used on the other server?
May 31, 2012 at 6:43 am
this link should help you out
http://msdn.microsoft.com/en-us/library/cc645954%28v=sql.105%29.aspx
May 31, 2012 at 6:39 am
are you in a domain environment or a workgroup environment?
if workgroup you will need to use SQL authentication to connect, otherwise if your in a domain environment ensure that your...
May 31, 2012 at 6:21 am
Viewing 15 posts - 4,786 through 4,800 (of 6,400 total)