Viewing 15 posts - 31 through 45 (of 129 total)
If you are unable to see the default instance from another machine, open up your SQL server configuration manager. Expand 'SQL Server Network Configuration' on the left. Right click on...
January 20, 2010 at 6:51 am
bgeige (1/19/2010)
SSMS/View/Object Explorer Details/Procedures
Since my post, I also discovered this method. Thanks for the follow-up though! Works great... object explorer details window has proven to be very helpful!
January 19, 2010 at 12:50 pm
J-F Bergeron (1/15/2010)
SELECT name ,
SCHEMA_NAME(Schema_ID) ,
Create_Date ,
...
January 15, 2010 at 8:52 am
Nevermind. Had a senior moment (which is weird since I am only 26). I just went with:
replace(replace(new_header,'#firstname#',firstname),'#lastname',lastname)
And added the replace statements for all of my string, and it seemed...
October 1, 2009 at 7:31 am
That was so simple that I just didnt even think about it. At any rate, it WORKED and you are my new favorite. You have been awarded all of the...
April 23, 2009 at 7:56 am
Better yet, I updated the DB with a new column. Each record has a column that has the full filepath and filename. How do I work with that?
April 22, 2009 at 1:25 pm
I developed the windows application that successfully uploads the images into the DB. My issue is with all of the employees already in the database with no images. The thing...
April 22, 2009 at 1:23 pm
So I figured out the issue. I only need 1 listbox, and it will repeat for each record. The problem is, it will only repeat from top to bottom. The...
April 22, 2009 at 9:06 am
I removed my logo completely, and I still get the same result. How else could get my desired outcome? I need to format a page of ID cards, and populate...
April 17, 2009 at 7:04 am
Maybe this will help you understand exactly where I am. This is a snapshot of the report in design mode, with some markup. Let me know if this helps.
April 17, 2009 at 6:48 am
Sorry for the misunderstanding. My images are using image controls. So moving past that, why does everything repeat 7 times.
April 16, 2009 at 8:31 pm
If you could send what you have in C# maybe that would be a starting point for me. Thanks!
April 15, 2009 at 7:57 am
fixed the small syntax error on my insert, but still get the error near N' so my openrowset syntax is wrong.
USE [BFM]
GO
/****** Object: StoredProcedure [dbo].[add_employees] Script...
April 14, 2009 at 3:32 pm
table =
USE [BFM]
GO
/****** Object: Table [dbo].[Employees] Script Date: 04/14/2009 17:20:46 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[Employees](
[first_name] [varchar](50) NULL,
[last_name] [varchar](50) NULL,
[birthday] [datetime] NULL,
[blood_type]...
April 14, 2009 at 3:22 pm
I threw together a really (REALLY REALLY DO NOT LAUGH I MEAN REALLY) crude cursor... I am having problems applying the OPENROWSET function syntactically. Here is what I have.
USE [BFM]
GO
/******...
April 14, 2009 at 3:20 pm
Viewing 15 posts - 31 through 45 (of 129 total)