Viewing 15 posts - 1 through 15 (of 53 total)
Hi,
Did you find what is causing this issue ? I am experiencing the same problem on a live server.
It happens randomly in different tables where cdc is enabled and to...
September 27, 2016 at 10:54 am
Running the create procedure inside a new windows works fine, but not through sp_executesql.
Any idea ?
January 10, 2014 at 7:49 am
Hi, thanks.
This is the message :
Msg 103, Level 15, State 4, Procedure PROC_V3N_VENTIL_ACTION, Line 49
The identifier that starts with ' SELECT DISTINCT vfd.id_da, vfd.site, pd.nom as pdnom, vfd.fan, i.id_personne,...
January 10, 2014 at 7:08 am
Hi, i'm trying this :
DECLARE @query nvarchar(max)
select @query = S.DEFINITION
from sys.all_sql_modules s
inner join dbo.sysobjects s2 on s2.id = s.object_id
where s2.name='PROC_V3N_VENTIL_ACTION'
exec sp_executesql @query
It's truncating the @query so i get a...
January 10, 2014 at 4:08 am
Hi SSC Journeyman, 😀
Maybe another approach could be partitionning your table.
Hope it helps. 😎
October 21, 2013 at 1:34 pm
Hi YSLGuru, 😀
You can split backups over multiple files within SSMS or, if you already have a backup, split it with a compression tool like winzip, winrar, etc
Hope it helps....
October 21, 2013 at 12:27 pm
Hi shahgols, 😀
I'm not an expert on Replication, but i'll try to give you an answer :
1) Yes, you can replicate some objects.
2) Not sure how to respond to this...
October 21, 2013 at 12:14 pm
Hi sqlpadawan_1, 😀
For reporting purposes, i would recommend you to use log shipping if you need up to date data in your read-lony database. If having data from D-1 is...
October 21, 2013 at 11:58 am
Jeff Moden (10/20/2013)
jonysuise (10/20/2013)
To delete a large number of rows switch the recovery model of your database (in your development environment) to...
October 20, 2013 at 12:49 pm
Hi paulmfinn, and welcome to the forum 😀
Personally, i recommend you to go for the MCSA 2012 certification path. It's pretty similar to SQL Server 2008 and your knowledge will...
October 20, 2013 at 12:40 pm
Hi simonholzman 14059, and welcome to the forum 😀
To delete a large number of rows switch the recovery model of your database (in your development environment) to bulk-log, run your...
October 20, 2013 at 4:05 am
asranantha (10/19/2013)
table data look like below
table :emp
id...
October 20, 2013 at 3:53 am
Jeff Moden (10/19/2013)
jonysuise (10/19/2013)
Jeff Moden (10/18/2013)
jonysuise (10/18/2013)
Hi asranantha, 😀I would use COALESCE AND CASE, because it's SQL standard.
I would use just ISNULL AND NULLIF (like Sean did) because you...
October 20, 2013 at 3:45 am
Hi Balasach82,
An unsigned integer does not hold negative values. The value range is from 0 to the maximum of the datatype.
http://bi-architects.blogspot.fr/2011/12/ssis-datatypes-vs-sql-server-datatypes.html
Hope it helps.
October 19, 2013 at 1:09 am
Jeff Moden (10/18/2013)
jonysuise (10/18/2013)
Hi asranantha, 😀I would use COALESCE AND CASE, because it's SQL standard.
I would use just ISNULL AND NULLIF (like Sean did) because you don't have unexpected...
October 19, 2013 at 12:56 am
Viewing 15 posts - 1 through 15 (of 53 total)