Tuesday, September 17, 2013

[Articles] Sensors and Data

[Articles] Sensors and Data


Sensors and Data

Posted: 16 Sep 2013 11:00 PM PDT

In the future we'll have a more programmable world, but it will be driven more by data than software.

[SQL 2012] Since Text and NText are being deprecated, what is the best data type to use for a Full text Index ?

[SQL 2012] Since Text and NText are being deprecated, what is the best data type to use for a Full text Index ?


Since Text and NText are being deprecated, what is the best data type to use for a Full text Index ?

Posted: 17 Sep 2013 03:14 AM PDT

I know varchar and nvarchar are the obvious ones, but i have noticed some developers using Varbinary and XML.Would there be any advantages in using Varbinary or XML?Thanks

Sql 2012 AlwaysOn Backups on All Servers?

Posted: 17 Sep 2013 03:05 AM PDT

I'm setting up a VM development environment and was wondering if it's possible with Sql 2012 AlwaysOn to get backups on all the servers in the availability group. I understand the point of offloading backups to your secondary machine is so your primary doesn't have to dedicate resources to backup jobs but we don't do a lot of work overnight so it's not a problem to take full backups on the primary in the middle of the night. We take tlog backups throughout the day. So, wouldn't it be better to take backups on the primary and secondary in case the primary server dies? I've played with the settings in the Back Up Database Task in Maintenance Plans and can't find a good way to have both the primary and secondary replicas take a backup, regardless of which is primary and which is secondary.Am I missing some easy way to do this? Thanks in advance for your opinions or suggestions.Tim

Microsoft's Data Virtualization Strategy

Posted: 16 Sep 2013 05:26 AM PDT

It seems to me that SSAS tabular models have some similar features when compared to data virtualization software, but the following cites "the combination of BizTalk, SQL Server Integration Services, Visual Studio, and SQL Server " as a Data Virtualization equivalent Microsoft.Where do we go if we want the true Data Virtualization features? ....outside of Microsoft?http://hendriekusr.wordpress.com/2012/10/10/data-virtualization/..excerpt from the above:VendorsThe Forrester wave, lists the following vendors, in their respective rankings:1. Informatica2. IBM3. Composite Software4. Denodo Technologies5. SAP6. Microsoft7. Stone Bond Technologies8. Red Hat9. OracleIt is clear that Informatica leads the pack, from a pure product perspective, by having Distributed Access, Data Services Implementation, Data Services Quality and Transformation, obtain a very high score.It is slightly mind-boggling why Microsoft has achieved such a high-ranking in this space. They provide BizTalk, SQL Server Integration Services, and Visual Studio as their Data Virtualisation tool set. Forresters comment on it as follows: "Although Microsoft does not actively market a productized data virtualization solution, customers often find that the combination of BizTalk, SQL Server Integration Services, Visual Studio, and SQL Server delivers a powerful option to create a data services layer, especially when using the Microsoft platform."

Why logs so big

Posted: 17 Sep 2013 02:32 AM PDT

I have a small db at my client site (SS2012,MS Server 2008) with an Access front end. It does some importing through Access (imports Excel workbooks created by the corporate server....) These are necessarily big, and they are replaced into a table on each import because the corporate server doesn't provide a key column. No big deal, I work through it, but I can't quite figure out why my log file is so big....On Mondays, the log file should get big, because all the imports are run on Mondays. But then, every morning at 3 AM, I have a backup sequence that backs up the entire instance, then (I thought...) truncates the log files. Yet, here it is Tuesday and the log files are huge (twice the size of the db....) My best guess is that I never truncate the space occupied by the logs, just delete the logs themselves.... I guess that's OK, but it seams like a lot of wasted space....Log file...6330 MB, DB file...3682 MBBackiup script (SQL Server Agent Job...)[url]https://picasaweb.google.com/lh/photo/2rlN0nnxNR-sWWefPJZkudMTjNZETYmyPJy0liipFm0?feat=directlink[/url]

excluding a range in a query

Posted: 16 Sep 2013 09:44 PM PDT

Hi AllCan someone perhaps put this in an example query please?exclude all "BA" items except BA00044Many thanks

Report deploying in ssrs

Posted: 16 Sep 2013 07:09 AM PDT

Hi I have designed a basic report in SSRS and was able to see the report data in the preview section and I did check the reporting URL in diff browsers.But when I try to deploy the project it's throwing an error - The specified report server URL could not be found.verify the syntax of the url and report server exists.Any ideas?Thanks.

Schemas

Posted: 16 Sep 2013 07:43 AM PDT

