Viewing 15 posts - 466 through 480 (of 526 total)
I would suggest that instead of individual logins that you create a DOMAIN Group and add that group to the DB access. Then it should work as pass-through authentication.
----------------
Jim P.
A little bit of this and a little byte of that can cause bloatware.
July 14, 2004 at 12:29 pm
Check in the EM Security. By any chance does the workstation/client have a login in the server? Did you run a fix on that?
----------------
Jim P.
A little bit of this and a little byte of that can cause bloatware.
July 14, 2004 at 12:25 pm
SELECT COL1 AS COLMain, COL1 AS COL2nd
FROM TABLEA
UNION
SELECT COL2 AS COLMain, COL1 AS COL2nd
FROM TABLEA
----------------
Jim P.
A little bit of this and a little byte of that can cause bloatware.
July 13, 2004 at 3:51 pm
DECLARE @quarter
declare @sql Varchar(8000)
SET @quarter = 'Q1' + '2004'
SELECT @sql = ('INSERT INTO [dbo].[' + @quarter + '] ' + 'SQL Statement')
EXEC @sql
Note that if the table doesn't exist it...
----------------
Jim P.
A little bit of this and a little byte of that can cause bloatware.
July 13, 2004 at 3:37 pm
select convert(datetime,'10/10/2004')
----------------
Jim P.
A little bit of this and a little byte of that can cause bloatware.
July 13, 2004 at 3:25 pm
SELECT 'SELECT ' + CHAR(39) + 'TEXT_COLUMN' + CHAR(39) + ' AS NEW_COL_NAME, * ' + CHAR(13) + 'INTO [' + TABLE_NAME + '_TEMP] ' + CHAR(13) + 'FROM ['...
----------------
Jim P.
A little bit of this and a little byte of that can cause bloatware.
July 13, 2004 at 3:09 pm
There are proprietary fonts out there that can't be used in PDF and other documents unless you pay additional licensing fees. Examples of what i'm talking about are in the...
----------------
Jim P.
A little bit of this and a little byte of that can cause bloatware.
July 12, 2004 at 11:59 am
The problem is that if you aren't filtering for a specific company string and searching for a location.
----------------
Jim P.
A little bit of this and a little byte of that can cause bloatware.
July 12, 2004 at 10:22 am
This is one we're setting up now. Its in a module. Its called on form open and automatically builds a System DSN.
Private Const REG_SZ = 1 ...
----------------
Jim P.
A little bit of this and a little byte of that can cause bloatware.
July 10, 2004 at 3:37 pm
Or when you link in the table(s) make sure you click the "Save Password" box
----------------
Jim P.
A little bit of this and a little byte of that can cause bloatware.
July 10, 2004 at 3:26 pm
SELECT Tbl_A.PK, Tbl_A.BeginDt FROM Tbl_A WHERE (((Tbl_A.BeginDt) Between (SELECT Tbl_B.BeginDt FROM Tbl_B) And (SELECT Tbl_B.EndDt FROM Tbl_B)))
But this is assuming there is only one record in TBL_B. If there are more than...
----------------
Jim P.
A little bit of this and a little byte of that can cause bloatware.
July 10, 2004 at 3:24 pm
Couple of questions....
Why are you opening this workspace? Set mwspCalc = DBEngine.Workspaces(0)
Why are you opening this database again? Why not just reuse "mdbCalc"?
Set mdbExWk = CurrentDb
Can you modify the SQL...
----------------
Jim P.
A little bit of this and a little byte of that can cause bloatware.
July 10, 2004 at 3:07 pm
Copule of questions.
Where are you backing the SQL Server to? Local drives? The LAN? The WAN?
Is BE backing up this server and other server(s) to a local tape unit?
What bandwidth...
----------------
Jim P.
A little bit of this and a little byte of that can cause bloatware.
July 10, 2004 at 11:30 am
SELECT entered, mrocomid, compwksid, company, random, location, add1, add2, city, state, zip, confname1, conlname1, conphone1, conext1, conemail1 FROM company WHERE (company = ?) OR (location = ?) OR (confname1 = ?) ORDER BY company, location
Couple...
----------------
Jim P.
A little bit of this and a little byte of that can cause bloatware.
July 10, 2004 at 11:19 am
Have you looked at this KB 283696: Job to Monitor SQL Server 2000 Performance and Activity article?
----------------
Jim P.
A little bit of this and a little byte of that can cause bloatware.
July 9, 2004 at 8:51 am
Viewing 15 posts - 466 through 480 (of 526 total)