Viewing 15 posts - 721 through 735 (of 1,131 total)
The application is saving the values in memory not reading from the database:
Either:
Perform the update thru the application and not directly to the database
or
restart the application service as needed
or
Discuss with...
SQL = Scarcely Qualifies as a Language
January 27, 2007 at 7:19 am
Please post a simplified DDL and your SQL. For more details, see
http://www.aspfaq.com/etiquette.asp?id=5006
create table mainItems
(MainItemNumber integer not null
,MainDescription varchar(255) not null
, MainColorvarchar(255) not null
, constraint mainItems_P primary key (MainItemNumber...
SQL = Scarcely Qualifies as a Language
January 27, 2007 at 7:16 am
I created a very simple DTS Package that that inserts the global variable value into a table and it is working without any problems. Some things to check:
1. ...
SQL = Scarcely Qualifies as a Language
January 27, 2007 at 6:58 am
Do you mean for alerts ? Yes, I have done this when the email server was Sun by having the alert response run a job that executes xp_SMTPmail. See...
SQL = Scarcely Qualifies as a Language
January 24, 2007 at 1:25 pm
Since you are currently in design mode, consider an alternative if you are using SQL Server 2000:
1. Partition the data such that each quarter's data is in a different...
SQL = Scarcely Qualifies as a Language
January 19, 2007 at 10:56 am
Take at look "Looping, Importing and Archiving" with DTS at http://www.sqldts.com/246.aspx
SQL = Scarcely Qualifies as a Language
January 12, 2007 at 10:36 am
Are you aware that in addition to "alter database" command and there is also the stored procedure "sp_dboption" which internally has an "alter database" ?
The "sp_dboption" isretained for backward compatability.
You...
SQL = Scarcely Qualifies as a Language
January 12, 2007 at 10:29 am
Try searching the internet for "Entity Attribute Value". To get started, look at http://en.wikipedia.org/wiki/Entity-Attribute-Value_model
Some alternative:
Add a text column and use this column to store the values. The encoding...
SQL = Scarcely Qualifies as a Language
January 2, 2007 at 10:23 am
Selects nested inside of selects can be replaced with a nested aggregate and then a left outer join. As the table being aggregated is being read once instead of...
SQL = Scarcely Qualifies as a Language
December 20, 2006 at 5:01 pm
You can move the indicies using the DROP_EXISTING option for create index. The data is moved by moving the clustered index. If the table does not have a clustered...
SQL = Scarcely Qualifies as a Language
December 1, 2006 at 8:18 am
Are you attempting to get the password for a login ?
If so, then, no, you cannot copy the "password" displayed in Enterprise Manager.
SQL Server passwords are encyrpted before being stored...
SQL = Scarcely Qualifies as a Language
November 28, 2006 at 3:57 am
I asked this question of a person who is an Oracle DBA and a Unix system adminstrator, and he said, yes it can be done and he has done this.
Here...
SQL = Scarcely Qualifies as a Language
November 16, 2006 at 9:11 am
Using the Northwind demo database and the Employee table, below is a trigger that will only allow the Photo column to contain a value that begins with 'http'. Change...
SQL = Scarcely Qualifies as a Language
November 16, 2006 at 8:27 am
Please confirm that the SQL Server Agent service is running under the expected account and then confirm that the SQL Server Agent service account has the the expected SQL Server...
SQL = Scarcely Qualifies as a Language
November 12, 2006 at 7:58 am
Here are the system functions that may be usefull. As some SQL instances may be defined with a case sensitive collations, the column names are exact, such as NodeName,...
SQL = Scarcely Qualifies as a Language
August 5, 2006 at 6:01 am
Viewing 15 posts - 721 through 735 (of 1,131 total)