Viewing 15 posts - 556 through 570 (of 616 total)
mah_j (9/19/2012)
what about apex?is there any table that it reads from that?
i need to know it shows the log from where?
i think it...
September 19, 2012 at 3:13 am
keka4747 (9/19/2012)
Im new to SSIS . Need your help to resolve a performance issue.
I have a dimension table with 120 columns in which 80 columns change frequently and...
September 19, 2012 at 2:52 am
mah_j (9/19/2012)
2:in full recovery,i have a full backup from 09:00 am yesterday,and a log backup from 11:00 pm yesterday,can i restore the data from 8:00 pm yesterday?
how can i obtain...
September 19, 2012 at 2:37 am
Jayanth_Kurup (9/18/2012)
http://msdn.microsoft.com/en-us/library/ms172461%28v=sql.105%29.aspxlooks like sql compact support merge replication based on the above link.
So DJ has some choices to make.
1) Stick with Access and maybe use SSIS to poll the data...
September 18, 2012 at 2:13 pm
Just to clarify on the error handling in SSIS. Because you're able to configure the workflow of the package, you can redirect the package elsewhere so you deal with failed...
September 18, 2012 at 1:20 pm
Douglasjbell (9/18/2012)
Thanks for the reply, adding timestamps and the such to the tables will not be an issue, and it is only one way synch, Access to SQL as...
September 18, 2012 at 1:13 pm
Douglasjbell (9/18/2012)
Thanks for the reply, I have just been reading about SQL 2012 free LocalDB that can be deployed with an application. This looks like a very good database for...
September 18, 2012 at 12:22 pm
Why not use @@VERSION instead?
declare @isSqlServer2005 bit
declare @version varchar(50)
select @version = @@version
select @isSqlServer2005 = CASE when left(@version, charindex('-', @version)-1) like '%2008%' then 1 else 0 end
select @isSqlServer2005
Added LEFT...
September 18, 2012 at 10:10 am
anthony.green (9/18/2012)
Can compact edition act as a publisher in replication? I know Express and Web edition are subscriber only, but not done much with compact.
Good question....
See this: http://msdn.microsoft.com/en-us/library/ms172417(v=sql.105).aspx
SQL Server...
September 18, 2012 at 9:21 am
Let me see if I've understood this correctly:
You have your touch screen devices with their own local ACCES DBs containing the three tables:
ACCESS-DB-1
ACCESS-DB-2
and you have a SQL Server 2008 instance...
September 18, 2012 at 7:43 am
rhythmk (9/18/2012)
1.How many columns a SQL...
September 18, 2012 at 6:56 am
a_sql (9/12/2012)
I was asked to peel an Orange at one of my interviews..
I have an interview tomorrow with a company not far from where I live. So I thought I'd...
September 12, 2012 at 9:05 am
GSquared (8/7/2012)
September 12, 2012 at 6:11 am
Hope offline backup you are specifying backup during non-productio hours.
Sorry I should have used my words more wisely. I know there's no real concept of an offline backup within SQL...
August 30, 2012 at 7:17 am
John Mitchell-245523 (8/30/2012)
Is there any reason you can't schedule your full backup as well?
Hi John,
Yes, you are right. There is no reason for this job to be run manually....
August 30, 2012 at 7:01 am
Viewing 15 posts - 556 through 570 (of 616 total)