Viewing 15 posts - 3,526 through 3,540 (of 6,401 total)
As a side note, please follow the second link in my signature on posting code and data for the best, help. If the intial post contains this information you...
November 2, 2012 at 3:59 am
Insert should be the first line, not the last, check my sample code.
Insert into TblExecutives(CompanyName,ExeFName,ExeLastName)
select [Company Name] as CompanyName,ISNULL([Executive First Name 10],'') As ExecutiveFName,
ISNULL([Executive Last Name 10],'')As ExecutiveLName from CompaniesExecutives
November 2, 2012 at 3:25 am
Maybe this will help instead http://support.microsoft.com/kb/942176
November 2, 2012 at 3:16 am
Then you need to build an insert statement around your select.
Please provide the DDL of all the tables in question, along which which columns from each should be stored into...
November 2, 2012 at 3:10 am
Please provide your SQL.
November 2, 2012 at 2:59 am
Build an insert statement around the T-SQL you used to generate the result set, like below
INSERT INTO table2 (Col1, Col2, Col3)
SELECT Col1, Col2, Col3 FROM table1
November 2, 2012 at 2:47 am
From what I remember, but as with anything related to licensing speak to Microsoft directly or your approved Microsoft reseller.
What are your plans for SSRS, same machine, different machine, SSRS...
November 2, 2012 at 2:44 am
SPID -2 is for a MSDTC transaction which is terminated but not cleaned up.
First of all try to work back the transaction to the originating host where the DTC transaction...
November 2, 2012 at 2:34 am
Create the login using CREATE LOGIN
Then use ALTER USER in the database in question to re-map the user to the login
Then use sp_addrolemember / sp_addsrvrolemember / sp_droprolemember / sp_dropsrvrolememeber to...
November 2, 2012 at 2:30 am
sqlnaive (11/2/2012)
spidkpidblockedwaittypewaittimelastwaittypewaitresource
7280081310x000D1782LCK_M_RS_S ...
November 2, 2012 at 2:21 am
BriPan (11/2/2012)
try " with nolock " with select query on your tableslike select * from temptable with (nolock)
What is your reasoning behind advising the use of nolock? Do you...
November 2, 2012 at 2:20 am
Do you have a driver (for ODBC) which can connect to Progress? If so it would just be a case of installing the driver and setting up a linked...
November 1, 2012 at 9:33 am
SQL_path (11/1/2012)
i tried that but it did not work. can you please tell me what am I missing here?
declare @search varchar(max)
select @search='%cake'
create table #ITEM
(
item_desc varchar(50) )...
November 1, 2012 at 9:18 am
What is the problem you are facing as the query is correct all you need to do is remove the % from the where clause if the user will supply...
November 1, 2012 at 9:09 am
Thats a pretty big downtime window then for something which seems very trivial to do in scripts instead.
I had dealings with a 3rd party who was like this, we then...
November 1, 2012 at 9:06 am
Viewing 15 posts - 3,526 through 3,540 (of 6,401 total)