Viewing 15 posts - 1 through 15 (of 31 total)
Via the import/export wizard I can readily import the Excel file. I copied the connection string from the generated SSIS file and tried that in my query window and I...
November 19, 2012 at 2:55 pm
All of the data in the database was migrated from another system. After migration of the data all of the indexes were re-created and all of the statistics updated. We...
October 4, 2012 at 9:28 am
I resolved this issue. I can get the seed and increment values from the sys.identity_columns with the select:
select seed_value, increment_value
from sys.identity_columns
where object_name(object_id) like 'TT_' + <table type name> + '%'
February 6, 2012 at 11:07 am
Initially I did not grasp how to work your solution into my scenario, but after a bit of trial and error I was able to use to your suggestions to...
November 22, 2011 at 11:10 am
I have not tried and I am not familiar with the xsi:nil approach that you noted. Any recommendations where I can find info on implementing this approach?
November 18, 2011 at 12:39 pm
Unfortunately I can not cut and paste the error, but essentially the error is:
Msg 6926, Level 16, State 1, Procedure..... Line ..
XML Validation: Invalid simple type:...
November 17, 2011 at 12:23 pm
Thank-you. You are are correct. I had declared variable of type table and referenced the XML collection in the table. Apparently I did not remove the table and it persisted...
November 16, 2011 at 11:00 am
Thank-you for the reply; no I have not tried nodes.
However, I was able to figure out the syntax I needed to get the facility information, and the desired feature. One...
October 11, 2011 at 10:06 am
I resolved the issue. I thought I had tried this numerous times and failed, but apparently not. Before the $dbObject.Create() statement, I added:
$dbObject.Logfiles.Add($dbLogFile)
🙂
December 1, 2009 at 6:48 pm
Yes that is a typo. Thank you for pointing it out.
December 1, 2009 at 6:31 pm
Does anyone have an example of the syntax for the node() type in dynamic SQL? I have tried numerous variations of the syntax and in each case execution fails.
November 2, 2009 at 1:27 pm
The Function solution does work; thank you. However, the stored procedure approach, when implemented correctly, also will return the correct status. I realized that I had the CLR procedure defined...
July 20, 2009 at 10:21 am
Thankyou for the suggestion. I have only written CLR procedures in the past. I was of the impression that a CLR function would not allow file system I/O which is...
July 17, 2009 at 10:12 am
I did not post the resolution because it was simply my blunder. I had query sessions opened with 3 different servers comparing data. When I compared the call from my...
June 8, 2009 at 10:56 am
Please ignore this post; I resolved the issue
June 5, 2009 at 5:25 pm
Viewing 15 posts - 1 through 15 (of 31 total)