Viewing 15 posts - 1,036 through 1,050 (of 7,429 total)
Did you verify the resulting path?
You state your data is "/images/drawing1.wmf"
And you append "http:/machinename/"
The net result of which is
http:/machinename//images/drawing1.wmf
You may simply have the string wrong. Test the net result...
March 29, 2006 at 8:26 am
In case anyone has the same need here is what I did.
In the report I opened the Reports properties dialog and selected the Code tab. Then I inserted the following...
March 29, 2006 at 8:23 am
Spoke too soon. I think I found a way that meets my needs. However could be I missed an easier solution so still post if you think you have a...
March 27, 2006 at 4:24 pm
Sorry I have found nothing else. You should from all accounts be able to connect however that said how much free space is on your drives? And when you connect...
March 27, 2006 at 8:16 am
Go back to your previous post here
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=267157#bm267755
Sounds like you got htis to work maybe once then changed the table definition.
March 27, 2006 at 8:10 am
First I have to really understand what has Document have to do with Client and to Porject, and what does Client have to do with Project and Document, and what...
March 22, 2006 at 3:18 pm
This is how I do it
select dateadd(qq,datediff(qq,0,GETDATE()),0)
select dateadd(ms,-3,dateadd(qq,datediff(qq,0,GETDATE()) + 1,0))
March 22, 2006 at 3:01 pm
March 22, 2006 at 2:48 pm
I am confused by this. Where did you find and have you gotten it to successfully work. Then even if you do it will fail the moment you add or...
March 22, 2006 at 2:38 pm
I do believe the only things you have to change to work are the following two lines
STRING(SUBSTR(SBT_SUBSCRIBER_NUMBER,5,2),'00') FM_PRIN,
and
STRING(SUBSTR(WRK_SUBSCRIBER_NUMBER,5,2),'00') TO_PRIN,
all the rest should work as is. The only issue I don't...
March 22, 2006 at 2:20 pm
Have you tried connecting with Query Anaylzer and the try based on the following.
The error 1105 means that transaction log is full.
There are to ways to resolve the error 1105:
March 17, 2006 at 11:39 am
There is also a minor performance gain in not forcing the query engine to go looking. It actually does first go looking for loggedonuser.object before assuming dbo.object. And in case...
March 7, 2006 at 2:15 pm
Sorry, I just think you are making a mountain here out of somethin normally done like this
I have a table
CREATE TABLE My_Data (
Data_ID int identity(1,1) not null primary key,
Data_Value varchar(20)...
March 7, 2006 at 2:12 pm
Can you post the DDL of your table and the trigger?
Also, can you provide details o how the inserts are being done, what is the process?
March 2, 2006 at 7:34 am
Viewing 15 posts - 1,036 through 1,050 (of 7,429 total)