Viewing 15 posts - 4,786 through 4,800 (of 6,395 total)
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
Well you will need to find the level of rights which securityadmin gives the user then use the DENY keywords to manually deny the permissions you dont want them to...
May 31, 2012 at 4:52 am
You dont have access to the SSRS DB or Local System doesnt? Is the report db on your local machine or is it on a remote server?
May 31, 2012 at 4:40 am
I will second that John, last selection I had was at the local beer festival http://www.beer-festival.co.uk/, had a very good range of cask, other than that not really much good...
May 31, 2012 at 4:25 am
running as local system which is a highly priviledge account, should really be running your services with a less priviledge account, that aside, check that local system has access to...
May 31, 2012 at 4:17 am
Viewing 15 posts - 4,786 through 4,800 (of 6,395 total)