Viewing 9 posts - 1 through 9 (of 9 total)
This has been updated
December 17, 2019 at 1:16 pm
Thanks for the warning Phil.
I remember now coming across that problem before and having to change the registry to disable the Jet driver from guessing based on the first...
February 11, 2016 at 1:44 pm
OK, you got me thinking about this; I have scripted the input file from the GUI (export definition), and I got this;
<?xml version="1.0" encoding="utf-16"?>
<DTAXML xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/sqlserver/2004/07/dta">
<DTAInput>
...
November 11, 2015 at 8:28 am
Hi, from 2012, as well as 'File' and 'Table' there is a new 'Plan Cache' option, (which will take the top 1000 queries from the plan cache based on execution...
November 11, 2015 at 8:26 am
Thanks Sean,
CREATE TABLE [dbo].[Tree](
[Parent] [nchar](10) NULL,
[Child] [nchar](10) NULL)
CREATE TABLE [dbo].[Status](
[Node] [nchar](10) NULL,
[Enabled] [nchar](10) NULL)
--Insert values
insert into Tree values('A','B')
insert into Tree values('B','C')
insert into Tree values('B','D')
insert into Status values ('A','Yes')
insert into Status...
February 29, 2012 at 9:31 am
Yes, this should only affect your local PC.
This service allows programs to backup SQL databases, running on the local machine, without stopping the database engine. So if there are...
February 3, 2009 at 1:40 pm
Hi Igor,
We need to see when the problem appeared and more background, is it a misconfiguration, or a result of bad code being sent to the server, this could be...
February 2, 2009 at 3:22 pm
Of course it depends if any of your applications have dependencies on this. Generally, if you know what databases need backing up, you can always schedule a job for...
February 2, 2009 at 2:51 pm
Viewing 9 posts - 1 through 9 (of 9 total)