Viewing 15 posts - 451 through 465 (of 1,409 total)
Your app (on the frontend) needs to replace the CHAR(10) and CHAR(13) characters from the stored value to the linefeeds used by this app. Most applications handle this stuff automatically...
May 9, 2014 at 8:18 am
The most easy way is to compare the number of records of your staging table with the total number of records of the ETL tables.
IF (select COUNT(*) from #stg)
=
(select COUNT(*)...
May 9, 2014 at 3:13 am
yuvipoy (5/7/2014)
It is SQL server 200 it does not have SSMS.
and thats too setting value in SSMS i dont think it will resolve.. in profiler...
May 7, 2014 at 5:27 am
yuvipoy (5/7/2014)
.....both did not gave me the entire Textdata. how can i get it, it limiting by 256 bytes
This could be the default limit in SSMS. Look in SSMS for...
May 7, 2014 at 3:41 am
can you elaborate on what you are doing (what steps did you take) and display the informational and/or error messages you get?
May 7, 2014 at 3:23 am
You can use the CASE statement to select the conditional value you need:
/*
for p_typ in 'IP' I will get all rows from TBL_a for that p_id
for p_typ in 'BP','0P' I...
April 28, 2014 at 5:23 am
You can change the (default-)collation of a database with the ALTER DATABASE command. But this doesn't change the collation of the existing objects!! You need to change each existing object...
April 28, 2014 at 4:18 am
You need to supply a complete script that will display your problem.
I've changed the code you provided so it will run without initial errors, but this code does NOT have...
April 4, 2014 at 8:27 am
You need to convert the current datetime (from GetDate() ) to a DATE datatype instead of a DATETIME datatype. When comparing this to a DATETIME value it will be converted...
March 28, 2014 at 7:44 am
You can query the [sys].[columns] table for the specific column name and translate the corresponding object_id to the table name. You can build a dynamic SQL statement inside that query....
March 28, 2014 at 5:53 am
mike 57299 (3/25/2014)
I have a 2012 SQL server. If I am on another machine on the nextwork and run SSMS to login to that server, I can.
1....
March 26, 2014 at 2:38 pm
The format "yyyy-dd-mm" will not be accepted as a datetime datatype. You have to provide the values in this format as a string.
Next it is a rebuilding of the string...
March 26, 2014 at 8:29 am
Or using the solution with OUTER APPLY:
declare @table table (value varchar(500))
insert into @table (value)
values('plan type A change from plan type B from Plan type C')
, ('Insurance plan M changed from...
March 19, 2014 at 9:04 am
When I remove the complete WHERE clause, I get results displaying the last execution of every job. Each job is displayed the number of times equal to the number of...
March 19, 2014 at 8:23 am
Read this article http://www.sqlservercentral.com/articles/CROSS+APPLY+VALUES+UNPIVOT/91234/. You most likely can solve your question with the information from this article.
March 19, 2014 at 7:01 am
Viewing 15 posts - 451 through 465 (of 1,409 total)