Viewing 15 posts - 10,846 through 10,860 (of 15,376 total)
Kumar SQL (9/4/2012)
Thanks a lot for your reply!Getting error at "dbo.DelimitedSplit8K" and may i know what is Item in your query. I am new to these concepts.
Can you please eloborate...
Thanks!
Kumar
No...
September 4, 2012 at 12:50 pm
bindish (9/4/2012)
I am checking in SSMS . In ch it shows 43600 characters.
That is why you can't see all the data. There is an option to increase this but still...
September 4, 2012 at 12:49 pm
Lynn Pettis (9/4/2012)
Sean Lange (9/4/2012)
sivajii (9/4/2012)
http://www.sqlservercentral.com/articles/Indexing/68439/
here i didn't understand
if there is an simple example means i can i understand easily
select * from sys.indexes
select *...
September 4, 2012 at 12:24 pm
bindish (9/4/2012)
Yes data is there but its only 43600 characters. But the total size is 115000 characters.
So how do you know there is only 43,600 characters? Are you looking at...
September 4, 2012 at 12:20 pm
sivajii (9/4/2012)
http://www.sqlservercentral.com/articles/Indexing/68439/
here i didn't understand
if there is an simple example means i can i understand easily
select * from sys.indexes
select * from sys.index_columns
...
September 4, 2012 at 12:09 pm
bindish (9/4/2012)
I have one table with one field called "vLargeData varchar(max)" datatype. I am inserting data into table and that data size is 115000. After inserting when I am checking...
September 4, 2012 at 12:00 pm
Nice job posting ddl and sample data. The description was a little confusing but after a few reads I think I understood it.
This can be accomplished using a combination of...
September 4, 2012 at 11:11 am
PiMané (9/4/2012)
I'm analyzing an existing app from a client that uses a lot a SP that has inserts on a temporary table to process the data.
Are temporary tables better than...
September 4, 2012 at 10:53 am
You could just add some simple datepart logic.
declare @RunDate datetime
set @RunDate = '8/31/2012' --this would be getdate() in your code
select MONTH(@RunDate), MONTH(@RunDate + 1)
Then don't run your code when they...
September 4, 2012 at 10:45 am
Lynn Pettis (9/4/2012)
Sean Lange (9/4/2012)
September 4, 2012 at 9:00 am
the original store proc it which i mentioned there was working but it take more than 10 minutes to execute
That is because your where clause is not sargable. That...
September 4, 2012 at 8:58 am
Tava (9/3/2012)
September 4, 2012 at 8:49 am
Charmer (9/4/2012)
Mark Eckeard (9/4/2012)
select replace(YourColumnNameHere, '.00', '0.00')
This worked when I tested it using this...
September 4, 2012 at 8:43 am
This is because your sql is timing out.
Message : Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
You can adjust the...
September 4, 2012 at 8:39 am
If performance is a concern you should take a look at the link in my signature about splitting strings. Depending on what you are using for a splitter it may...
September 4, 2012 at 8:35 am
Viewing 15 posts - 10,846 through 10,860 (of 15,376 total)