Viewing 15 posts - 76 through 90 (of 130 total)
One or more of your data that you're trying to enter doesn't fit into your target table... I would setup an SSIS job for this and have it spit out...
November 29, 2012 at 10:45 am
make sure you're running in the same process (SPID). Put the set Identity_Insert statement somewhere before your insert statement...
set identity_insert tblTransactions ON;
GO
Insert into tblTransactions (...)
select ... from xyz
November 29, 2012 at 9:00 am
Are you sure you're running under the right database context?
try it with the [DBName].[dbo].[tblTransactions]
November 29, 2012 at 7:30 am
bugg (11/29/2012)
I have created an SSIS package that grabs data from an external suppliers mySQL database and then imports into our database.
To get this to work i need to...
November 29, 2012 at 7:19 am
make sure the table actually exists. the user you're running it under needs the alter permission on the table. your sys admin can grant that right...
GRANT ALTER ON [dbo].[tblTransactions] TO...
November 29, 2012 at 7:07 am
I'm fairly new to XML myself and could use a lot more practice... the code below seems to work but your XML structure has 2 nodes that are named the...
November 23, 2012 at 11:44 am
The WHERE statement is invalid... you can't resolve the query to a boolean...
not really clear on why you want this in the where statement... you can put it in the...
November 21, 2012 at 2:56 pm
I think this is what you mean by quote/speech marks... this works for me in SSRS textbox... either the """" or the chr function works for me...
="Parameter value selected is...
November 21, 2012 at 8:00 am
We have schema's owned by local DB users without logins to control access to specific schema objects. From my understanding loginless users work like application roles but we can...
November 16, 2012 at 6:34 am
Jeff Moden (11/14/2012)
Want a cool sig (11/13/2012)
Jeff's...
November 14, 2012 at 8:45 am
Wow Jeff that is wicked fast... thanks a lot... the time for returning 2600 rows really shows how much faster your method is...
Jeff's wicked fast script
SQL Server Execution...
November 13, 2012 at 7:43 am
Thanks Jeff I'll give it a try tomorrow, I'm not very familiar with cross apply very much. 🙂
November 12, 2012 at 8:58 pm
GSquared (11/12/2012)
November 12, 2012 at 10:58 am
Backup and restore mostly but some detaching. revlogin works pretty good for orphans but I've had times when some SQL logins passwords didn't come over properly.
November 6, 2012 at 12:05 pm
Modify the config file on both nodes so that they point to the same instances/packages/file store...
I did this for my previous employer in a 2 node cluster and it worked...
October 31, 2012 at 8:24 am
Viewing 15 posts - 76 through 90 (of 130 total)