Viewing 15 posts - 151 through 165 (of 541 total)
Koen Verbeeck (3/20/2013)
Another option is to use XSLT to transform the XML file to an easier format, such as .csv.An example:
You'll need to define an XML...
March 21, 2013 at 2:16 am
You can dump it into 1 row as a single blob and then use select for xml to manipulate it.
create table docs (pk int primary key, xcol xml not null)
insert...
March 20, 2013 at 12:48 pm
i think (not 100% sure) the closest you'll ever come with extended events is using the sqlos.wait with sqlos.cpu_id and sqlos.node_affinity.
below code was not tested:
CREATE EVENT SESSION [Check CPUusage] ON...
February 25, 2013 at 1:15 pm
You should start reading Paul's article first:
http://technet.microsoft.com/en-us/magazine/2009.01.sql2008.aspx
Then from SSC Extended Events QA:
http://www.sqlservercentral.com/blogs/vinaythakur/2011/12/23/basics-qa-on-extended-event/%5B/url%5D
Then try some examples from SSC:
http://www.sqlservercentral.com/articles/deadlock/65658/%5B/url%5D
BOL:
http://msdn.microsoft.com/en-US/library/bb630355%28v=sql.100%29
http://msdn.microsoft.com/en-US/library/bb677357%28v=sql.100%29
Then download the add-in and create your own.
http://extendedeventmanager.codeplex.com/releases/view/35325
February 25, 2013 at 10:55 am
on s2 there is more data then on s1 so chances are some kind of an aggregate function in your sp could slow it down.
February 11, 2013 at 12:38 pm
No i meant your SAN/VM configurations depend on what kind of database system will be running on that VM like OLTP, 3rd party Application databases like payroll or salesforce or...
February 7, 2013 at 12:20 pm
DONT FORGET ALTER LOGIN [DOMAIN1\USER] with name=[DOMAIN2\USER]
February 6, 2013 at 1:28 pm
Sergei Zarembo (2/6/2013)
AlexSQLForums (2/6/2013)
Can you delete S2 report and copy S1 .rdl file to S2 and relink it to the data source and run it?
Alex,
By *copying rdl* you really mean...
February 6, 2013 at 1:11 pm
Can you delete S2 report and copy S1 .rdl file to S2 and relink it to the data source and run it?
February 6, 2013 at 12:07 pm
Yes there is but of course it all depends on your environment.
February 6, 2013 at 11:55 am
Do you realize you're sending the whole tbladmin in your email?
Triggers use inserted and deleted tables and your query is not specifying any of them
select adminname,resposibility1,mailid from customer.dbo.tblAdmin
you should change...
December 20, 2012 at 8:27 am
dont forget to use
dateadd(s, 875996580, '1/1/1970') for from_unixtime.
convert_tz function does not exist in sql server so best bet is using aux table or datetimeoffset datatype.
December 19, 2012 at 1:28 pm
Those little locks just mean that the files have limited access.
for moving system databases follow these steps
http://www.sqlservercentral.com/blogs/basits-sql-server-tips/2012/07/29/how-to-move-master-and-resource-system-databases/%5B/url%5D
October 25, 2012 at 1:51 pm
Shouldn't be any problems but tested in Dev first.
September 11, 2012 at 1:50 pm
Viewing 15 posts - 151 through 165 (of 541 total)