Viewing 15 posts - 136 through 150 (of 392 total)
To me, that looks like column 7 has an invalid value "0000-00-00 00:00:00". Is there blank data for that column in the source?
Since it's a datetime, is...
December 16, 2013 at 9:03 pm
Check that the TSR_ACCOUNT_VEHICLE table schema is the same between databases.
If it is, drop the article from publisher, drop table on subscriber. Add article, snapshot, should work according to...
December 16, 2013 at 1:13 am
SQL 2012 standard edition does not support Always On, you need enterprise edition.
You also need to have a cluster.http://technet.microsoft.com/en-us/library/ff878487.aspx
As I understand it (which may be incorrect), passive nodes do not...
December 16, 2013 at 1:03 am
Have a look for open source BI projects like Pentaho, http://en.wikipedia.org/wiki/Pentaho
Open source just means the software is free to use and modify.
December 16, 2013 at 12:48 am
That is a very generic question for a 400GB database.
You really need to look at some SQL performance tuning articles, how to analyse wait statistics, perfmon, SQL dmv's...
December 16, 2013 at 12:45 am
You need to add a subscription on the subscriber before running the snapshot agent.
eg
EXEC sp_addsubscription
@publication = N'<publication Name>',
@article = N'<Article Name>',
@subscriber = N'<Subscriber Name>',
@destination_db = N'<Destination...
December 11, 2013 at 12:58 am
Sounds like bad data to me, eg. Single digit month
declare @OKRGDT numeric(8,0)
set @okrgdt = '2012510' --missing 0 in month
print CONVERT(DATETIME,CONVERT(CHAR(8),@OKRGDT))
Try checking the data and ensuring it is in...
December 10, 2013 at 10:23 pm
Extended stored procedures only support C# and VB languages (also you should be using SQLCLR instead of XPs). You might be able to do it by calling powershell from...
December 10, 2013 at 9:38 pm
sqlfriends (12/6/2013)
The "." in ".\\" means "this" folder, the double backslash in the escape character \ followed by the actual \ - in total it means, "Default Backup path\"
Thanks,...
December 6, 2013 at 7:06 pm
You can set the default backup location in the registry using this command (replace the backup folder)
USE [master]
GO
EXEC xp_instance_regwrite N'HKEY_LOCAL_MACHINE', N'Software\Microsoft\MSSQLServer\MSSQLServer', N'BackupDirectory', REG_SZ, N'N:\MSSQL10_50.MSSQLSERVER\MSSQL\Backup'
GO
The "." in ".\\" means "this" folder,...
December 6, 2013 at 12:51 am
You should pull the data over the linked servers into a temp table, then join to that. When you join across the link, the local SQL server cannot evaluate...
December 6, 2013 at 12:44 am
Check that the SQL service is running, if not, check the SQL error log in Logs folder.
December 6, 2013 at 12:37 am
October 28, 2013 at 9:57 pm
You can rename the database to something other than the original name, then rename again to the original name without the space, eg.
USE [master]
sp_renamedb 'safe_PreTMS ', 'blah'
GO
sp_renamedb 'blah', 'safe_PreTMS'
GO
Obviously check...
October 2, 2013 at 10:14 pm
Viewing 15 posts - 136 through 150 (of 392 total)