Viewing 15 posts - 2,941 through 2,955 (of 3,221 total)
Working with VB should not be a problem, simply either increase the length of the text box or go into the properties (f4 key) for the text box and set...
August 13, 2008 at 2:09 pm
Use BOL and read up on sys.columns or execute some T-SQL for example
To return all column names:
SELECT * FROM sys.columns
To search for a particular column
SELECT object_id,name FROM sys.columns WHERE name...
August 13, 2008 at 1:34 pm
Here is the article which contained Jeff's code - study it to learn an incredible amount about dates and time calculations.
http://www.sqlservercentral.com/articles/Advanced+Querying/calculatingworkdays/1660/
Pass this onto Jeff
This response has earned a coupon...
August 13, 2008 at 11:25 am
Suggest you search Jeff Moden's posts - I remember he had a method of determining holidays but for the love of life I can not find it in my favorites....
August 13, 2008 at 10:09 am
Just a suggestion, if you do not have too many SPs you can have the database tell you what I believe you want to know.
Remeber it is work intensive on...
August 12, 2008 at 1:09 pm
Provided that you only want to write out data you might consider writing your merged information as a Comma Separated File (.csv). Excel will open a .csv file. ...
August 12, 2008 at 10:43 am
Sorry but your Select statement makes no sense to this individual.
Please read the article on posting questions as it appears in my signature block follow the instructions in the article...
August 9, 2008 at 11:11 am
First of all when trouble shooting simplify the code, (Since you need to find the 1st and Last character positions for the substring function) so lets find them. For...
August 4, 2008 at 11:08 am
However when i put them onto the dev system and run the application code against it the application fails with an error which states that "Row cannot be located for...
August 3, 2008 at 10:24 am
So the query optimizer appears to be working Now what is your question? All I read is a statement...
August 1, 2008 at 3:17 pm
Dcarpenter - the information you have provided makes it extremely difficult to even attempt to answer your question. Need some additional explicit information - such as ... is...
August 1, 2008 at 3:13 pm
Except for one or two answers I think most of the suggestions are missing the boat so to speak.
From Webster Standard Dictionary
Analytical
3: skilled in or using analysis especially in thinking...
July 31, 2008 at 3:42 pm
I got very frustrated working with your code and attempting to follow Microsofts procedures to correct the registration error so I developed my own without any problems. It is:
INSERT...
July 31, 2008 at 1:17 pm
The answer to your question of how long to keep backups is the standard SQL Server answer it depends. If your database contains financial data which eventually finds its...
July 31, 2008 at 11:40 am
Can you be more specific
My application would grant access to a user in my_application database
That is are you using an Application Role, or Windows authentication, or .... for...
July 31, 2008 at 11:27 am
Viewing 15 posts - 2,941 through 2,955 (of 3,221 total)