Viewing 15 posts - 916 through 930 (of 1,156 total)
Why did you choose to stop Mirroring? Were you trying to backup the Mirrored database?
When you stop mirroring, the databases can get out of sync. The...
January 3, 2008 at 7:47 am
You need to use the function Exec master..xp_readerrorlog and store the data into a table where you can filter it.
Declare @ErrorLog Table (LogID int identity(1, 1) not null primary...
January 3, 2008 at 7:00 am
I have a few questions that need further clarification:
1) Why does historical data change?
2) Can you use a timestamp column in the data feed to only grab the needed rows?
...
January 2, 2008 at 4:06 pm
Alorenzini ,
This site does not take to XML docs very well, trying posting your XML doc with brackets instead.
The following example shows how to insert via using the...
January 2, 2008 at 10:21 am
Can you provide any sample data? It would make things easier for the both of us and would provide a more timely solution to your problem.
Thanks.
Adam
January 2, 2008 at 8:34 am
Are you connecting to a linked server? If so, you may have problems with the remote query timeout setting. By default this setting is at 600 seconds or...
January 2, 2008 at 7:07 am
Jeff,
Ritesh still should have to make sure the column header query option is set wheter it be for text or grid. Ritesh will only have to configure this on...
December 31, 2007 at 2:01 pm
Click Query (Located on the main toolbar) --> Query Options --> Results --> Grid --> Include Column headers....(This should be checked)
Then select all the rows from your result set and...
December 31, 2007 at 11:10 am
MSDE 2000 is different that SQL Server 2005 Express edition. MSDE DID have the agent present, but SQL 2005 Express does not. If you are using the express edition,...
December 31, 2007 at 10:55 am
Have you tried to reinstall sharepoint services to an existing database?
http://office.microsoft.com/en-us/projservadmin/HA011653991033.aspx
December 31, 2007 at 10:50 am
Thanks for the feedback! 🙂
In future posts, mention that you need the code to work in Oracle too and you will get more vaild responses, as we had no knowledge...
December 31, 2007 at 10:30 am
This should help:
DECLARE @tbl TABLE(
Emp INT,
Supervisor INT,
Dept INT
)
--Emp | Supervisor | Dept
INSERT INTO @tbl
SELECT 1, 1, 1000 UNION ALL
SELECT 2, 1, 2000 UNION ALL
SELECT 3, 2, 3000 UNION ALL
SELECT 4,...
December 31, 2007 at 9:23 am
Do you have read/write permission on this directory? Try loggin into SSMS with an admin account to attach.
December 28, 2007 at 2:31 pm
Great solution Gila 🙂
Bart,
Do not forget to remove column headers in the results to text; otherwise, you will have the word "text" before each stored procedure.
December 28, 2007 at 2:15 pm
You will have to start the restore process again from the full backup onward. Were users connecting to the database and performing transactions after you brought the database online?...
December 28, 2007 at 1:43 pm
Viewing 15 posts - 916 through 930 (of 1,156 total)