Viewing 15 posts - 4,381 through 4,395 (of 8,416 total)
GilaMonster (4/1/2010)
April 2, 2010 at 8:23 am
I had to guess based on very little detail in the first post.
DECLARE @Table1
TABLE (
row_id INTEGER NOT NULL
...
April 2, 2010 at 8:13 am
DECLARE @String VARCHAR(300);
SET @String =
'here is my phone number 1234567890. but my cell...
April 2, 2010 at 8:10 am
I usually use:
CHECKPOINT;
DBCC DROPCLEANBUFFERS;
DBCC FREESYSTEMCACHE('ALL');
Since you seem to be looking to measure physical reads, it can be useful to perform the tests with and...
April 2, 2010 at 7:46 am
hemalchalishazar (4/2/2010)
April 2, 2010 at 7:33 am
David-Leibowitz (4/2/2010)
I find it's always a balance between user needs and dev...
April 2, 2010 at 7:25 am
1. Change the EXECUTE AS clause
2. Create a certificate or asymmetric key, create a user from that, grant the required permissions to that user, then sign the procedure...
April 2, 2010 at 6:57 am
hemalchalishazar (4/1/2010)
April 2, 2010 at 6:44 am
DECLARE @Table
TABLE (
id INTEGER IDENTITY PRIMARY KEY,
data...
April 2, 2010 at 6:39 am
vk-kirov (4/2/2010)
Why the question specifies the slash datetime format (yyyy/mm/dd) while all the answers are in the dash datetime format (yyyy-mm-dd)? This is completely misleading and incorrect! 😛
Awesome! Very...
April 2, 2010 at 6:20 am
vaibhav.tiwari (4/2/2010)
April 2, 2010 at 6:18 am
Voitek (4/2/2010)
I don't think the QOD is misleading.
Neither does anyone else...so far. Give it time 😉
April 2, 2010 at 6:11 am
David-Leibowitz (4/2/2010)
Read this. It explains EXACTLY what you want to do and how to do it: http://blog.summitcloud.com/2010/01/multivalue-parameters-with-stored-procedures-in-ssrs-sql/
Hmmm. Interesting enough for its SSRS focus, but it only covers one possible...
April 2, 2010 at 6:10 am
DECLARE @Table1
TABLE (
row_id INTEGER PRIMARY KEY
);
...
April 2, 2010 at 5:59 am
Viewing 15 posts - 4,381 through 4,395 (of 8,416 total)