Viewing 15 posts - 8,716 through 8,730 (of 13,876 total)
nguyenl71 39244 (2/2/2015)
February 2, 2015 at 10:29 am
I know that you are new here, so I'll try not to be too hard on you :-), but ...
Saying that a proposed solution 'does not work' is not very...
February 2, 2015 at 10:05 am
atul.jadhav (2/2/2015)
I have below code which send email from SQL Table "testing$" with use of store procedure
but I am not getting any email, please check where is the error
and...
February 2, 2015 at 3:12 am
Could the table have been locked by another process?
February 2, 2015 at 1:10 am
Eirikur Eiriksson (2/2/2015)
Quick thought, the problem itself is straightforward, the issue is more the schema, normalize it and the solution is easy.😎
+10!
February 2, 2015 at 12:36 am
Sean beat me to it again!
It would be a good idea to post the error message text. And to fix the fact that only single-row updates are handled.
January 30, 2015 at 7:56 am
bouazizimedridha (1/30/2015)
Description :
I opened an existing package in visual studio 2012, and noticed on the OleDBDestination component that the selected DataAccessMode was "Table or View". The duration of the load...
January 30, 2015 at 7:16 am
atul.jadhav (1/30/2015)
I am using import/export wizard to upload excel in sql table
I have primary key in my table
and all primary key value has been change every day
i.e. I have...
January 30, 2015 at 5:21 am
sm_iransoftware (1/30/2015)
And it's better that clustered index related to Bussiness...
January 30, 2015 at 2:14 am
sm_iransoftware (1/29/2015)
Most of the result are : PK_ ... ?
Why?
(note that in all our tables , we insert an id column - identical -...
January 30, 2015 at 1:16 am
umarrizwan (1/28/2015)
SELECT @dbid = DB_ID(DB_NAME())
SELECT OBJECTNAME = OBJECT_NAME(I.OBJECT_ID),
INDEXNAME = I.NAME,
I.INDEX_ID
FROM SYS.INDEXES I
JOIN SYS.OBJECTS O
ON I.OBJECT_ID = O.OBJECT_ID
WHERE OBJECTPROPERTY(O.OBJECT_ID,'IsUserTable') = 1
AND I.INDEX_ID NOT IN (
SELECT S.INDEX_ID
FROM SYS.DM_DB_INDEX_USAGE_STATS S
WHERE S.OBJECT_ID...
January 29, 2015 at 12:41 am
prasadau2006 (1/28/2015)
I need help with the following query, this query is taking more than 20mins to complete. I'm using a left join to
pull the data.
Query:
Insert into dbo.SecondTable
Select b.*...
January 29, 2015 at 12:40 am
A quick note: starting a CTE with a semicolon is like starting a sentence with a '.'
January 28, 2015 at 10:52 am
toraghubiz (1/28/2015)
Table emp has five columns (eid(int), mid(int), nme(varchar), did(int), city(varchar)).
Now I need to get the names of all departments having more than...
January 28, 2015 at 10:49 am
DonlSimpson (1/27/2015)
I got...
January 27, 2015 at 8:34 am
Viewing 15 posts - 8,716 through 8,730 (of 13,876 total)