Viewing 15 posts - 8,536 through 8,550 (of 26,490 total)
Actually, your code is working just the way it is supposed to based on how it is written.
Would you please take the time to explain what it is you are...
March 10, 2013 at 12:43 pm
As this is posted in a SQL Server 2005 Forum, the following will work as well:
if object_id('tempdb..#TestTable') is not null
drop table #TestTable;
create table #TestTable (
...
March 10, 2013 at 12:22 pm
Phil Parkin (3/9/2013)
daniel-johnsson (3/8/2013)
Yes that is exactly what I want to accomplish. Basically that I have Audit_ID with identity (1,1) that works as a PK in my Audit table...
March 9, 2013 at 10:46 am
Okay, I was just curious as I haven't looked at Always On as yet. Thanks for the tip.
March 9, 2013 at 7:41 am
Why a copy only full backup? Why not a normal full backup?
March 9, 2013 at 7:32 am
How about you provide us with the code you have written so far in an attempt to solve your problem.
We are volunteers on this site, willing to help you in...
March 9, 2013 at 6:11 am
What component(s) are you using and what edition of SQL Server are you running?
March 9, 2013 at 6:07 am
Don't apologize for your post. I've looked at the code you posted, it's just that there isn't enough there to really work with. Since we don't know the...
March 9, 2013 at 5:45 am
No promises as you did not provide the DDL for the tables or sample data:
SELECT DISTINCT
[Rxo].[SYS_ID]
, [Rxo].[PATIENT_ID]
, [Rxo].[DESCRIPTION]
, [Rxo].[RX_NUMBER]
, [JRxf].[MAX_FILL_NUM]
, [Rxo].[PT_CASE_PHYSICIAN_SYS_ID]
, CONVERT(VARCHAR(12) , [Rxo].[DATE_WRITTEN] , 110) AS DATE_WRITTEN
,...
March 8, 2013 at 3:45 pm
Erin Ramsay (3/8/2013)
That's why I used -3 milliseconds, Lynn. 🙂
Was actually talking to Sean and his code subtracting 1 millisecond.
March 8, 2013 at 3:29 pm
Sean Lange (3/8/2013)
Erin Ramsay (3/8/2013)
Will this help you get started?
declare @datefield datetime
set @datefield = GETDATE()
select @datefield originalDate,...
March 8, 2013 at 3:21 pm
Would help if we know what the income record looked like for one. Also, if you could provide the DDL (CREATE TABLE) statement for the table, the sample data...
March 8, 2013 at 3:14 pm
Sean Lange (3/8/2013)
Change you loop to this.
--@emailSubject = @emailSubject + @sku
...
March 8, 2013 at 10:02 am
GilaMonster (3/8/2013)
Lynn Pettis (3/8/2013)
GilaMonster (3/8/2013)
opc.three (3/8/2013)
GilaMonster (3/3/2013)
They were added as separate columns to support a feature that was planned, partially added to SQL 2005 and later scrapped.
You know I am...
March 8, 2013 at 9:35 am
Need to see the code that builds this table: dbo.tbl_STOCK_safety_check
March 8, 2013 at 9:29 am
Viewing 15 posts - 8,536 through 8,550 (of 26,490 total)