Viewing 15 posts - 61 through 75 (of 1,346 total)
When you're inserting a list of static values you use:
INSERT INTO {columns}
VALUES ( {ValuesList} )
When you're inserting values where some of them are generated from the database, you typically...
December 5, 2007 at 9:32 am
I'm currently learning & using Windows Powershell for some SQL admin/maintenance tasks.
Next version of SQL (2008) will supposedly have increased Powershell support.
December 4, 2007 at 7:45 am
In your original posting, this was the path:
'Data Source="C:\MyApps\Data_Complete.mdb
So, you'd want to ensure that your SQL Server service account has full read/write access to the folder "C:\MyApps".
You would do that...
December 3, 2007 at 3:06 pm
CREATE NONCLUSTERED INDEX [IX_TableX_ClientID] ON [dbo].[TableX]
([ClientID], [ColA], [ColB], [ColC])
INCLUDE ([ColD], [ColE])
Might there be a good reason that ColA, ColB, and ColC are part of the index columns or...
December 3, 2007 at 11:11 am
>>Let's say the first column or columns of a nonclustered index is unique. Might there be reasons to add additional columns to the index list as opposed to the include...
December 3, 2007 at 10:48 am
The answer to this type of question is always "it depends".
For #1, yes, a covering index that includes additional columns may improve some query scenarios by preventing a bookmark lookup.
For...
December 3, 2007 at 9:41 am
See yesterday's reply from the OP:
It is "microsoft olap".
I recognize the query (the object name double quoting & old style joins) from having to deal with similar problems in queries...
December 3, 2007 at 9:06 am
True or False:
This query was captured as the SQL sent from MS Analysis Services ? As such you have no control over how the SQL is constructed and can't convert...
December 3, 2007 at 8:30 am
Why did you need to start a new thread for this ? All the context of your problem is on the original thread.
December 3, 2007 at 8:13 am
>>Does this business with permissions still apply with a local copy of SQL Server 2005?
Yep. When you installed SQL Server locally, you were prompted for a service account for...
November 30, 2007 at 4:37 pm
>>I changed the options for me to "Allow" for all permissions
What about the account that the SQL instance is running under ?
When you run this query, the OpenDataSource() is not...
November 30, 2007 at 4:17 pm
Next up: File and folder security/permissions.
Calling OpenDataSource() may require that the service account for the SQL instance needs to have access to the folder containing the MDB files. Make the...
November 30, 2007 at 3:45 pm
Let's get the obvious question out of the way first: Have you verified that the MDB files can be opened by Access 97 after being FTP'ed ? FTP transfer mode...
November 30, 2007 at 3:26 pm
An int datatype can be given the IDENTITY property and will auto-increment for you.
November 30, 2007 at 2:08 pm
Is there a technical reason not to use an IDENTITY column in this application ?
November 30, 2007 at 1:53 pm
Viewing 15 posts - 61 through 75 (of 1,346 total)