In the SQL command what is the correct syntax for creating a schema....I have tried both double and single quotes in the authorization owner_name but continually getting message saying user does not exist

At what point do stoplists actually start improving performance ?

Posted: 16 Sep 2013 05:33 AM PDT

I have two exactly the same tables with 4.5 Million resumes indexed with FTI, and a clustered unique ID.One table has the standard Microsoft 154 English stopwords.The other table has 10000 stopwords.Prior to running each query, i ran anUPDATE STATISTICS Tablename WITH FULLSCAN Then i ran a DBCC Freeproccache.Then i ran the following query:set statistics time on --select count(*) from Profiles91313bb select count(*) from Profiles where contains(doccontent, 'resume')and the results are basically identical, around 1.05 seconds.Is this because 4.5 Million records, with up to 10000 stoplist words per resume, is just not enough data to cause index bloat ?Thanks

[T-SQL] UTC Conversion problem

[T-SQL] UTC Conversion problem


UTC Conversion problem

Posted: 16 Sep 2013 06:58 AM PDT

Have this query that if you run it past the 16 hour it throughs this error....I"m stumped?? If you run it as is runs fine, but if you try to designate a specific hour bombs out. What am I missing??ALTER PROCEDURE **** ( @Hour INT = NULL , @Application VARCHAR(30) = 'Shamoo' )AS DECLARE @UTCDiff INT , @Start DATETIME , @End DATETIME IF @Hour IS NULL SELECT @Hour = DATEPART(hh, GETDATE()) - 1--SET @Hour = '11' -- (INT Value. Ex: "11" for 11 o'clock of current day hour)--SET @Application = '' -- CHOOSE FROM :-- COCO-- MMS-- PAS-- SHAMOO-- TOOLS-- UBERMAIL SELECT @UTCDiff = DATEDIFF(HOUR, SYSUTCDATETIME (), GETDATE()) * -1 SELECT @Start = CONVERT(NVARCHAR(50), DATEPART(MONTH, SYSUTCDATETIME ())) + '/' + CONVERT(NVARCHAR(50), DATEPART(DAY, SYSUTCDATETIME ())) + '/' + CONVERT(NVARCHAR(50), DATEPART(YEAR, SYSUTCDATETIME ())) + ' ' + CONVERT(NVARCHAR(50), @Hour + @UTCDiff) + ':00:00' SELECT @End = CONVERT(NVARCHAR(50), DATEPART(MONTH, SYSUTCDATETIME ())) + '/' + CONVERT(NVARCHAR(50), DATEPART(DAY, SYSUTCDATETIME ())) + '/' + CONVERT(NVARCHAR(50), DATEPART(YEAR, SYSUTCDATETIME ())) + ' ' + CONVERT(NVARCHAR(50), @Hour + @UTCDiff) + ':59:59'-- SiteCatalyst Errors IF @Application = '' BEGIN SELECT [MESSAGE] , url , Cnt = COUNT(*) , MinTimeUTC = MIN(TimeUtc) , MaxTimeUTC = MAX(TimeUtc) FROM weblogging.dbo.elmah_error WITH ( NOLOCK ) WHERE APPLICATION = 'SHAMOO' AND timeutc BETWEEN @Start AND @End AND MESSAGE != 'Invalid viewstate.' -- Excluded in SiteCatalyst alerts GROUP BY [message] , url ORDER BY cnt DESC , MESSAGE END ELSE BEGIN SELECT [MESSAGE] , url , Cnt = COUNT(*) , MinTimeUTC = MIN(TimeUtc) , MaxTimeUTC = MAX(TimeUtc) FROM weblogging.dbo.elmah_error WITH ( NOLOCK ) WHERE APPLICATION = @Application AND timeutc BETWEEN @Start AND @End AND MESSAGE != 'Invalid viewstate.' -- Excluded in SiteCatalyst alerts GROUP BY [message] , url ORDER BY cnt DESC , MESSAGE END

cursor question

Posted: 16 Sep 2013 06:14 AM PDT

Hi guys,Can i load a cursor from a procedure?Like DECLARE cursor_importedPatients CURSOR FOR EXEC procedureThanks!

How do I remove the Nulls in my output?

Posted: 16 Sep 2013 01:32 PM PDT

CREATE TABLE #Total_Count (NUM_DEATHS_1870 numeric (8,0), NUM_DEATHS_1880 numeric(8,0)) INSERT INTO #Total_Count (NUM_DEATHS_1870)(SELECT COUNT (*) COD FROM [dbo].[1870_1880_DAT]WHERE YR_Died = '1870')INSERT INTO #Total_Count (NUM_DEATHS_1880)(SELECT COUNT (*) COD FROM [dbo].[1870_1880_DAT] WHERE YR_Died = 1880)MY OUTPUTNUM_DEATHS_1870 NUM_DEATHS_1880612 NULLNULL 720

