Viewing 15 posts - 12,961 through 12,975 (of 15,381 total)
GP_NC (2/19/2012)
February 19, 2012 at 2:55 pm
Can you post ddl including indexes for the tables?
February 17, 2012 at 1:25 pm
Have you tried removing NOLOCK? You really should remove nolock regardless unless there is a good reason for it. In case you have never read it, here is a great...
February 17, 2012 at 1:16 pm
Hi and welcome to SSC! It will help you get better answers if you can post ddl (create table scripts), sample data (insert statements) and desired results based on that...
February 17, 2012 at 9:23 am
SQL Guy 1 (2/17/2012)
set quoted_identifier off
BEGIN tran
...
February 17, 2012 at 9:13 am
What exactly are you looking for? Are you trying to get the full ddl of all your tables including indexes, constraints, defaults, triggers, etc??? You should look into some sql...
February 17, 2012 at 7:46 am
GP_NC (2/16/2012)
February 16, 2012 at 3:08 pm
sql.kishore1 (2/16/2012)
It Did not worked
What does that mean? Did it not do what you expected? Did it do something else? Did you get an error message? Did your computer blowup?...
February 16, 2012 at 1:40 pm
Oh I am beginning to now see the real issue. Your data is not normalized and you are trying to figure out to make it work with a poor data...
February 16, 2012 at 1:36 pm
I think a bit more clarity of the scenario is required. What you have described is an infinite loop.
...paraphrased from your description...
I want to create an insert trigger on table1...
February 16, 2012 at 1:28 pm
As Craig said, without tables and sample data this is pretty tough for us to help.
I tossed this quick example together to show you how you could use a tally...
February 16, 2012 at 1:22 pm
To give you an example of how to use the splitter in that article with your sample data:
create table #MyTable
(
ID int,
SomeValue varchar(50)
)
insert #MyTable
select 12345, 'kais#2323232#def#323#'
select ID, Item from #MyTable
cross apply...
February 16, 2012 at 12:59 pm
Lowell not sure what you are developing in but make sure you specify the DOCTYPE or border-collapse can have some strange results.
February 16, 2012 at 7:12 am
Viewing 15 posts - 12,961 through 12,975 (of 15,381 total)