Viewing 15 posts - 211 through 225 (of 262 total)
September 8, 2008 at 12:15 pm
Using your Windows Explorer from the server where SQL server is instaleld try to get to the folder you are specifying for the linked server.
If "A" is a name of...
September 8, 2008 at 11:52 am
bindueldo,
leave RMTUser name empty. If you are not using custom build security in Access, access user name should be omitted.
If your SQL server account is running under domain account security...
September 8, 2008 at 11:19 am
I guess there are two questions in one thread. However, to begin with: is it possible to clarify what version of SQL server are we talking about?
What is the nature...
September 8, 2008 at 11:06 am
Your security on the linked server should use authentication which will allow authenticated account accessing the file share of Access DB.
"Admin" is a default user of Access database, not a...
September 8, 2008 at 10:59 am
If it is for the reasons of an external SQL generator, can you substitute actual columns order by using extended properties on the columns?
This way, your solution will be flexible...
September 8, 2008 at 10:52 am
September 8, 2008 at 10:39 am
BOL for sp_changedbowner:
[@loginame = ] 'login'
Is the login ID of the new owner of the current database. login is sysname, with no default. login must be an already existing...
September 8, 2008 at 10:32 am
I think (and I saw it somewhere on Crystal support Web site), that simply copying deleted DLL files from installation CD in to the dedicated folder will fix the problem.
September 8, 2008 at 10:24 am
When you are backing up or restoring - it is SQL server accounts that are accessing the share. If your SQL server accounts do not have modify rights on the...
September 8, 2008 at 10:21 am
jsheed,
the link I provided contains a chapter "Example of WMI Event Alert".
This chapter contains a step-by-step instructions and code that you need to run. That is the easiest and most...
September 8, 2008 at 10:08 am
Sorry. Here is the final version:
You have to make sure that the folder d:\Data exists.
declare @name nvarchar(200)
declare @month nvarchar(100)
declare @year nvarchar(100)
declare @filename nvarchar(900)
set @filename = N'D:\Data\'+@name+ '_Data.MDF'
set @month = month(convert(nvarchar(16),getdate(),112))
set...
September 8, 2008 at 9:41 am
Example of WMI Event Alert:
http://www.microsoft.com/technet/prodtechnol/sql/2005/newsqlagent.mspx
September 8, 2008 at 9:28 am
Several syntacs mistakes:
declare @name nvarchar(200)
declare @month nvarchar(100)
declare @year nvarchar(100)
declare @filename nvarchar(900)
set @filename = N'D:\Data\'+@name+ '_Data.MDF'
set @month = month(convert(nvarchar(16),getdate(),112))
set @year = year(convert(nvarchar(16),getdate()))
set @name = N'Weblog'+@year+@month
--print @name
print @filename
-- This step will take...
September 8, 2008 at 9:24 am
Can you please provide details on the notification requirements?
The easiest way would be to use SQL Server Agent and WMI providers with "net send" alert notification.
September 8, 2008 at 8:30 am
Viewing 15 posts - 211 through 225 (of 262 total)