Viewing 15 posts - 151 through 165 (of 166 total)
Is your target format Unicode or non-unicode.
If it is unicode try doing a select into a table with unicode defs in your source db and see if it will convert...
March 13, 2009 at 8:31 am
But if it is a phone screen don't answer straight out of the BOL because people can tell 🙂 Also don't bring cheat-sheets into the interview
March 13, 2009 at 8:27 am
For more on snapshot isolation
http://msdn.microsoft.com/en-us/library/tcbchxcb(VS.80).aspx
So my guess is you are not using it. Snapshot isolation can also have a tempdb impact, that is why I asked.
March 12, 2009 at 10:03 am
Perhaps you could just bring the data into excel and do the pivot and formatting there. Reporting Services may be a bit much for just one report.
March 12, 2009 at 8:15 am
You can also spread Tempdb across multiple physical devices, in some ways treat it like a real busy database and plan it out as such.
Also are you running...
March 12, 2009 at 7:57 am
I have done log shipping between 64 and 32 bit, that works just fine.
March 9, 2009 at 11:24 am
Are you trying to import the data from a csv and if so does the source have column names?
March 9, 2009 at 9:48 am
Do you mean in a cluster, or with log shipping?
March 9, 2009 at 9:46 am
You could also fire it with and have it show the actual execution plan, that might give you some insight as well.
March 9, 2009 at 9:45 am
Sorry, unlike Oracle, besides for using a unicode datatype you don't have to do anything to be able to use Unicode in SQL Server
March 9, 2009 at 7:43 am
In SQL Server 2K5 it is enabled by default. Just keep in mind the storage gets doubled, so a single character takes up two bytes.
March 9, 2009 at 7:34 am
Are you running it stand alone in testing? You could just add select getdate() before each call. Or you could add some inserts into a table before each...
March 9, 2009 at 7:29 am
You could go with a fixed date way in the future but that would also have some issues.
February 27, 2007 at 2:41 pm
Also look at isdate() in the BOL. If the value can not be converted to a valid date you are going to have some issues as well.
Henry
February 27, 2007 at 10:18 am
When you join with a second table I don't think you can edit in the grid anymore. In general using an update statement is better than...
February 27, 2007 at 10:16 am
Viewing 15 posts - 151 through 165 (of 166 total)