Viewing 15 posts - 31 through 45 (of 130 total)
ben.brugman (4/16/2013)
But here is a direct question (this is my main problem with Access):
Use case:
A user is inserting a row in Table A, table A has a relation with...
April 16, 2013 at 11:04 am
Have you thought of an alternate solution like SQL replication, infacts merge replication is good way to go. create publisher/subscriber, then schedule it to synchonize once a week?
April 11, 2013 at 1:56 pm
How about this... create a function from this code supply a year, a week number you want. DayNumber would be=7 for Saturday.
declare @YearNum int,
@WeekNum int,
@DayNum int,
@FirstDayYear As Date
...
April 9, 2013 at 2:10 pm
David McKinney (4/5/2013)
You're quite right, Lynn, I understand he's a very busy man, and it's only natural that he delegates from time to time.
I tend to agree which what you...
April 5, 2013 at 9:52 am
David McKinney (4/5/2013)
Do you have the option of creating a copy of the stored procedure with the variable declared as an int, and running...
April 5, 2013 at 9:42 am
or if you are lazy to list the column name do this.
SELECT NEWID() AS [NewID], * INTO NewTable
FROM ExistingTable;
ALT_R TABLE NewTable DR_P COLUMN OldID
*fill in...
April 4, 2013 at 3:56 pm
without any test data, or specific line that the error occurs I dont think anyone here will be able to pin point you exactly where your exception occurs. My suggestion...
April 4, 2013 at 3:27 pm
saranya.priyadharshini (3/21/2013)
Hi ,Anyone help to script the linkedservers on weekly basis by automatically in text or .sql format file
Regards,
Saran
You may want to provide more detail I dont really...
March 21, 2013 at 8:08 am
Here you go. l leave the easy part (eliminate unwanted rows) for you to solve the tough part can be done this way:
CREATE TABLE #DATA (ManagerID INT, EmployeeID VARCHAR(50));
;WITH TEMPTE(ManagerID,EmployeeID)...
March 20, 2013 at 4:11 pm
I see what look like you were doing VBA on MS Access. I have not heard of database application name ADP, what is it?
March 20, 2013 at 3:09 pm
ScottPletcher (3/20/2013)
You need to determine the best FILLFACTOR for each...
March 20, 2013 at 2:29 pm
GilaMonster (3/20/2013)
DBCC INDEXDEFRAG is deprecated, etc, etc. replacement is ALTER INDEX ... REORGANIZE2005 and newer, same as your ALTER INDEX REBUILD statement and sys.dm_db_index_physical_stats.
Gail
On my machine I have...
March 20, 2013 at 2:26 pm
2005 and newer, same as your ALTER INDEX REBUILD statement and sys.dm_db_index_physical_stats.
Thanks again Gail!
March 20, 2013 at 12:57 pm
GilaMonster (3/20/2013)
DBCC INDEXDEFRAG is deprecated, etc, etc. replacement is ALTER INDEX ... REORGANIZE
Thanks Gail,
So Reorganize will work for SQL 2000 and newer?
Thanks!
March 20, 2013 at 12:51 pm
GilaMonster (11/28/2012)
Please note: 3 year old thread (and what I was in this thread was incorrectly accused of being wrong. I've been wrong elsewhere, but not here)
I was aware of...
November 28, 2012 at 1:39 pm
Viewing 15 posts - 31 through 45 (of 130 total)