Viewing 15 posts - 10,921 through 10,935 (of 26,487 total)
First, you have run my code as is, correct? I need the exact error message you are getting when it fails.
June 30, 2012 at 1:28 pm
rjbirkett (6/30/2012)
June 30, 2012 at 12:44 pm
sivag (6/30/2012)
...
June 30, 2012 at 11:58 am
Here is my code and it works with my small set of data.
drop table dbo.CDRStaging;
go
with SampleData as (
select
MsgText as SampleRec
from
dbo.Syslogd
where
MsgDate = dateadd(dd, -1, cast(getdate() as date))...
June 30, 2012 at 11:47 am
I can't find it, but I thought you had posted the CREATE TABLE statement for the table dbo.CDR. Can you post it again?
Nevermind, I found it.
June 30, 2012 at 11:37 am
rjbirkett (6/30/2012)
I have been reading up on this all day. I'm not the only one asking this question. It appears that for some, the WHILE loop is the...
June 30, 2012 at 11:25 am
rjbirkett (6/30/2012)
June 30, 2012 at 10:52 am
gantavasu (6/30/2012)
For suppose we are having 3 instances.Here i want to change the memory settings for all the instances or we need to change in one instance.
Hard to say without...
June 30, 2012 at 4:18 am
sivag (6/29/2012)
in that concept i will provide parameter @memberid ...
June 30, 2012 at 4:13 am
Not creating the Tree Graph, but I was able to create the following based on the posts above.
/****** Object: Table [dbo].[tblMembers] Script Date: 06/30/2012 03:43:43 ******/
IF...
June 30, 2012 at 4:11 am
First, I thought you should know I used BOL to help me write the following code. I hope it helps you with what you are trying to do.
/****** Object:...
June 30, 2012 at 3:14 am
Is the second datetime the only one that can be blank (or null)?
June 29, 2012 at 7:32 pm
nchar, nvarchar, and nvarchar are supported, text and ntext have been depreciated.
June 29, 2012 at 7:20 pm
I will look into it. As for the SQL Server Community, you will find it unique among communities. We are willing to share our knowledge and experience freely.
June 29, 2012 at 7:01 pm
I would be carefully with triggers. If the write to dbo.CDR failed for some reason, the write of the record to dbo.Syslogd would rolled back as well.
The question I...
June 29, 2012 at 6:36 pm
Viewing 15 posts - 10,921 through 10,935 (of 26,487 total)