Viewing 15 posts - 1 through 15 (of 54 total)
Whatever connector your website is using to connect to the database is setting some defaults that are causing your temp table columns to default to NOT NULL.
You can reproduce...
March 13, 2015 at 8:27 am
The row_number() method is by far the quickest and cleanest method. If you've never used row_number() before, do yourself a favor and learn it.
one modification to JP's code.. "......
November 30, 2009 at 6:22 am
This may not be exactly what you're looking for, but you could create a wrapper stored procedure that the job calls. this sproc would do whatever calculation or querying necessary...
March 29, 2009 at 11:45 am
mpalecek (3/27/2009)
March 27, 2009 at 6:27 am
There was a guy that sat in the cube next to me. Nice guy, but everytime he would talk on the phone, and only while he was talking, he would...
March 27, 2009 at 6:23 am
There are 2 ways you can do this.
If you want all the constraints in place in the new location before the data is imported, I would suggest defining the...
March 17, 2009 at 7:54 am
I agree with Jeff.
There doesn't appear to be a relation between memberEventID and BillingId. If you want to display the results (memberId, billingID, memberEventID), and return only 6 rows,...
February 23, 2009 at 8:13 am
Hi, your question is not entirely clear. Are you simply trying to update a table? Are you trying to change the primary key of the table?
Please elaborate.
February 23, 2009 at 8:07 am
They way I do it is that I have all my sprocs scripted out. At the bottom of the script, after a GO statement, i have the permissions that are...
February 20, 2009 at 12:35 pm
Please post the textual version of the execution plan.
before you run your query, run this.
set statistics profile on
GO
you should see a textual plan at the bottom of...
February 20, 2009 at 9:48 am
We have an in house data utility that allows us to script out every object in our database. We go all the way down to the smallest detail; storing indexes,...
February 20, 2009 at 9:26 am
I agree with Roy. This sounds like a classic example of a scenario that would require merge replication.
As long as your requirement is that updates need to take place...
February 20, 2009 at 9:19 am
Perry Whittle (2/19/2009)
granting execute on a stored procedure to a user does not require that user to have permissions to the underlying tables
The only time you may run into problems...
February 20, 2009 at 9:13 am
A number of tables that have computed columns return the message "Metadata stored on disk for computed column 'xxx' in table 'dbo.zzz' did not match the column definition. In order...
February 18, 2009 at 8:08 am
Roy, i wouldn't say your idea is outrageous. There is always a place for custom solutions. However, I still feel that even with the connection issues that Aldo's client is...
February 11, 2009 at 9:46 am
Viewing 15 posts - 1 through 15 (of 54 total)