Viewing 15 posts - 16 through 30 (of 81 total)
Coffee in the morning, tea (hot with milk) in the afternoon! Oh, and doughnuts are not a breakfast food in England.:D
May 1, 2008 at 3:19 am
Are you asking how to clear the emp_id column?
If you are, can you not just update the whole table to emp_id = NULL
i.e
UPDATE employee
SET emp_id = NULL
(I am assuming...
April 24, 2008 at 2:16 am
Hi,
Good article, and very topical for me.
I have recently started in a new company, and have been amazed at the atmosphere! It is silent about 95% of the time....
April 17, 2008 at 4:03 am
Rummaging about in the other forums, I found this solution, posted by GilaMonster (thanks Gail).
It works perfectly
USE Scratch
GO
Select name, definition
FROM Test.sys.sql_modules sm inner join Test.sys.objects o on sm.object_id = o.object_id
where...
April 15, 2008 at 5:23 am
[font="Arial"]Sorry if I'm being a numpty, but do you mean something like this (although, not exactly this, as it doesn't work!):
DECLARE @sql VARCHAR(4000)
SET @sql = sp_helptext...
April 15, 2008 at 5:05 am
Hello,
Thanks for your reply. I need to check for both 2005 and 2000 databases. So should I chack for "Alter Index" and "DBCC reindex"?
April 10, 2008 at 2:55 am
thank you all for your help. I have been working on a generic script, and trying to incorporate the suggestions given, but I think I am getting in a...
February 26, 2008 at 11:52 am
Yes,
Sorry I wan't clear. I want a script to build a SELECT statement, which I can then pass to a bcp command.
February 21, 2008 at 12:29 pm
hi,
I assume that you are setting the variables from theoutput of your sql task? You need to set the Reultname to the ordinal number of the result returned (0 would be column...
February 23, 2007 at 7:58 am
I had a similar problem with a query to sql server via an OLE db connection. The query wouldn't parse.
however, if I clicked the "Build query" button, and then ran...
February 23, 2007 at 4:26 am
Hello,
thanks for your reply.
I was looking for something like this:
Object topLevelParent Level
------- --------------- ------
PropertyGroup Null 0
Property PropertyGroup 1
PropertyDetails PropertyGroup 2
Region Null 0
County Region 1
Town Region 2
February 15, 2007 at 8:01 am
Hello,
I am getting the same error message when I try to run an Execute SQL task containing the following:
SELECT * FROM dbo.ft_GetParentTableInfo (?,?)
Does this mean that we cannot use functions...
September 19, 2006 at 9:55 am
Having just completed a round of interviewing, I would add:
Listen to the question. The first question we asked on chap was to “BRIEFLY SUMMARISE...
February 23, 2006 at 6:35 am
Hello Kath
I experienced similar problems when trying to do this. In the end I resorted to a stored proc, and passing the parameters seemed to work just fine.
August 10, 2005 at 8:02 am
Viewing 15 posts - 16 through 30 (of 81 total)