Hi, on a migration from access 97 to SQL Server 7.0 columns in access like 'hyperlink' are converted to datatype 'text' on the SQL Server 7.0. Now I miss the function in the access application I had before with fields like 'hyperlink'. Now I can't start e.g. a word document with a click and I have to type in the hyperlink manualy. Does anyone had the same problem an possibly have a resolve? Thanks.
I want to store a hyperlnk in the MS-SQL table as in MS Access.I could not find any datatype for storing the hyperlink in MS-Sql. So Kindly please help me to store hyperlink in the MS-SQL Table.
I am having allot of fun with SQL Server Reporting services, and getting some rave reviews from users. Our tech wants me to look into putting hyperlinks on the reports, in case the users want to access the scanned documents pertaining to the record. Anyone know how to do that.
I upgraded an Access 2003 database to SQL Server 2005 Express with the upsize wizard- worked great! Have a field that needs to be a hyperlink data type. There is no datatype in SQL that is hyperlink. Even if it were a text field, possibly inserting a hyperlink would work, but the insert hyplink in Access is unavailable, because the datasource is sql, maybe. I have a command button that ties to this function which won't work, obviously since it is not available. I need this field, it points to a file containing data that is being imported into the database. Huge piece of the database functionality. Making it easy for the user to find the file and using the vba to convert the data.
Saw the option of jump to url, but I don't think that will work? couldn't find the exact syntax either.
insert into scn_transaction (sourceSystemName) values(@sourceSystem);
SELECT @txOut = @@identity
Whose purpose is to perform an insert into a table and return me the identity value of the inserted record, which I'll then use throughout the rest of my package. The identity column in the inserted table is numeric(18,0).
I execute the stored proc with the following sql with an OLE DB connection manager:
exec sp_newTransaction ?, ?
The first parameter is a string variable from earlier in the package, and the second is the output parameter. I have the following parameter mappings to the execute sql task:
The proc is correctly called, and the row insesrted, however I get a type conversion error when SSIS attempts to map the return parameter to my package variable... I've tried all sorts of combonations, and can't seem to get it to execute.
At one point I wasn't returning a numeric, but rather an int from the stored proc, and all was well until I went to use the variable in a derived column later in the package, and the type was converted quite incorrectly (a 1 was 77799789080 or some such), indicating a type conversion error likely related to the encoding of the number.
I'd like to keep the datatypes as numeric and make ssis use those - any pointers are greatly appreciated as to what type my package variable should be to allow proper assignment of a sql server numeric type to it.
I have a field in a table that stores date of birth. The field's datatype is char(6) and looks like this: 091703 (mmddyy). I want to convert this value to a datetime datatype.
What is the syntax to convert char(6) to datetime?
I have another question about my Access/SqL Database. one of my tables is going to have 2 or 3 hyperlinks and I was wondering can that be done through sql or would I be better off doing it through access?? (the database consist of sQL tables but the gui for the users is access)
Hi everyone I have 3 tables (SQL table) one is the employees table and the other two are link tables for documents the tables have a one to many relationship. everything is running smoothly accept in my in my access form (which is the gui for my users) I can get the field names to look like a hyperlink but I cant insert the address. Since they are sql server tables thats not an option. Can someone help me out pls. I attached a pic of the drop down box to give you a visual of what I'm talking about is there a TRIGGER OR STORED PROCEDURE I could create for this maybe?? Do know VB so wsa wondering if there is a way I could bo it by using sql instead??
Hi everyone, I am trying to hyperlink a file to the report. We are running visual and in one of the fields, we have a pdf file linked to it. When I tried making a report that pulls that information so we can click on it and be linked directly to the file, but all it gives me is the path to the file. Is it possible to link it that way??? I notice under properties, there are option for linking but its just for a report, bookmark, and URL. but none for direct files. Please help.
HI,I have a table with IDENTITY column with the datatype as INTEGER. Nowthis table record count is almost reaching its limt. that is totalrecord count is almost near to 2^31-1. It will reach the limit with inanother one or two months.In order to avoid the arithmentic overflow error 8115, we would likechange the datatype from INT to BIGINT. we hope this will solve ourproblem.How do I approch this datatype conversion?. Since the data count ishuge, that leads to a long down time of database.we need better approach or solution for this problem?. kindly give mea better solution that will reduce the total downtime of the productiondatabase.?.Regards
i have so doubts in my mind and that i want to discuss with you guys... Can i use more then 5/6 fields in a table with datatype of Text as u know Text can store maximu data... ? acutally i am trying to store a very long strings values into the all fields. it's just popup into my mind that might be table structer would not able to store that my amount of data when u use more then 5/6 text datatypes...
and another thing... is which one is better to use as data type "Text" or "varchar(max)"... ? if any article to read more about these thing,, can you refere to me...
I have created an SRS Report, that contains a list of Account Names.
On my reports, I need to create hyperlinks for the Account Names field. So I tried the following;
- In Layout mode, selected appropriate field (AccountidName) - Right mouse clicked and selected Properties - Selected Jump to URL - From field list, selected AccountId - Clicked OK
I'm trying to find a way to put in a hyperlink to a url so the url linked to comes up in a new popup window and leaves the original report visible. Any help greatly appreciated.
I would like to ask a question here about the hyperlink in reporting service.
I have programmed a report and it runs perfectly in my PC. Unfortunately when I deployed it to a server, the hyperlinks in that report can not be clicked. Is it because of the version at the server which is 9.00.2047.00? My development version is 9.00.3042.00.
Hi I have developed a report using microsoft reporting services with certain fields In my report the user enters name (which is a parameter) and the report is displayed
Inside my report. I have a field studentID which should be a link which when clicked should take me to a new report which is a report in extranet. Currently I dont have access to that rdl and for certain reasons, I am asked to link to that report by coding a hyperlink in development
I know that in the text box under action properties I need to give the url , but its not working Should i specify the student id anywhere . What and where should I code??
I was wondering if it would be possible to put report data in a hyperlink. For instance I have a report that pulls up a UPS tracking number and I want to be able to put it in the hyperlink to check the status from the UPS website.
I.E. http://www.upstracking.com/myhsk?<sql-data>jkhaskd
Hi, I want to store an image hyperlink in a sql database but don't seem to be able to do it..is this do-able? I can store a hyperlink in text format, no problem, but how do I do the same with an image? I want to use images in my images folder. I can create an image field and set the required options to display images all that is pretty straight forward but trying to display the image as a hyperlink ( actually it's a mailto: link I want to use) seems not to be an option. The purpose of this is to allow users to upload an image together with their email address and when other users click on the image it fires up their email app. I do not want to have to use a text link. Thanks
I have a web control which produces a drop down list of items that are stored in my database. The problem is that my SQL call is not properly displaying the hyperlink in .aspx please see my screen shot and code below. I also have ensured the link table in access is set to hyperlink. Any thoughts would be helpful as this is driving me nuts. Thanks in advance.
Microsoft Visual Studio 2005 Version 8.0.50727.762 (SP.050727-7600) Microsoft .NET Framework Version 2.0.50727
Installed it came with SQL Server 2005, and for awhile now I have been trying to create a hyperling to a folder with our scanned files on it. I go to the Jump URL and then I put in a link address like
I've got a situation where a report I'm developing needs to have hyperlinks to another report. Easy enough. However, the hyperlink needs to land on Page 2 of the other report, instead of the default page 1. Any ideas??
I am formating text by adding a hyperlink that looks like this:"https://IQuoteSummary.asp?vid=" & {v_L.VersionId}&"&lid=" &{Locations.LocationId}Both database fields are type numberThe url enters the address:"https://IQuoteSummary.asp?vid=1,521.00&lid=12.00"It works when I run the report in crystal but after publishing it onthe crystal publishing wizard thing, I get those weird numbers.I need these numbers as ints and without a comma. I tried changing theformatting on the database fields on the report but that doesn't work.Any idea how to get the url to print like this:"https://IQuoteSummary.asp?vid=1521&lid=12"Thanks
Hi, I am a having a simple table where i am having 4 columns. First column is displaying employees name: There is a drill down report when i click on each employee which inturn displays his details. My requirement is :How can i create hyperlink for the employee values(At start,blue color for employee name with underline and after coming back from drill down red in color for the employeename with underline). Is it possible to use Javascript to do the follwoing implementation or it is possible in SSRS itself. Requirement is very crucial and urgent..
I have areport with a text box. The text box is hyperlinked to another report url. The report opens in a new page when previewed with RS 2005 but when deployed the report opens in teh same page from where it is referenced.
How can I set a property with the texbox to always open in a new page the hyperlinked report.
I have a report that uses Jump to Report and passes Reportname with parameter. Is there a way to suppress the parameter value in the URL so the user is unable to manipulate the parameter and execute the changed URL?
I have a popup window that opens a server report in PDF format using URL access and within this report there are hyperlinks to webpages.On clicking the hyperlinks from within the report we get the following error :
"Internet explorer cannot download.Unspecified error".
we have used javascript in the jump to URL expression:
I have some hyperlinks on different rows of a table in the report. Currently when I click on these, they open the links on the same page. I want the link to open in a new instance of IE.
I tried using "javascript:void(window.open('http://www.google.com','_blank'))" as the URL, but this will virtually do nothing.