Viewing 14 posts - 1 through 14 (of 14 total)
I'm not sure I fully understand, but if you're trying to use the same dataset in two different table only sorted differently can you not just open the properties dialog...
July 31, 2009 at 1:24 am
Can you run the bulk insert statement in SSMS?
Maybe it needs the DATAFILETYPE specifying, if there are differences from 2000 to 2005.
July 30, 2009 at 6:01 am
I agree the OUTPUT clause is the way to go.
Something along these lines should work
Declare @Results Table
(
RequestQueueID bigint not null,
ScopeRequestID bigint not null
)
Insert Into dbo.RequestQueue
Select
From [dbo].[udtt_Request]
Output Inserted.RequestQueueID, ScopeRequestID Into...
July 30, 2009 at 5:36 am
Noman Tariq (7/30/2009)
I am trying to do a simple thing but unable to get it through.
Problem:
I have a table in MyDB1, it also has a trigger which just sets...
July 30, 2009 at 5:10 am
jymoorthy (7/30/2009)
ISQL -E /d dbname /S servername /Q "BULK INSERT Tbl_20090726...
July 30, 2009 at 4:01 am
aktajay (7/29/2009)
I want to execute multiple sql queries from any folder, I don't know how many sql queries in the folder ....I need to execute all one by one...
July 30, 2009 at 3:54 am
It's possible to specify a collation for a column when creating a table, this can be different from the default for the database.
Please see Syntax for Create Table in BOL...
July 30, 2009 at 1:32 am
You could look in Admin Tools-->Services and see what SQL Server Services are installed.
Or in the registry in HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server, there's a key 'Installed Instances'
July 29, 2009 at 8:49 am
You could check the windows update log(%windir%\windowsupdate.log), see which updates where installed which would have affected the SQL browser service and then removing and re-applying the update or simply reinstalling...
July 29, 2009 at 6:58 am
Try escaping the quote marks like this
ISNULL(Report_Date) ? "" : "\"" + (DT_STR,50,1252)Report_Date + "\""
July 29, 2009 at 6:43 am
I think the Deny permissions you have applied at the server level override any explicitly granted permissions at the database level. Basically the lowest level permissions apply. I think you...
July 29, 2009 at 6:01 am
Which Facet are you using the 'Table' or 'Table options' one. I think 'On change prevent' might only be available with the table options facet.
July 29, 2009 at 5:42 am
For the condition I added
@Name Like 'sft_sp%'
Or
@CreatedDate < DateAdd('mi', -5, GetDate()) -- it was created more than 5 mins ago.
It seems to work.
July 29, 2009 at 5:01 am
Have you checked the settings for the SQL service in the SQL Server Configuration Manager, specifically the 'SQL Server Network Configuration' for your problem instance. There is a 'Hide Instance'...
July 29, 2009 at 3:50 am
Viewing 14 posts - 1 through 14 (of 14 total)