Viewing 15 posts - 151 through 165 (of 605 total)
Not that I am aware of. There maybe a trick out there to do this. Anyways, you get an error message indicating the that subscription database is the...
October 28, 2008 at 4:47 am
dastagirid (10/20/2008)
I am working on the Profiler and increase performance of
the queries.
"A QUERY IS...
October 20, 2008 at 4:08 am
Are you experiencing a specific problem or just creating a performance baseline?
October 20, 2008 at 4:01 am
Hey,
I had to do ths years ago. I took backups of all the databases, including the system databases and moved the backups to the new drive system.
I shut down...
October 13, 2008 at 4:38 pm
I generally use BCP.
I do this quite a lot migrating client databases.
October 13, 2008 at 4:29 pm
Hey Dave,
I have a little experience with MySQL. Basically my boss earlier in the year decided that everything should be migrated to MySQL and we should ditch SQL Server....
October 13, 2008 at 4:24 pm
That will also work yes.
If you are concerned about the growth of your log file, then you need to look at the frequency of your log backups.
October 8, 2008 at 1:23 am
You could also look into importing the fresh data into a new table and updating table1 based on table2.
If that's not possible, then follow Jack's advice.
October 7, 2008 at 11:17 am
Are you taking backups of the transaction log before you attempt to shrink? If the log file contains data or has not hit a checkpoint, then the file would...
October 7, 2008 at 5:21 am
What exactly are you asking?
The result set doesn't match up to the query, so I'm a little confused.
October 7, 2008 at 5:15 am
Mark (10/7/2008)
select [Invoice No],[Payment No],
[Payment Collected],
[Payment Date]
from TableB
where [Invoice...
October 7, 2008 at 3:29 am
Hi Adrian,
Yes it was. I still have no clue as to what is wrong with this. In the end, I used a different box for replication in order...
October 7, 2008 at 2:10 am
Do you have any free space on the drive where your log file sits? Is the log file set to autogrow or is there a maximum size?
October 6, 2008 at 9:59 am
DavidB (10/3/2008)
...or,select db_name(dbid), count(*) from sys.sysprocesses
group by db_name(dbid)
Nice, no wonder I could not find the sysprocesses table. Tried seperating it to sys.processes.
October 3, 2008 at 10:16 am
No difference. The INTO argument is optional.
October 3, 2008 at 10:08 am
Viewing 15 posts - 151 through 165 (of 605 total)