Viewing 15 posts - 76 through 90 (of 193 total)
GilaMonster (6/21/2013)
http://sqlinthewild.co.za/index.php/2011/03/22/statistics-row-estimations-and-the-ascending-date-column/
Thanks for reply
So i have to update statistics regularly for large tables right?
June 21, 2013 at 4:31 am
hi kapil
In the link you have mentioned there i found below queries
DECLARE @tbl TABLE
(
id INT,
col XML
)
INSERT INTO @tbl
VALUES
(1,'<name><name1>5</name1></name>'),(2,'<name>6</name>')
DECLARE @id int
SELECT @id = 6
SELECT ...
June 21, 2013 at 3:12 am
Hi Lowell
You are correct.If i select in options then it works.
But there is an exception.If i am using "script entire database and all database objects" while generating script then...
June 17, 2013 at 6:47 am
Lynn Pettis (5/3/2013)
1. Script the database...
June 17, 2013 at 12:29 am
Allow null is allowed for these column. I also checked that for which column this difference comes? For about columns with datatype int NULL was replaced with 0. For another...
June 5, 2013 at 6:23 am
In edit option there is no option for it.When i checked there was only 3 options Drop and recreate the destination table,Delete rows in destination table,Enable identity insert. So i...
June 5, 2013 at 3:35 am
Hi matthew..
i got it
To change the value in a XML column i need to first extract the value as a float and write it back as an int.
Something like this.
update...
May 24, 2013 at 8:02 am
Hi Matthew
It worked nice. But can i avoid these scientific notation while saving to xml itself?
May 24, 2013 at 4:57 am
I have got answer for my question
Please check this post
May 22, 2013 at 1:52 am
this is the query :
SELECT [DesignChanges].* FROM [Checklists].dbo.[DesignChanges]
WHERE
(
Charindex('jyo',[Checklists].dbo.[DesignChanges].[AllotedTo])>0 AND
(
...
May 7, 2013 at 11:55 pm
Whether any other tweaks available which can help me to remove replication related data from it? The problem is now i need sql server standard to add a publisher to...
May 3, 2013 at 5:53 am
Whether i can use selective xml index? Does it available in sql server 2008 r2 express?
May 3, 2013 at 5:48 am
It had replication set in it about 6 months back. But now it is removed.
As you said i can add replication once again and remove it.But it is a production...
May 3, 2013 at 4:20 am
Ok. But while creating PATH type index is there needed to specify the path which i use?
I don't know much about xml indexing. But for other datatypes there is...
May 3, 2013 at 3:15 am
After detaching and attaching the database when i run query nothing returns. So it is solved.
But while running dbcc opentran i am getting output like following.
Transaction information for database 'Reg_test'.
Replicated...
May 3, 2013 at 1:57 am
Viewing 15 posts - 76 through 90 (of 193 total)