Advice on complex logic with embedded functions.

Posted: 16 Sep 2013 09:22 AM PDT

Hi,I have a scenario were under certain circumstances I need to use the earliest start date and then the latest finish date then work out days between these dates for records that need to be grouped together by a typeLatest finish date - earliest start date.In other circumstances, but using data from the same table I need to just use the start and finish date working out the days between without grouping by type.Finish date - start date.This determines the number of days another calculation needs to be greater than in order to qualify for my query. If the days between falls between certain ranges this gets me the days to be greater than called a qualifying period. The other calculation takes the start date, same as number 2 above and measures the days between.Actual finish - start dateI then check to see if this number of days is > the qualifying days.To determine if I should use just the start / finish date or the latest start / finish date I have a function that analysis about 10 parameters to work out what the rows type are first and then I can work out which method to use.All the information for parameters comes from three tables. All joined with inner joins.At the moment I feel I have functions embedded with functions and its not clean but messy.Just woundering how other people tacke complex scenarios like these. One option is I can pass in the rows unique id, have a select statement in a function get everything it needs and perform the calculation, but this feels I would be selecting from the same tables twice when I can use things like Max(date) over (Id) type logic.I could have a view with all the complex logic and self join using the Id mentioned above but this feels it would perfom not as well.Because the data is from 3rd party database, we cannot add indexes to improve performance or add application logic. I can select data only.Thank youEliza

