Viewing 15 posts - 1 through 15 (of 41 total)
shew (5/18/2011)
Mr James Howard (12/4/2009)
What an annoying problem! The job is working again for me now, the issue is a bug...Read this:
That link does not work for me.
By the...
January 5, 2012 at 3:38 am
Take a look at the scripts section of this site. There are tonnes of different monitoring scripts there which you can pick and choose from to build up an alert...
June 3, 2010 at 2:12 am
Give this a try...
WITH perms_cte as
( select USER_NAME(p.grantee_principal_id) AS principal_name,
dp.principal_id,
...
April 1, 2010 at 2:55 am
You don't NEED to back the transaction log. Its an option thats available should you need high recoverability. Basically, if you have a failure, whats the earliest time that your...
April 1, 2010 at 2:44 am
1) It depends on the point in time you want to restore to. You can restore to the last full/diff backup, or to a later point in time depending how...
April 1, 2010 at 1:55 am
What an annoying problem! The job is working again for me now, the issue is a bug...
Read this:
December 4, 2009 at 6:03 am
Hi,
you can use OPENROWSET to import from excel eg:
SELECT *
INTO tblMyTable
FROM
OPENROWSET('Microsoft.Jet.OLEDB.4.0'
,'Excel 8.0;Database=C:\myspreadsheet.xls'
,'SELECT * FROM [Sheet1$]'
)
December 3, 2009 at 5:13 am
Hi,
Yes I have just seen similar messages now.... hmm...
take a look at this link
Specifically the overview part that states "The Microsoft OLE DB Provider for ODBC (MSDASQL) is a technology...
December 2, 2009 at 6:00 am
Hi,
you can use OPENROWSET to import from excel eg:
SELECT *
INTO tblMyTable
FROM
OPENROWSET('Microsoft.Jet.OLEDB.4.0'
,'Excel 8.0;Database=C:\myspreadsheet.xls'
,'SELECT * FROM [Sheet1$]'
)
December 2, 2009 at 4:54 am
have a read here:
http://social.msdn.microsoft.com/Forums/en-US/sqltools/thread/d659a1e3-a493-4d20-a8dd-226720e78503/
January 27, 2009 at 10:24 am
--Create the linked server
EXEC sp_addlinkedserver 'ADSI', 'Active Directory Services 2.5',
'ADSDSOObject', 'adsdatasource'
--Create the login account
--(change SQL_ACCOUNT_NAME, --NT_ACCOUNT_NAME, PASSSWORD)
EXEC sp_addlinkedsrvlogin 'ADSI', False, 'SQL_ACCOUNT_NAME',
'NT_ACCOUNT_NAME', 'PASSWORD'
--Execute your query
SELECT samAccountName, givenName [First Name],...
January 27, 2009 at 7:37 am
as Grant said, it depends what they will be doing so real life case studies are usually a good bet...
January 26, 2009 at 10:30 am
Did you try sp_attach_single_file_db ? fingers crossed that it works...
Have you any backups?
January 26, 2009 at 10:27 am
Viewing 15 posts - 1 through 15 (of 41 total)