Viewing 15 posts - 151 through 165 (of 201 total)
alnawrass2002 (1/5/2014)
Hi,How can I automate copying Last Backup to DVD using SQL Server Job.Regards
DVD copy with an automated job sounds like more than a world of hurt. You cannot...
January 8, 2014 at 9:38 am
tamer.h (1/8/2014)
it works perfectly.
I'm now trying to copy the result of query to another table in another DB useing INSERT INTO but it always creating a new...
January 8, 2014 at 9:32 am
New Born DBA (1/3/2014)
January 8, 2014 at 9:18 am
erp.cncjay (1/7/2014)
Question: Is it even possible to add records to the subscriber that is NOT coming from the publisher ? My thoughts are telling me it can't be done.
It is...
January 8, 2014 at 9:02 am
mbrady (1/7/2014)
January 7, 2014 at 3:22 pm
mbrady (1/7/2014)
I had two batches in successfully and 3/4 through the 3rd the lead architect decided she...
January 7, 2014 at 1:30 pm
My concerns with SSIS is overhead, especially if the package runs on the SQL server. You have sql set to consume all available memory. This isn't a best practice (set...
January 7, 2014 at 12:49 pm
mbrady (1/7/2014)
EncounterId is not unique as there can be several charges against a single encounter.
Is there any identity that is unique? You could cluster on a non-unique ID but...
January 7, 2014 at 11:52 am
Do you have an IDENTITY column on this table with no PK? If so, and NULL is not permitted, then create an unique clustered index on it. Your...
January 7, 2014 at 10:36 am
Hi MBrady...
You have both a SQL issue and an office politics issue. 😀
As to the SQL Issue, in the thread I see you trying to loop to take smaller...
January 7, 2014 at 10:32 am
Jeff Moden (12/31/2013)
What about DBAs using it to elevate their privs as you have just done? It's not the usage of xp_CmdShell that caused that risk. It's the...
December 31, 2013 at 7:50 pm
Hi.
As much as I hate loops, this is the right place for one in order to remove the data without ballooning the transaction log.
declare @rowcnt int
select @rowcnt = COUNT(*) /...
December 31, 2013 at 12:09 pm
Viewing 15 posts - 151 through 165 (of 201 total)