Viewing 15 posts - 16 through 30 (of 46 total)
Very good script .
January 25, 2016 at 12:20 am
have you tried storing the date value in the table then converting it to correct datatype ?
January 11, 2016 at 6:56 am
try specifying the database prefix in the sql query
September 29, 2015 at 1:35 am
you might have to run Repair of SQL Server instance, make sure you perform databases Backups before repairing
September 29, 2015 at 1:13 am
try this
EXEC sp_configure 'show advanced options', 1
RECONFIGURE
GO
EXEC sp_configure 'Agent XPs', 1
RECONFIGURE
GO
September 29, 2015 at 12:58 am
Under what service account does the Agent try to start?
on your Server Server Agent connection Properties, do you have Alias local host server defined there ?
if yes remove it leave...
September 29, 2015 at 12:42 am
Have you tried Manually Register Sqlncli.dll Using Microsoft Register Server ?
July 28, 2015 at 6:34 am
try something
SELECT DATENAME(month, GETDATE()) AS 'Month Name', Value From MyTable
July 27, 2015 at 4:29 am
The account and credentials you provided for the SQL Server Agent service are invalid. try using the default services account configuration during the SQL Server setup and update services account...
April 28, 2015 at 6:32 am
try to use IF NOT EXISTS when doing your insert
April 28, 2015 at 6:23 am
Nice Post .
is it advisable to have a recursive CTE on a large tables holding dates ?
March 18, 2015 at 1:17 am
Post the errors you getting when installing the SP
November 27, 2014 at 1:18 am
Take a Full backup of the database then perform transaction log backups.
run the code below will help identifying what causes the log to be big
select log_reuse_wait_desc from sys.databases where...
November 24, 2014 at 2:35 am
I don't have clean backup. For some reason, my customer stopped weekly backup and the last backup is several month ago
Since you don't have backup , try to repair...
February 26, 2014 at 4:21 am
Viewing 15 posts - 16 through 30 (of 46 total)