Viewing 15 posts - 1,201 through 1,215 (of 1,417 total)
Check the security settings within the Report Server site and add the credentials you use with Visual Studio. Assign "System Administrator" rights to the account.
If you don't have the rights...
May 7, 2013 at 2:50 am
If you create a new AUDIT from SSMS the first window gives you the option to select the destination. The available options are "File", "Security Log" or "Application Log". When...
May 7, 2013 at 2:27 am
You can add a CASE statement and use this to assign a specific value to the row, depending on the condition. By sorting on this value in combination with a...
May 7, 2013 at 2:08 am
Hi,
I'm sorry I misunderstood your problem. I tried it by doing some testing and I was able to reproduce the error.
I created a SQL account and granted all but sysadmin...
May 2, 2013 at 7:36 am
Hi,
On the printscreen with the error message you don't have a filename entered by "Destination on disk". You do have specified a folder, but if you don't add a filename...
May 2, 2013 at 4:02 am
When clicking to the backup folder the filename for the backup is not specified and should be entered manually. You can only click to a file when this (backup-)file allready...
May 2, 2013 at 2:37 am
Easy one 😉
Allthough I got it wrong because I didn't read the whole query :blink: I forgot the " WHERE (SELECT MAX(C1) FROM dbo.T1) > C1" part.
February 28, 2013 at 9:10 am
sorry, a problem with my browser generated a double post
November 16, 2012 at 5:07 am
I guess you have a typo of some kind in the connection string. Can you access and load from the Excel file using the import/export wizard?
When you save the import/export...
November 16, 2012 at 5:07 am
And you can do this by using T-SQL:
USE [msdb]
GO
EXEC msdb.dbo.sp_detach_schedule @job_name=N'name of the job', @schedule_name='name of schedule', @delete_unused_schedule=1
GO
November 16, 2012 at 5:01 am
Stewart "Arturius" Campbell (5/15/2012)
Nice, simple question, thanks Stevewhat is disturbing is how many (45% at this point in time) of responders selected "yes".
Unfortunate I was one of the 45% answering...
May 15, 2012 at 3:54 am
small typo in the code from Jeff Moden...
SELECT * FROM dbo.mytable WHERE CHARINDEX(@FirstName,FirstName) + 0
should be
SELECT * FROM dbo.mytable WHERE CHARINDEX(@FirstName,FirstName) > 0
:hehe:
March 14, 2012 at 10:46 am
Thanks Lowel and Chris,
Your ideas point me to some new thoughts. I think it must be possible to transfer DDL from system tabels to a central location. By joining these...
June 4, 2010 at 7:00 am
Thanks Grant,
I will look into scripting Redgate SQL Compare. I was hoping someone knew a tool that has this function built-in. That would save me quite some work.
But this will...
June 4, 2010 at 3:36 am
The most important thing is to ship a product that is working 100% correct. If not all functionality is available, swah, it can be added later. But it is very...
July 15, 2009 at 7:50 am
Viewing 15 posts - 1,201 through 1,215 (of 1,417 total)