Viewing 15 posts - 16 through 30 (of 44 total)
Hi,
1. Are you hosting the database? If no, then customisable databases, but do it this way default schema for base application client schema for client based customisations. . If...
May 28, 2015 at 2:14 am
Hi,
Remember SEAT for testing.
Table A
(
Column1 varchar(4),
Column2 int
)
Setup
Select a row of data to be updated.
eg
Select Column1, Column2 from A where Column1 Is Null
Evaluate
Run the test/code
Insert into A_Changes
Select Column1, Column2...
May 28, 2015 at 1:27 am
Just backup the database and the encryption key.
Don't lose the encryption key.
There is a scripting tool available if you want to script everything from one server to another. Look on...
May 28, 2015 at 1:13 am
That's sort of what I was aiming at.
You can populate as many tables as you want with data and just use cartesian joins to give the bulk.
I have reused last...
August 28, 2013 at 9:01 pm
On other projects that I have worked on, the dev data has occasionally been scrubbed so that names and phone numbers and other account details are gibberish.
Eg John Smith 0406...
August 27, 2013 at 7:59 pm
Thanks for the feedback Jeff. I appologise to the community for not checking my work more thoroughly.
My next arrticle will be of better quality.
Cheers
Jamie
August 25, 2013 at 8:36 pm
If you just want the difference between the dates in the two columns
datediff(mm,col1,col2) + 1 to include the first month
eg select datediff(mm,'6/27/13','8/11/13') +1
Cheers
Jamie
😎
August 21, 2013 at 11:00 pm
I agree we have to view the problem from the clients perspective. Its a skill I pride myself on.
Can I just whinge about the link to the updateable snapshot?
What's wrong...
July 8, 2013 at 3:01 am
The semicolon character is a statement terminator. It is a part of the ANSI SQL-92 standard, but was never used within Transact-SQL.
Jamie Ingram
May 12, 2013 at 11:33 pm
Hi Gail,
Can partial restores be done with the Dev Version?
Cheers
Jamie
April 18, 2013 at 9:39 pm
Take a look at extending the security model. There is sample code on MSDN.
http://msdn.microsoft.com/en-us/library/aa237550(v=sql.80).aspx
In particular:
IAuthenticationExtension Represents an authentication extension that can be used to authenticate users in Reporting Services.
and
IAuthorizationExtension...
May 23, 2012 at 5:08 am
If you just want to run the packages on the new server:
Export your DTS packages using DTSBackup.
Save them to a network location
Create an SSIS job that calls the DTS packages.
Jamie
May 4, 2011 at 10:38 pm
I dont have access to SQL Server at the moment, so consider this pseudo code. It is untested.
create table #Temp
(
GroupID int;
Col1 varchar2(25),
Col2 varchar2(25)
);
Declare
@Group int,
@Col1...
March 21, 2011 at 3:23 am
Viewing 15 posts - 16 through 30 (of 44 total)