Viewing 15 posts - 1 through 15 (of 24 total)
I don't think you can ever really do this for a deployed application where the SQLExpress DB exists on the user's machine. It looks like the local admin will always...
October 16, 2006 at 10:30 am
Or of course you can just paste your query into EM and run it. Select all the results and paste to Excel along with the column headers.
January 27, 2006 at 3:42 pm
If you get to the point you feel you need to write some sort of looping structure you're probably going to be better off keeping that part of it in your...
January 27, 2006 at 2:28 pm
I think the only way to do that for sure would be to encrypt each person's data with a different key.
Or put the data on different servers with different sa...
January 27, 2006 at 2:14 pm
Query analyzer will script out creates/drops for individual objects. If you want one file, you'll have to compile them together though.
January 19, 2006 at 3:31 pm
Try adding the 'FOR xml auto, xmldata' syntax in the stored procedure when setting up the schema.
Then you have to take the ',xmldata' clause off before actually using it from an...
January 19, 2006 at 3:26 pm
This is true for any references to the table as well as creating tables, nested stored procs etc... You can't rely on it to generate the scripts with interdependent objects in...
January 18, 2006 at 2:00 pm
You could create view(s) in the main DB that point to the dynamic DB(s) and just recreate the view with a reference to your new dynamic DB when that is...
January 13, 2006 at 2:43 pm
SELECT
CASE
WHEN @param = Code_1 THEN Lesson_1
WHEN @param = Code_2 THEN Lesson_2
WHEN @param = Code_3 THEN Lesson_3
WHEN @param = Code_4 THEN Lesson_4
END Lesson
FROM SomeTable
WHERE SomeField =...
January 13, 2006 at 2:34 pm
You may try dropping indexes on the table that includes any of the updated fields, then add it back and rebuild it after the update is complete.
January 12, 2006 at 12:19 pm
If you want it normalized you would probably break out the x, y, z values into a separate table with an identifier and add a junction table to link the two.
If there will...
January 11, 2006 at 2:40 pm
You could create 3 different tables named sde, each with a different owner. For example:
dbUser1.sde
dbUser2.sde
dbUser3.sde
If you're connecting with dbUser1 etc... then it should look for a table with that user as the owner.
January 10, 2006 at 1:34 pm
Does the driver handle conversion of any numeric fields or does this need to be done in the update query? I believe DB2 stores everything as a string correct?
January 10, 2006 at 1:07 pm
Yes, I don't think you can use TOP with the aggregate function like that. I believe bkelley was right except you were using the AVG function instead of SUM.
SELECT AVG(smu_reading) Total
FROM
(
SELECT...
January 10, 2006 at 1:02 pm
That was originally my thought, which was to use the native data encryption, but I could never find anything that explicitly said that SQLExpress would support it. It doesn't support...
December 27, 2005 at 11:03 am
Viewing 15 posts - 1 through 15 (of 24 total)