Viewing 15 posts - 511 through 525 (of 907 total)
Not exactly sure that base_schema_ver is. Since BOL says it is reserved for internal use, I guess I might not consider using it, since it use might change. ...
December 5, 2002 at 9:52 am
Note that when you delete and recreate a object the schema_ver gets reset to 0 and then starts incrementing again with every change.
Gregory Larsen, DBA
If you looking for SQL Server...
December 5, 2002 at 9:48 am
ETL stands for Extraction, Transformation and Loading (ETL).
A few years back around 4 now. I worked on a proof of concept using a tool called ETI Extract by Evolutionary...
December 5, 2002 at 7:54 am
I'm thinking about changing my mode of operation to use only NT network shares from QA to see if the problem disappears.
Gregory Larsen, DBA
If you looking for SQL Server Examples...
December 5, 2002 at 7:42 am
If you want to change the owner of an object you can use the sp_changeobjectowner store procedure to accomplish this.
Gregory Larsen, DBA
If you looking for SQL Server Examples check out...
December 5, 2002 at 7:20 am
I use the method of keeping track of the last crdate and schema_ver to identify when things are changed.
Gregory Larsen, DBA
If you looking for SQL Server Examples check out my...
December 5, 2002 at 7:05 am
Here is another way provided you don't have to pad with to many zeroes.
http://www.geocities.com/sqlserverexamples/string4.htm
Gregory Larsen, DBA
If you looking for SQL Server Examples check out my website at http://www.geocities.com/sqlserverexamples
December 3, 2002 at 7:40 am
Thank you for both these. I will do some more testing soon if I can find time.
Gregory Larsen, DBA
If you looking for SQL Server Examples check out my website...
December 3, 2002 at 7:29 am
Both ran relatively the same length of elpased time, but I should do the test with statistics IO on.
Also isn't there a command I need to run test to...
December 2, 2002 at 5:03 pm
Your query worked fine, thank you for the code. I also solved my problem using the following:
select c.stat_date, c.session_count from
(select b.stat_date, a.session_count
from (select convert(char(7),stat_date,111) as Year_Month,
...
December 2, 2002 at 4:48 pm
I have thought about the top 1, but am not sure how they might be used to return one row per month. Note my data has many months worth...
December 2, 2002 at 3:31 pm
I misread you original post as MDB, and not MDF. I'm guess an MDF file is most likely a SQL database file.
Try this:
sp_attach_single_file_db @dbname='<Replace with your DBName>'
...
November 26, 2002 at 12:14 pm
Should be able to create a SQL DB, and then import all the tables from the Access database using the DTS import wizard.
Gregory Larsen, DBA
If you looking for SQL Server...
November 26, 2002 at 11:02 am
There is a script at: http://support.microsoft.com/default.aspx?scid=kb;en-us;Q246133
to move logins
You can script the jobs, and operators in EM.
Don't know how to script of move the linked servers, although you should...
November 26, 2002 at 10:10 am
This sounds like good advice. Are you currently using this software?
Gregory Larsen, DBA
If you looking for SQL Server Examples check out my website at http://www.geocities.com/sqlserverexamples
November 26, 2002 at 8:06 am
Viewing 15 posts - 511 through 525 (of 907 total)