Viewing 15 posts - 91 through 105 (of 694 total)
Sounds like you have some hard coded items in the package. Are you using an XML config file, or a SQL Table to store the config items that need to...
September 24, 2013 at 2:05 pm
Lady
Try removing the ""SET NOCOUNT ON" statement for one time. I just read something about that. I am using it in my sproc, but it may be worth a shot...
September 24, 2013 at 12:00 pm
Have you tried to just run a query:
SELECT
GroupId
, GroupName
, FileTypeName
, SubjectID
FROM
dbo.MyTable
WHERE
SubjectId = 'FBBE20B1-55F1-E111-BF73-00155D062F00'
ORDER BY
FileTypeName ASC
To see if there is a row with...
September 24, 2013 at 11:49 am
Have you tried to setup a test page with all the items hard coded? Do you get a resultset using only SSMS and that same string? Have you tried CASTing...
September 24, 2013 at 11:04 am
I am not seeing anywhere that you are opening and closing your connection.
Why would are you passing in the connectionstring, and the sproc name? I believe in code re-use, but...
September 24, 2013 at 9:21 am
I just saw this:
But in the sproc that you sent, you have a "begin" with no "end"
There is really no reason to have the "begin". Remove that. Unless you are...
September 24, 2013 at 8:25 am
What you are showing is only the Code to add the variable data to the stored procedure call. Not the Code to actually open the connection, call the sproc name,...
September 24, 2013 at 8:19 am
Have you tried changing the database connection string?
That is not a good idea to do nothing at all to the tables, indexes, etc... If you take a little time now,...
September 24, 2013 at 8:05 am
Sounds like the owner of the object that you are using, like dbo.ObjectName, does not actually own the object. Look at the properties of the object to verify who actually...
September 23, 2013 at 6:09 pm
Luis
Thank you also. The query that you suggested worked also. I did not mean to lave you out of my last post.
Thank you
Andrew SQLDBA
September 20, 2013 at 10:13 am
Thanks Sean
That is perfect and just what I was after.
Thank You
Andrew SQLDBA
September 20, 2013 at 10:10 am
I thought of that, but it will not work because that query returns all tables in the database.
I am looking for a way to return the max Column number for...
September 20, 2013 at 9:33 am
You should not be inserting into All three tables. You should be inserting data into one, the table named "Bio". The other two tables are list tables. Those tables would...
September 20, 2013 at 4:08 am
You Must provide the IDs from each of those tables in your INSERT statement.
INSERT INTO BIO
(
, FirsName
, MiddleName
, LastName
, SexID
, StatusID
)
VALUES
(
'Sammy'
, NULL
, 'Johnson'
, 1
, 1
)
That is what...
September 18, 2013 at 9:30 pm
You really need to have an associative table. You should Never, Ever store data in a delimited string like that. Change that and your database coding life will become so...
September 18, 2013 at 1:56 pm
Viewing 15 posts - 91 through 105 (of 694 total)