[SQL server issues] Commented Issue: AdventureWorksDW2008R2 DimDate table has missing dates [13383]

  1. AdventureWorksDW2008R2 DimDate table has missing dates

    sqlserversamples.codeplex.com/workitem/13383 - Cached - Similar
    28 May 2010 ... AdventureWorksDW2008R2 DimDate table has missing dates. description. There
    is a gap in dates between 2008 and 2010 in the AdventureWorksDW2008R2
    DimDate table. ... The attached script will fix the problem. Use the ... Sign in to
    add a comment or to set email notifications ... Item number: 13383.

  2. Microsoft SQL Server Community & Samples - Issues

    sqlserversamples.codeplex.com/workitem/list/basic - Cached
    22 Feb 2013 ... There seams to be an issue with the AdventureWorksDW2012 Data file
    download. ... The pages will list comments, but don't show a way to add them. ...
    AdventureWorksDW2008R2 DimDate table has missing dates ... Id #13383 |
    Release: None | Updated: Feb 22 at 1:37 AM by petermyers | Created: May ...

  3. Commented Issue AdventureWorksDW2008R2 DimDate table has ...

    timnhanh.thietkewebtl.com/s%5CCommented-Issue- AdventureWorksDW2008R2-DimDate-table-has-missing-dates-13383.html
    28 May 2010 ... AdventureWorksDW2008R2 DimDate table has missing dates.
    description. There is a gap in dates between 2008 and 2010 in the ...

  4. SqlServerSamples Work Item Rss Feed - Kekunda.com

    reputationless7.kekunda.com/chan-5121419/all_p1.html - Cached
    08/27/09--10:26: Commented Issue: Installer: The zipped DB package doesn't ....
    Issue: AdventureWorksDW2008R2 DimDate table has missing dates [13383...

  5. AdventureWorksDW2008R2 DimDate table has missing dates [13383]

    sqlsample.blogspot.com/.../ Commented%20Issue%3A%20AdventureWorksDW2008R2%20Di... - Cached
    27 Aug 2013 ... Commented Issue: AdventureWorksDW2008R2 DimDate table has missing
    dates [13383]. pavanbarnala wrote Feb 23, 2012 at 10:47 AM.

  6. Sql samples, sql tips: [SQL server issues] Commented Issue ...

    sqlsample.blogspot.com/.../sql-server-issues-commented-issue_12.html - Cached
    12 Aug 2013 ... AdventureWorksDW2008R2 DimDate table has missing dates ... 08/27/09--10:26
    : Commented Issue: Installer: The zipped DB package doesn't

  7. [SQL server issues] Commented Issue - Show all posts

    sqlsample.blogspot.com/.../sql-server-issues-commented-issue.html - Cached
    9 Sep 2013 ... [SQL server issues] Commented Issue: AdventureWorksDW2008R2 DimDate
    table has missing dates [13383...

  8. Sql samples, sql tips: [SQL server issues] Commented Issue ...

    sqlsample.blogspot.com/.../sql-server-issues-commented-issue_27.html - Cached
    27 Aug 2013 ... [SQL server issues] Commented Issue: AdventureWorksDW2008R2 DimDate
    table has missing dates [13383...

  9. Sql samples, sql tips: [SQL server issues] Commented Issue ...

    sqlsample.blogspot.com/.../sql-server-issues-commented-issue.html - Cached
    2 Aug 2013 ... Commented Issue: AdventureWorksDW2008R2 DimDate table has missing
    dates [13383]. pavanbarnala wrote Feb 23, 2012 at 10:47 AM.

  10. AdventureWorksDW2008R2 DimDate table has missing dates

    sqlsample.blogspot.com/.../Commented-Issue%253A- AdventureWorksDW2008R2-DimDate-table-has-missing-dates- ...
    No posts with label Commented-Issue%3A-AdventureWorksDW2008R2-
    DimDate-table-has-missing-dates-%5B13383%5D. Show all posts. No posts with
    label ...

[SQL server issues] Created Issue: SQL Server 2008 Developer edition sample database install error [18174]

  1. SQL Server 2008 Developer edition sample database install error

    sqlserversamples.codeplex.com/workitem/18174 - Cached
    2 Jun 2012 ... SQL Server 2008 Developer edition sample database install error. description. I'
    m trying to install Adventureworks sample dB and i get an error.

  2. Issues - Microsoft SQL Server Community & Samples - CodePlex

    sqlserversamples.codeplex.com/workitem/list/basic - Cached
    22 Feb 2013 ... When I try to run this SQL statement: CREATE DATABASE ... SQL Server 2008
    Developer edition sample database install error ... Id #18174 | Release: None |
    Updated: Feb 22 at 1:37 AM by pleasehelpme99 | Created: Jun 2, ...

  3. Updating... - Microsoft SQL Server Community & Samples - CodePlex

    sqlserversamples.codeplex.com/workitem/list/basic?size... - Cached
    SQL Server 2008 Developer edition sample database install error. I'm trying to
    install ... Id #18174 | Release: None | Updated: Feb 22 at 1:37 AM by
    pleasehelpme99 | Created: Jun 2, 2012 at 12:07 AM by pleasehelpme99. 1.
    Voted. Vote ...

  4. Microsoft SQL Server Community & Samples - igHome

    www.ighome.com/directory.aspx?g=70218 - Cached
    Created Issue: SQL Server 2008 Developer edition sample database install error
    [18174]. I'm trying to install Adventureworks sample dB and i get an error.

  5. Gadget Directory on igHome.com

    www.ighome.com/directory.aspx?p=10108 - Cached
    Where is the 32 bit version? Created Issue: SQL Server 2008 Developer edition
    sample database install error [18174]. I'm trying to install Adventureworks ...

  6. Sql samples, sql tips: [SQL server issues] Created Issue: SQL Server ...

    sqlsample.blogspot.com/2013/.../sql-server-issues-created-issue-sql.html - Cached
    9 Sep 2013 ... SQL Server 2008 Developer edition sample database install error.
    sqlserversamples.codeplex.com/workitem/18174 - Cached. 2 Jun 2012 .

  7. Microsoft SQL Server Community & Samples - Kekunda.com

    repute7.kekunda.com/chan-5121423/all_p1.html - Cached
    ... zip files for SQL Server 2008R2. SQL Server 2008R2 product code samples
    are available here. ...... 06/01/12--17:07: Created Issue: SQL Server 2008
    Developer edition sample database install error [18174] (chan 5121423). I'm
    trying to install Adventureworks sample dB and i get an error. I successfully
    downloaded the ...

  8. Jazz Community Site - Login

    https://jazz.net/jazzdocs/index.jsp - Cached
    IBM developerWorks ... bugs; Submit feature enhancements; Interact with the
    developers; Try our product Web interfaces; See how we use our own products.

  9. Build Activities Explanation and Examples - Jazz

    https://jazz.net/wiki/bin/view/Main/BuildActivities
    ... Participate in forums; View detailed project plans; Monitor our project
    dashboards; Report bugs; Submit feature enhancements; Interact with the
    developers ...

  10. Multiple BSODs, help please? - Windows 7 - Bleeping Computer

    www.bleepingcomputer.com/forums/t/.../multiple-bsods-help-please/ - Cached
    I uninstalled Avast and installed Microsoft Security instead as I've seen that ... I
    will certainly look harder if that appears to be the issue though. ... Full Path : C:\
    Windows\Minidump\073113-18174-02.dmp .... Example file hosting sites : .....
    Microsoft SQL Server 2005 Compact Edition [ENU] (Version: 3.1.0000)

  11. Rational Quality Manager and Rational Test Lab Manager 2.0 ... - Jazz

    jazz.net/downloads/rational-quality-manager/releases/2.0?p... - Cached
    29 Jul 2009 ... IBM developerWorks ... The lab management capabilities require the Standard
    Edition of Rational ... known issues pertaining to Rational Quality Manager
    Standard Edition. ... [18206] Install of RQM and move to db2 for database leaves
    no ... trying to save test assets on SLES/WAS61/SQl Server 2008 server ...

  12. SilverStream Application Server 3.5.4 Release Notes - Novell

    www.novell.com/documentation/extendas35/docs/relnotes.html - Cached
    Welcome to SilverStream Application Server Version 3.5.4. ... Known issues with
    this release ... For example, to verify the latest install level for package bos.rte.libc
    you would use the following command: ... IBM AIX Developer Kit .... Microsoft SQL
    Server 6.5 with Service Pack 4 or later, Microsoft ODBC driver for SQL Server ...

  13. Toolbox for IT - Search Results for 'windows 7 assertion pframe failed'

    it.toolbox.com/home/search.aspx?page=132&r...7...1 - Cached
    SQL Server 2008 R2 Developer Edition, installation never completes ... startx
    xauth: creating new authority file /root/.serverauth.18174 X Window System
    Version 7.1.1 Release Date: 12 May ... Hello, I am trying to connect BW to an
    Microsoft SQL Server database. ... Issues while installing Microstrategy Web
    Universal on AIX.

  14. Release notes 2.2 - dCache

    www.dcache.org/downloads/1.9/release-notes-2.2.shtml - Cached
    org/dcache/services/billing/db/sql/billing.changelog-1.9.13.xml::4.1.7::arossi ...
    Made the log for the domain where billing plots are generated less verbose at ...
    Switched the voms-api to version 2.0.6 fixing the exception problem: .... A typical
    NFSv4 installation requires an LDAP or NIS server for user identity management.

  15. Custom Query ? MacPorts

    https://trac.macports.org/query?status=!closed&desc=1... - Cached
    There's a problem with the encoding of non-ASCII characters (the encoding of ... I'
    m requesting that a cvs version of gnuplot be made available. ..... I installed the
    Java Developers Package, and I was able to install pidgin. ..... Example
    Scenarios: ... from a SQL Injection on Microsoft SQL Server to a full GUI access
    on the DB?

  16. issueId type area createdBy title assignedTo priority status milestone ...

    https://www.labkey.org/.../Developer/issues/excelWebQuery.view?...Issues... issues&Issues... - Similar
    18609, Todo, Mothership, adam, Send and store CoreModule version with
    exception ... value in Luminex results data when uploading run with sample
    indices mapping .... 18551, Defect, Query, Ben Bimber, create filter type that is
    similar to sql .... CAVD coupling: Issues with "Select Existing" combo box
    repopulation and ...

  17. uq_jumpstats v2.42 - AlliedModders

    https://forums.alliedmods.net/showthread.php?p=1334394 - Cached
    version 2.42 ... developer 0; fps_max 101; cl_forwardspeed 400; cl_backspeed
    400 ... SQL Install - Make Database (in phpmyadmin or something else) called ....
    lags on server, so i made tops just for standard techniques, and without sql ...
    Corrected problem with displaying jumpoff + block on bhop blocks.

  18. a RESTful Pet Catalog | Java.net

    weblogs.java.net/blog/caroljmcdonald/.../2008/.../a_restful_pet_c.html - Cached
    Posted by caroljmcdonald on August 5, 2008 at 9:03 AM PDT ... Sample Catalog
    application implemented with JAX-WS on the server side and JSF on the client
    side ..... Right-mouse click on the MySQL server database and select ... This is a
    glassfish installation or configuration problem. please ask in the glassfish forum.

  19. Multi Theft Auto ? View topic - [TUT] PHP SDK

    https://forum.mtasa.com/viewtopic.php?f=148&t=38344&start... - Cached
    SDK mean Software Development Kit, it's a library allow to ... And if he don't have,
    we create a new account in the server AND in the forum 8) ...

  20. 16.3 (30-Nov-07) - Petrosys Technical Support

    www.petrosysguru.com/releases/ReleaseNotes_16_3.htm - Cached
    30 Nov 2007 ... If you are upgrading from version 15 or lower then you will need to .... 17805
    Change windows install to Microsoft MSI installer ... 18345 CRS database file
    being used for site CRS reported in ... 18368 Issues with Multiple Dispatch
    Servers on one Host .... 18174 Creating a mapsheet with no projection.

[SQL server issues] Created Issue: AdventureWorksDW2012 Download file corrupt [19063]

  1. AdventureWorksDW2012 Download file corrupt - Microsoft SQL ...

    sqlserversamples.codeplex.com/workitem/19063 - Cached
    14 Dec 2012 ... AdventureWorksDW2012 Download file corrupt. description. There seams to be
    an issue with the AdventureWorksDW2012 Data file download.

  2. Issues - Microsoft SQL Server Community & Samples - CodePlex

    sqlserversamples.codeplex.com/workitem/list/basic - Cached
    AdventureWorksDW2012 Download file corrupt ... When I try to run this SQL
    statement: CREATE DATABASE AdventureWorksDW2012 ON (FILENAME ... Id #
    19063 | Release: None | Updated: Feb 22 at 1:37 AM by dscheierman | Created:
     ...

  3. Updating... - Microsoft SQL Server Community & Samples - CodePlex

    sqlserversamples.codeplex.com/workitem/list/basic?size... - Cached
    AdventureWorksDW2012 Download file corrupt ... When I try to run this SQL
    statement: CREATE DATABASE AdventureWorksDW2012 ON ... Id #19063 |
    Release: None | Updated: Feb 22 at 1:37 AM by dscheierman | Created: Dec 14,
    2012 at ...

  4. Gadget Directory on igHome.com

    www.ighome.com/directory.aspx?g=70218 - Cached
    Created Issue: AdventureWorksDW2012 Download file corrupt [19063]. There
    seams to be an issue with the AdventureWorksDW2012 Data file download.

  5. Created Issue: AdventureWorksDW2012 Download file corrupt [19063]

    sqlsample.blogspot.com/.../ Created%20Issue%3A%20AdventureWorksDW2012%20Download... - Cached
    30 Aug 2013 ... The files download, but when I try to open them I get a message saying that ... It
    doesn't matter what I download or the website, if it over 1 MB I ...

  6. [SQL server issues] Created Issue - Show all posts

    sqlsample.blogspot.com/2013/09/sql-server-issues-created-issue.html - Cached
    9 Sep 2013... dscheierman | Created: Dec 14, 2012 at ... Created Issue:
    AdventureWorksDW2012 Download file corrupt [19063]. sqlsample.blogspot.com
    /.

  7. Sql samples, sql tips: [SQL server issues] Created Issue ...

    sqlsample.blogspot.com/.../sql-server-issues-created-issue_12.html - Cached
    12 Aug 2013 ... Created Issue: AdventureWorksDW2012 Download file corrupt [19063]. There
    seams to be an issue with the AdventureWorksDW2012 Data file ...

  8. Microsoft SQL Server Community & Samples - Kekunda.com

    repute7.kekunda.com/chan-5121423/all_p2.html - Cached
    older | 1 | (Page 2). 12/14/12--09:05: Created Issue: AdventureWorksDW2012
    Download file corrupt [19063] (chan 5121423). There seams to be an issue with ...

  9. SqlServerSamples Work Item Rss Feed - Kekunda.com

    reputationless7.kekunda.com/chan-5121419/all_p2.html - Cached
    12/14/12--09:05: _Created Issue:. ... Created Issue: AdventureWorksDW2012
    Download file corrupt [19063] (chan ... The FILE SIZE property is incorrect.
    Thanks, ...

  10. Ofelio - Search results for...techcent - 10 of 2 returned feed content.

    www.ofelio.com/preview?lang=en&url=/show?id=apifeed&search...
    1 Oct 2012 ... Created Issue: AdventureWorksDW2012 Download file corrupt [19063] ... to be
    an issue with the AdventureWorksDW2012 Data file download.

  11. [SQL server issues] Created Issue: AdventureWorksDW2012?

    https://plus.google.com/106698475788327335617/.../ZpjUWaf9pNS - Cached
    2 Th?ng Năm 2013 ... [SQL server issues] Created Issue: AdventureWorksDW2012 Download file
    corrupt [19063] http://ow.ly/2wA7Hy.

  12. Tobe Kimalaja - Google+ - I experienced the same problem. Looking ...

    https://plus.google.com/102311087450897723438/.../NJ5xgHBrn9g - Cached
    25 May 2013 ... Looking for a solution for this, as well. [SQL server issues] Created Issue:
    AdventureWorksDW2012 Download file corrupt [19063].

  13. Tobe Kimalaja - Google+

    https://plus.google.com/102311087450897723438 - Cached
    25 May 2013 ... I experienced the same problem. Looking for a ... [SQL server issues] Created
    Issue: AdventureWorksDW2012 Download file corrupt [19063] · http://sqlsample.
    blogspot.com/2013/05/sql-server-issues-created-issue_7.html. 1.

  14. Microsoft SQL Server Community & Samples - Kekunda.com

    repute7.kekunda.com/chan-5121423/latest.php
    27 Feb 2012 ... Most projects have more than one file download for a given release; read ......
    Created Issue: AdventureWorksDW2012 Download file corrupt ...

  15. SqlServerSamples Work Item Rss Feed - Kekunda.com

    reputationless7.kekunda.com/chan-5121419/latest.php - Cached
    24 Jul 2013 ... 07/29/13--19:23: Issues Facing Today's School Principals Issues Facing .....
    Created Issue: AdventureWorksDW2012 Download file corrupt ...

  16. Read more - t?m kiếm nhanh - SEO web | Chuy?n nghiệp

    timnhanh.thietkewebtl.com/?...Created%20Issue: %20AdventureWorksDW2012%20Download%20file%20corrupt%20%5B...

  17. download files are corrupt - Computing.Net

    www.computing.net/answers/.../download-files...corrupt/169500.html - Cached - Similar
    The files download, but when I try to open them I get a message saying that ... It
    doesn't matter what I download or the website, if it over 1 MB I get the "corrupt" file
    ... I have run a virus scan with AVG free edition, and no viruses were found. ... Net
    cannot verify the validity of the statements made on this site.

[SQL Server] Advanced SQL Server 2008 Extended Events with Examples

  1. Advanced SQL Server 2008 Extended Events with Examples ...

    www.sqlteam.com/.../advanced-sql-server-2008-extended-events-with- examples - Similar
    25 May 2009 ... In the previous article we learned about SQL Server 2008 Extended Events
    terminology, components and took a look at a simple example.

  2. Introduction to SQL Server 2008 Extended Events - SQLTeam.com

    www.sqlteam.com/article/introduction-to-sql-server-2008-extended-events - Similar
    19 May 2009 ... SQL Server 2008 Extended Events are the new low level, high ... For example a
    reported figure by Microsoft is that 20,000 events/sec on a 2 ...

  3. Using SQL Server 2008 Extended Events - TechNet - Microsoft

    technet.microsoft.com/en-us/library/dd822788(v=sql.100).aspx - Cached
    In SQL Server 2008, Extended Events data for wait events can be correlated with
    ... be appropriate for standard release, to customers for advanced
    troubleshooting of ... For example, there are I/O and debug events in both the
    SQLServer and ...

  4. SQL Server Extended Events - SQLskills.com

    www.sqlskills.com/blogs/paul/category/extended-events/ - Cached
    11 Jul 2011 ... Tracking expensive queries with extended events in SQL 2008 ... Magazine
    article from 2008: Advanced Troubleshooting with Extended [...].

  5. Install Extended Events Manager - SQL Server FineBuild ...

    sqlserverfinebuild.codeplex.com/wikipage?... Install%20Extended%20Events%20Manager - Cached
    Finebuild can install and configure Extended Events Manager as part of the SQL
    ... .sqlteam.com/article/advanced-sql-server-2008-extended-events-with-
    examples. Extended Events Manager can only be installed on SQL Server 2008
    and ...

  6. Querying Extended Events in SQL Server 2008 - DBA StackExchange

    dba.stackexchange.com/.../querying-extended-events-in-sql-server-2008 - Cached
    Querying Extended Events in SQL Server 2008 ... curve has been rough. Thank
    you in advance for your help. ... Try to play with this example:

  7. What's new for Extended Events in SQL Server code-named ?Denali ...

    blogs.msdn.com/.../extended_events/.../what-s-new-for-extended-events-in- sql-server-code-named-denali-ctp1.aspx - Cached
    18 Nov 2010 ... Extended Events in SQL Server 2008 offered the ability to collect some very ... I'll
    be posting some code samples to this blog in the future.

  8. Today's Subject: Predicates - Using SQL Server Extended Events ...

    blogs.msdn.com/.../extended_events/.../today-s-subject-predicates.aspx - Cached
    23 Jun 2010... examples and general news about SQL Server Extended Events from ... in
    Using SQL Server 2008 Extended Events (by Jonathan Kehayias) ...

  9. Advanced SQL Server 2008 Extended Events with Examples ...

    www.sswug.org/nlread.asp?id=44795&d=6/8/2009&t=4
    8 Jun 2009 ... (Mladen Prajdi?) In the previous article we learned about SQL Server 2008
    Extended Events terminology, components and took a look at a ...

  10. Getting Started with Extended Events in SQL Server 2012

    https://www.simple-talk.com/sql/.../getting-started-with-extended-events-in- sql-server-2012/ - Cached
    4 Feb 2013 ... Consequently, the Extended Events feature in SQL Server 2008 saw ... sample
    database?on a local instance of SQL Server 2012?but you ...

  11. Using XEvents (Extended Events) in SQL Server 2008 to detect ...

    msmvps.com/.../2008/.../using-xevents-extended-events-in-sql-server-2008- to-detect-which-queries-are-causing-page-splits.aspx - Cached - Similar
    7 Dec 2008 ... SQL Server Extended Events (Extended Events) is a general .... Investigating
    SQL Server 2008 Wait Events with XEVENTS: nice sample to capture waitstats at
    ... Advanced Troubleshooting with Extended Events; SQL Server ...

  12. Extended Events - SQL Server Blogs

    sqlblog.com/blogs/extended_events/ - Cached
    28 Mar 2012 ... Extended Events demos on Microsoft Virtual Academy ... Let's take a simple
    example, we might write a filter for wait_info such as: ..... Clicking on the
    Configure button takes you to the advanced event configuration options.

  13. Extended Events : Try a sample: Using the ... - SQL Server Blogs

    sqlblog.com/.../extended_events/.../try-a-sample-using-the-counter-predicate- for-event-sampling.aspx - Cached
    14 May 2010 ... (You can find more information about predicates in Using SQL Server 2008
    Extended Events (by Jonathan Kehayias)) By evaluating predicates ...

  14. Retrieving Deadlock Graphs with SQL Server 2008 Extended Events

    www.dnnsoftware.com/.../Retrieving-Deadlock-Graphs-with-SQL-Server- 2008-Extended-Events - Cached
    21 Sep 2011 ... SQL Server extended events (Extended Events) is a general ... The following
    article has a few examples of accessing the system_health session sql 2008 ...
    Advanced Troubleshooting with Extended Events · Retrieving ...

  15. SQL Server 2008 Advanced Troubleshooting with Extended Events ...

    www.cnblogs.com/lenoevo/archive/2008/12/24/1361026.html - Cached - Similar
    24 Dec 2008 ... SQL Server 2008 Advanced Troubleshooting with Extended Events(reference) ...
    For example, the workload can change (such as the number of ...

  16. SQL Server 2008 extended events using the Advanced ...

    www.ixwebhosting.mobi/2011/09/19/2241.html - Cached
    19 Sep 2011 ... SQL Server 2008 extended events using the Advanced Troubleshooting ...
    example, workload may change (such as the number of concurrent ...

  17. Using Extended Events to troubleshoot SQL Server issues

    www.mssqltips.com/sqlservertip/.../using-extended-events-to-troubleshoot-sql -server-issues/ - Cached
    2 May 2011 ... Learn hwo tu use SQL Server extended events (XEvents) to troubleshoot ... In
    addition to these tools, SQL Server 2008 offers extended events .... set of data
    columns, I'll give below an example for the "error_reported" events.

  18. SQL SERVER ? Introduction to Extended Events ? Finding Long ...

    blog.sqlauthority.com/.../sql-server-introduction-to-extended-events-finding- long-running-queries/ - Cached - Similar
    29 Mar 2010 ... I recently read white paper about Extended Event by SQL Server MVP ... in the
    book, SQLAuthority Book Review ? Professional SQL Server 2008 Internals .... In
    our example, I used the XML file, and it does not reset when SQL ...

  19. [PDF] 

    How to Use SQL Server's Extended Events and Notifications to ...

    sqlmag.com/content/.../wpd-sql-extevtandnotif-us-sw-01112012_1.pdf - Cached
    ... and SQL Server. 2008: event notifications and extended events. ... to Extended
    Events. Extended events are a lightweight event-handling platform introduced in
    SQL Server 2008. ..... EXEC sp_configure 'show advanced options',1 ;. GO .... An
    example output from this would look like the results show below. In the sample ...

  20. An Introduction to SQL Server 2008 Audit | Brad M McGehee

    bradmcgehee.com/2010/.../an-introduction-to-sql-server-2008-audit/ - Cached
    30 Mar 2010 ... Excerpted from Brad's Sure Guide to SQL Server 2008, which is ... Fast and
    Lightweight: SQL Server Audit uses SQL Server 2008′s Extended Events ... In
    the following example, we want to find out who is looking at the ...

Search This Blog